type object 'CellUnion' has no attribute 'from_cell_ids'
时间: 2023-07-31 14:09:43 浏览: 61
非常抱歉,我之前的回答中出现了错误。确实,`S2CellUnion` 类没有 `from_cell_ids` 这个方法。要创建 `S2CellUnion` 对象,可以直接将包含单元格ID的列表传递给构造函数。
以下是修正后的代码示例:
```python
from s2sphere import CellId, LatLngRect, LatLng, RegionCoverer, S2CellUnion
min_lat = 40.0 # 最小纬度
max_lat = 41.0 # 最大纬度
min_lng = -74.0 # 最小经度
max_lng = -73.0 # 最大经度
level = 10 # 级别
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)
filtered_covering = [cell_id for cell_id in covering if cell_id.level() == level]
union = S2CellUnion(filtered_covering)
for cell_id in union:
print(f"Level {level} - Cell ID: {cell_id.id().id()}")
```
在这个修正后的代码中,我们首先获取整个矩形区域的覆盖单元格列表 `covering`。然后,我们使用列表推导式过滤出指定级别的单元格,并将它们作为参数传递给 `S2CellUnion` 构造函数来创建 `union` 对象。
最后,我们遍历 `union` 中的每个单元格,打印其 ID。
再次对之前的错误表示歉意,并希望以上修复能够解决问题。如果您还有其他问题,请随时提问!
阅读全文