关于postgis的安装使用

关于Postgis的安装使用,建议参考官方手册 http://www.postgis.org/docs/ch02.html

——————————————

创建控件数据库的参考:

createdb yourdatabase

createlang plpgsql yourdatabase

psql -d yourdatabase -f postgis.sql

psql -d yourdatabase -f postgis_comments.sql

psql -d yourdatabase -f spatial_ref_sys.sql

————————————————

 

 

————————————————————–

如果系统中没有存在template_postgis模板,需要自己手动创建,

$psql template1

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

对于用户,即可创建数据库

createdb test_gis_db -T template_postgis

dropdb test_gis_db

此部分参考 http://www.360doc.com/content/09/0220/11/1484_2597100.shtml

 

 

 

 

 

转载自:https://blog.csdn.net/cnhome/article/details/6990090

You may also like...