ArcPyを使用してフィーチャクラスのフィールド名を取得する方法
方法1: ListFields関数を使用する方法import arcpy # フィーチャクラスのパスを指定 feature_class = r"C:\path\to\your\feature_class.shp" # フィーチャクラスのフィールド情報を取得 fields = arcpy.ListFields(feature_class) # フィールド名を出力 for field in fields: print(field.name)>>More