发生异常: ImportError cannot import name 'S2RegionCoverer' from 's2sphere'
时间: 2023-11-12 10:08:34 浏览: 162
非常抱歉,我之前提供的代码中的导入语句有误。正确的导入语句应该是从 `s2sphere` 中导入 `RegionCoverer` 而不是 `S2RegionCoverer`。请使用以下修正后的代码:
```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")
```
这样应该可以正确生成包含矩形区域内所有S2单元格的Shapefile文件。对于每个单元格,我们使用其四个顶点来创建多边形,并将单元格ID作为属性记录。
如果您还有其他问题,请随时提问!
阅读全文