我正在使用 Fiona 编写一个 shapefile,其中包含美国人口普查国会选区和人口普查区域的几何图形以及一些计算属性。不幸的是,我的文件被输出为空白。我可以看到 QGIS 中的记录,但看不到几何图形。
在我的代码中,我从人口普查 shapefile 中读取形状优美的多边形,计算属性并将具有相关属性的多边形提供给 fiona 文件编写器。
# schema for the file
myschema = {
'geometry':'Polygon',
'properties':{'is boundary':'int','id':'str', 'district':'int'}
}
with fiona.open(name,'w',crs=from_epsg(4326), driver='ESRI Shapefile', schema=myschema) as output:
...
self.w.write({
'geometry':mapping(sg.asShape(self.subunit)),
'properties':{'is boundary':int(is_boundary), 'id':str(self.sid), 'district':0},
})
self.w 是在传递给对象后对输出的引用,而 self.subunit 是一个 pysal 多边形几何,我将其转换为 shapely 以便将其写入我的 shapefile。有没有人在使用 fiona 编写这个 shapefile 时遇到问题并知道我的问题可能出在哪里?