我正在尝试创建一个启用空间的PostGIS数据库。我正在遵循PostGIS文档http://postgis.net/docs/manual-1.5/ch02.html#id2648455。
在简短的版本中,我执行了
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
我的数据库还在空间上启用吗?如果没有,那么您能告诉我这些.sql文件的位置,以便执行最后的命令,因为出现以下错误,
postgis.sql: No such file or directory
我正在使用Ubuntu 12.04
2
要查找您的postgis.sql文件,请从bash中运行“ locate postgis.sql”(不带引号)。
—
凯尔索2012年