前提・実現したいこと
shpファイルをgeopandasで読み込んで出力する時に、属性定義を変えないようにしたい
ある程度は出来ていると思うのですが充分でないならもう少し改善したい。
また、他の方法等もあれば知りたいです。
よろしくお願いします。
該当のソースコード
python
1import geopandas as gpd 2 3data_frame=gpd.GeoDataFrame.from_file(r"C:\work\sample01\result\sample4.shp") 4 5# これだけだと属性定義が変わる 6data_frame.to_file(r"C:\work\sample01\result\sample4_2.shp") 7 8 9# gdalで読み込んで定義を取得すると、属性定義が保持される 10import osgeo.ogr as ogr 11import osgeo.osr as osr 12 13driver = ogr.GetDriverByName("ESRI Shapefile") 14data_source = driver.Open(r"C:\work\sample01\result\sample4.shp") 15layer=data_source.GetLayer() 16 17## gdalとgeopandasの型の対応。これ対応あってます?足りない?。 18## いや、これだと保持されないな…シェープファイルなら、これだけも要らないかな 19dict_field_type={ 20ogr.OFTInteger:'int', # Simple 32bit integer. 21ogr.OFTReal:'float', # Double Precision floating point. 22ogr.OFTString:'str', # String of ASCII chars. 23ogr.OFTWideString:'str', # deprecated 24ogr.OFTDate:'date', # Date. 25ogr.OFTTime:'time', # Time. 26ogr.OFTDateTime:'datetime', # Date and Time. 27ogr.OFTInteger64:'int', # Single 64bit integer. 28} 29 30## gdalで型定義を読み込み、geopandasのschemaの要素を作成 31dict_type ={} 32layer_defn = layer.GetLayerDefn() 33for column in range(layer_defn.GetFieldCount()): 34 field_defn=layer_defn.GetFieldDefn(column) 35 str_name=field_defn.GetName() 36 int_type=field_defn.GetType() 37 int_width=field_defn.GetWidth() 38 int_precision=field_defn.GetPrecision() 39 if int_type == ogr.OFTReal: 40 dict_type[str_name]=dict_field_type[int_type] + ':' + str(int_width) + '.' + str(int_precision) 41 elif type in [ogr.OFTInteger,ogr.OFTInteger64,ogr.OFTString]: 42 dict_type[str_name]=dict_field_type[int_type] + ':' + str(int_width) 43 else: 44 dict_type[str_name]=dict_field_type[int_type] 45 46## schemaを作成 47schema=gpd.io.file.infer_schema(data_frame) 48for str_name in dict_type: 49 schema['properties'][str_name]=dict_type[str_name] 50 51## schemaを指定して出力 52data_frame.to_file(r"C:\work\sample01\result\sample4_3.shp",schema=schema) 53 54
補足情報(FW/ツールのバージョンなど)
Python 3.9.2
GDAL 3.2.1
geopandas 0.8.2
ここにある全てを対応した方がいいと思うのですが
geopandas側での記述方法がわからないです…
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/10 13:09