gpt4 book ai didi

在 Windows 上使用 shp2pgsql.exe 将 shapefile 提取到 PostgreSQL/PostGIS 数据库中的 Python 脚本

转载 作者:可可西里 更新时间:2023-11-01 14:13:43 29 4
gpt4 key购买 nike

我有一个 PostgreSQL 数据库托管在 Windows 2008 Server RT 虚拟机上(是的,我知道它应该托管在 Linux VM 上,但这是我的组织规定的。唉...)

我们的 GIS 人员将大量 shapefile 转储到存储库中。我们希望有一个自动进程将遍历文件夹作为计划任务。我们想将这些添加到我们的 Postgres 地理数据库中,以用于我们目前正在开发的其他一些流程

我希望遍历大量 shapefile 并将它们的几何形状和文件名加载到数据库中。

这是我目前使用的摄取功能核心部分的要点

import os, subprocess
base_dir = r"c:\shape_file_repository"
full_dir = os.walk(base_dir)
shapefile_list = []
for source, dirs, files in full_dir:
for file_ in files:
if file_[-3:] == 'shp':
#print "Found Shapefile"
shapefile_path = base_dir + '/' + file_
shapefile_list.append(shapefile_path)
for paths in shapefile_list:
#This is the part where I keep running into trouble. os.system also didnt work
temp_bat = open(r"c:\temp\temp_shp.bat", "w")
temp_bat.write(r'start /D c:\Program Files (x86)\PostgreSQL\8.4\bin\shp2pgsql.exe' + \
paths + "new_shp_table | psql -d geometry_database")
temp_bat.close()
subprocess.Popen(r"c:\temp\temp_shp.bat")

将几何图形加载到新数据库表后,我已经设置了代码以将几何图形从临时表中拉出,并将其加上 shapefile 名称加载到我们的主数据库表中。我的问题是我可以通过命令提示符执行此操作,但是通过 python 运行 Windows 命令或将它们输出到批处理文件然后运行它们似乎根本不起作用。

最佳答案

这里有一些应该可以使事情正常进行的修改。请注意,如果您需要在任何命令失败时收到通知,则需要进一步修改。请注意,对于多个 shapefile,它将失败,因为 new_shp_table 表将已经存在,直到您有进一步的逻辑将该表移动或重命名到其他地方,或者使用唯一名称加载它。

另外,请注意 PostgreSQL 8.4 将在今年晚些时候结束,因此您可能希望在为时已晚之前计划升级到更新的版本。

import os, subprocess

# Choose your PostgreSQL version here
os.environ['PATH'] += r';C:\Program Files (x86)\PostgreSQL\8.4\bin'
# http://www.postgresql.org/docs/current/static/libpq-envars.html
os.environ['PGHOST'] = 'localhost'
os.environ['PGPORT'] = '5432'
os.environ['PGUSER'] = 'someuser'
os.environ['PGPASSWORD'] = 'clever password'
os.environ['PGDATABASE'] = 'geometry_database'

base_dir = r"c:\shape_file_repository"
full_dir = os.walk(base_dir)
shapefile_list = []
for source, dirs, files in full_dir:
for file_ in files:
if file_[-3:] == 'shp':
shapefile_path = os.path.join(base_dir, file_)
shapefile_list.append(shapefile_path)
for shape_path in shapefile_list:
cmds = 'shp2pgsql "' + shape_path + '" new_shp_table | psql '
subprocess.call(cmds, shell=True)

关于在 Windows 上使用 shp2pgsql.exe 将 shapefile 提取到 PostgreSQL/PostGIS 数据库中的 Python 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22392466/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com