'int' object has no attribute 'id'
时间: 2023-07-31 09:11:19 浏览: 255
python报错: 'list' object has no attribute 'shape'的解决
5星 · 资源好评率100%
非常抱歉,我之前的回答中出现了错误。在 s2sphere 库中,`CellId` 对象本身就是一个整数,不需要使用 `id()` 方法。
以下是修正后的示例代码:
```python
import shapefile
from s2sphere import CellId, LatLngRect, LatLng, RegionCoverer
min_lat = 40.0 # 最小纬度
max_lat = 41.0 # 最大纬度
min_lng = -74.0 # 最小经度
max_lng = -73.0 # 最大经度
shp_writer = shapefile.Writer("cells", shapeType=shapefile.POLYGON)
shp_writer.field("CELL_ID", "C", size=50)
rect = LatLngRect.from_point_pair(
LatLng.from_degrees(min_lat, min_lng),
LatLng.from_degrees(max_lat, max_lng)
)
coverer = RegionCoverer()
covering = coverer.get_covering(rect)
for cell_id in covering:
cell = CellId(cell_id).to_lat_lng_rect()
vertices = [
(cell.get_vertex(i).lat().degrees, cell.get_vertex(i).lng().degrees)
for i in range(4)
]
shp_writer.poly(parts=[vertices])
shp_writer.record(str(cell_id))
shp_writer.save("cells")
```
现在,在记录 `CELL_ID` 字段时,我们直接使用 `str(cell_id)` 将 `CellId` 对象转换为字符串类型。
再次对之前的错误表示歉意,并希望以上修复能够解决问题。如果您还有其他问题,请随时提问!
阅读全文