postgis:
postgis导入数据、geoserver与udig加载数据:
http://www.myexception.cn/open-source/1809904.html
SHP图层 导入Postgresql
首先安装postgis_2_2_pg95.exe:设定创建空间数据库(重要),一路Next,会安装一个postgis_22_sample实例(先安装Postgresql,后运行Stack Bulider进行上述安装)
方法1:
2)利用PostGIS Shapefile and DBF Loader导入shp数据(Options下设为GBK,否则中文导不进去;shp路径应简单且为全英文,否则报错;设定SRID,
否则
uDig
不显示,一定要确定好坐标系对应的SRID的值,并且在Geoserver发布时“定义SRS”部分选择相同的坐标系
)
备注:
1)如若创建不了以postgis_22_sample为模板的空间数据库,则可以:
CREATE EXTENSION postgis;
-- Enable Topology
CREATE EXTENSION postgis_topology;
-- fuzzy matching needed for Tiger
CREATE EXTENSION fuzzystrmatch;
-- Enable US Tiger Geocoder
CREATE EXTENSION postgis_tiger_geocoder;
2)如若没有template_post模版,则可以:
template1=#create database template_postgis with template=template1;
template1=#update pg_database set datistemplate=TRUE where datname='template_postgis';
template1=#\c template_postgis
template_postgis=#create language plpgsql;
template_postgis=#\i /opt/locale/share/postgis/lwpostgis.sql;
template_postgis=#\i /opt/locale/share/postgis/spatial_ref_sys.sql;
template_postgis=#GRANT ALL ON geometry_columns TO PUBLIC;
template_postgis=#GRANT ALL ON spatial_ref_sys TO PUBLIC;
template_postgis=#VACUUM FREEZE;
template_postgis=#\q
uDig中展示PostGIS数据(postgis与udig版本要相对应,shp数据要有坐标系)
Import——Other——Data——PostGIS
GeoServer发布PostGIS数据
uDig中展示PostGIS数据(postgis与udig版本要相对应,shp数据要有坐标系)