PostGIS:删除重叠的多边形
我有四个不同的多边形 shapefile,需要从多边形“a”中删除与多边形“b、c 和 d”相交的多边形,只留下“a”中不与任何其他图层相交的多边形的表。有没有办法在 PostGIS 中做到这一点?
一个(id,几何) b(id,几何) c(id,几何) d(id,几何)
I have four different polygon shapefiles and need to delete the polygons from polygon "a" that intersect polygons "b,c and d" leaving a table with only polygons in "a" that don't intersect any of the other layers. Is there a way to do this in PostGIS?
a(id,geom)
b(id,geom)
c(id,geom)
d(id,geom)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 extists()
Use EXISTS() expression, e.g.: