Postgresql将查询结果导出Shapefile文件

前端之家收集整理的这篇文章主要介绍了Postgresql将查询结果导出Shapefile文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

通过pgsql2shp 工具实现

语法

pgsql2shp -f <path to output shapefile> -h <hostname> -u <username> -P <password> databasename "<query>"

用例

pgsql2shp -f qds_cnt -h localhost -u postgres -P password gisdb "SELECT sp_count,geom FROM grid50_rsa WHERE province = 'Gauteng'"
原文链接:https://www.f2er.com/postgresql/194423.html

猜你在找的Postgre SQL相关文章