2

我正在处理 shp 文件,但在 shp 文件中保存地理数据框时遇到问题。

import pandas as pd
import numpy as np
import os
import geopandas
location = '/home/braulio/Documents/example.shp'
datos = geopandas.read_file(location, encoding='UTF-8')

我在处理数据时没有问题,但是当我尝试保存时

A.to_file(r"/home/braulio/Documents/example2.shp")

并返回错误:

ValueError                                Traceback (most recent call last)
<ipython-input-23-6a842789b4b4> in <module>
----> 1 A.to_file(r"/home/braulio/Documents/example2.shp")

~/anaconda3/envs/braulio/lib/python3.7/site-   packages/geopandas/geodataframe.py in to_file(self, filename, driver,   schema, **kwargs)
411         """
412         from geopandas.io.file import to_file
--> 413         to_file(self, filename, driver, schema, **kwargs)
414 
415     def to_crs(self, crs=None, epsg=None, inplace=False):

~/anaconda3/envs/braulio/lib/python3.7/site-packages/geopandas/io/file.py in to_file(df, filename, driver, schema,**kwargs)
109         with fiona.open(filename, 'w', driver=driver, crs=df.crs,
110                         schema=schema, **kwargs) as colxn:
--> 111             colxn.writerecords(df.iterfeatures())
112 
113 

~/anaconda3/envs/braulio/lib/python3.7/site-packages/fiona/collection.py in writerecords(self, records)
347         if self.mode not in ('a', 'w'):
348             raise IOError("collection not open for writing")
--> 349         self.session.writerecs(records, self)
350         self._len = self.session.get_length()
351         self._bounds = self.session.get_extent()

fiona/ogrext.pyx in fiona.ogrext.WritingSession.writerecs()

fiona/ogrext.pyx in fiona.ogrext.OGRFeatureBuilder.build()

ValueError: Invalid field type <class 'bytes'>
4

3 回答 3

1

'bytes' 和一些其他类型,如 'list' 不是 shapefile 支持的数据类型。这是讨论此问题的 github 问题的链接。

我建议删除具有“字节”类型对象的列,然后保存 shapefile。

如果该列非常重要,请将值更改为“字符串”类型,然后保存 shapefile。

于 2019-07-01T10:13:28.023 回答
1

我解决了在开始时将编码更改为 latin-1 的问题

datos = geopandas.read_file(location, encoding='latin1')
于 2019-09-10T15:24:05.450 回答
0

以下在我的情况下有效(“ValueError:无效的字段类型<class'numpy.int64'>”),希望对您有所帮助:

A = A.apply(pd.to_numeric, errors='ignore')
A = gpd.GeoDataFrame(A) # optional
A.set_geometry(col='geometry', inplace=True) # optional
A.to_file(path)
于 2022-02-23T14:01:27.103 回答