type object 'LatLngRect' has no attribute 'from_degrees'
时间: 2023-08-01 16:13:45 浏览: 118
解决运行出现dict object has no attribute has_key问题
5星 · 资源好评率100%
对不起,我之前给出的代码中的 `LatLngRect.from_degrees()` 是不存在的。请使用以下方法来定义矩形区域的边界坐标(经纬度):
```python
min_lat = 40.0 # 最小纬度
max_lat = 41.0 # 最大纬度
min_lng = -74.0 # 最小经度
max_lng = -73.0 # 最大经度
rect = s2sphere.LatLngRect.from_point_pair(
s2sphere.LatLng.from_degrees(min_lat, min_lng),
s2sphere.LatLng.from_degrees(max_lat, max_lng)
)
```
这样,您就可以使用 `from_point_pair()` 方法来创建 `LatLngRect` 对象,并将其传递给 `RegionCoverer` 来获取矩形区域内的所有cell。希望这次能够帮到您!
阅读全文