python 将shapefile添加到文件地理数据库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 将shapefile添加到文件地理数据库相关的知识,希望对你有一定的参考价值。

import arcpy

def shp_to_fgdb(shps, out_fgdb):
    if isinstance(shps, str):
        shps = [shps]
    
    for shp in shps:
        out_fc_name = shp.split('\\')[-1].split('.')[0]
        print('Working on {}...'.format(out_fc_name))
        arcpy.FeatureClassToFeatureClass_conversion(shp, out_fgdb, out_fc_name)

以上是关于python 将shapefile添加到文件地理数据库的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 st_write 将 sf 对象作为 shapefile 写入 ESRI 文件地理数据库?

将本地 XML 或 Shapefile 加载到 OSMNX 以创建图形

GIS开发Esri Shapefile(.shp)矢量数据文件读取(C++Python)

geoserver 添加图层数据

如何利用ArcGIS软件创建地理数据库

arcgis中导入shapefile点文件 点无法显示 原因是啥 shapefile点文件里数据x,y是经纬度坐标,z是水位