본문 바로가기

Develop

postgis 설치하기

default

POSTGIS_SQL_PATH=pg_config --sharedir/contrib/postgis-2.1

Creating the template spatial database.
createdb -E UTF8 template_postgis
createlang -d template_postgis plpgsql # Adding PLPGSQL language support.
Allows non-superusers the ability to create from this template
psql -d postgres -c "UPDATE pg_database SET datistemplate='true' WHERE datname='template_postgis';"
Loading the PostGIS SQL routines
psql -d template_postgis -f $POSTGIS_SQL_PATH/postgis.sql
psql -d template_postgis -f $POSTGIS_SQL_PATH/spatial_ref_sys.sql
Enabling users to alter spatial tables.
psql -d template_postgis -c "GRANT ALL ON geometry_columns TO PUBLIC;"
psql -d template_postgis -c "GRANT ALL ON geography_columns TO PUBLIC;"
psql -d template_postgis -c "GRANT ALL ON spatial_ref_sys TO PUBLIC;"

참고 : http://www.saintsjd.com/2014/08/13/howto-install-postgis-on-ubuntu-trusty.html

반응형

'Develop' 카테고리의 다른 글

Cordova 프로젝트 시작하기  (0) 2014.10.11
통계 데이타  (0) 2014.09.21
scrapy and django  (0) 2014.06.14
두개 이상의 github 계정으로 작업하기  (0) 2014.04.19
Github 작업중일때.  (0) 2013.10.19