gpt4 book ai didi

python - arcpy 获取要素数据集中要素类的数据库路径

转载 作者:搜寻专家 更新时间:2023-10-30 19:56:40 26 4
gpt4 key购买 nike

我正在尝试获取要素类的数据库路径,该要素类可能在也可能不在要素数据集中。我正在使用要素类的 os.path.dirname。如果要素类不在要素数据集中(很好),这将为我提供数据库路径,但如果要素类在要素数据集中,它将为我提供要素数据集的路径。

这可以是文件、个人或 sde 地理数据库。我正在考虑使用“.sde”进行拆分,但如果它是不同类型的地理数据库,那将行不通。

路径示例可以是:

  • 对于要素数据集内部:C:\GISData\Data.gdb\Property\Erf
  • 在 gdb 根目录下:C:\GISData\Data.gdb\Erf

在这两种情况下,我都希望得到 C:\GISData\Data.gdb

谢谢。

最佳答案

看看这个短片 blog posting他们使用以下功能:

def get_geodatabase_path(input_table):
'''Return the Geodatabase path from the input table or feature class.
:param input_table: path to the input table or feature class
'''
workspace = os.path.dirname(input_table)
if [any(ext) for ext in ('.gdb', '.mdb', '.sde') if ext in os.path.splitext(workspace)]:
return workspace
else:
return os.path.dirname(workspace)

关于python - arcpy 获取要素数据集中要素类的数据库路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29191633/

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