赞
踩
template_postgis模版是创建空间数据库的必要手段,没有这个模版没办法导入shp文件。
create database xx;
\c xx;
- -- Enable PostGIS (includes raster)
- CREATE EXTENSION postgis;
- -- Enable Topology
- CREATE EXTENSION postgis_topology;
- -- Enable PostGIS Advanced 3D
- -- and other geoprocessing algorithms
- -- sfcgal not available with all distributions
- CREATE EXTENSION postgis_sfcgal;
- -- fuzzy matching needed for Tiger
- CREATE EXTENSION fuzzystrmatch;
- -- rule based standardizer
- CREATE EXTENSION address_standardizer;
- -- example rule data set
- CREATE EXTENSION address_standardizer_data_us;
- -- Enable US Tiger Geocoder
- CREATE EXTENSION postgis_tiger_geocoder;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。