Python获取矢量文件属性表字段及类型

ogr库对矢量的支持非常的强大,大概支持70多种,使用起来也是非常的方便。本文记录了ogr库来获取矢量属性表的相关信息。

Python环境: Python3

GDAL/OGR库

python代码:

from osgeo import ogr
def attibute_table():
    shape_path = r'E:\数据\矢量数据\bouA_标准\bouA_标准\BOUA_China.shp'
    shp_ds= ogr.Open(shape_path)#打开矢量文件
    ''':type:osgeo.ogr.DataSource'''
    lyr = shp_ds.GetLayer(0)#获取图层
    ''':type:osgeo.ogr.Layer'''
    for feat in lyr.schema:
        feat = feat
        ''':type:osgeo.ogr.FieldDefn'''
        name = feat.GetName()#获取字段名称
        type =feat.GetTypeName()#获取字段类型
        print('字段名称:%s ,字段类型:%s'%(name,type))
if __name__ == '__main__':
    attibute_table()

效果对比:

转载自:https://blog.csdn.net/qq_33356563/article/details/88934704

You may also like...