Questions tagged «unique-id»

11
QGIS中的ID列是否有一种auto_increment的方法
我正在创建虚拟地图,因此我需要创建许多点,线和确定的多边形。稍后,我将数据导出为geojson。但是在此之前,我必须离开并给每个元素一个唯一的ID。 我不需要特殊的排序,例如最大的多边形得到的ID最小。我只是需要所有多边形 与一个ID结尾,没有 做它手动像我现在要做的。 如果有人知道该怎么做会很棒。

2
使用QGIS虚拟层的多边形相交
我正在尝试通过使用虚拟层来使QGIS中的多边形几何图形相交: SELECT sbqry.rowid AS gid, sbqry.geom FROM (SELECT ST_Intersection(land_parcels.geometry, flood_zone.geometry) AS geom FROM land_parcels, flood_zone WHERE ST_Intersects(land_parcels.geometry, flood_zone.geometry) AND NOT ST_Touches(land_parcels.geometry, flood_zone.geometry)) AS sbqry; 不幸的是,sbqry.rowid AS gid返回NULL而不是自动递增值。 有人知道如何创建名为“ gid”的唯一标识符列吗?据我所知,虚拟层是基于SQLite / Spatialite的。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.