检索 geodjango 多边形对象的边界框
如何在 geodjango 中获取 MultiPolygon 对象的边界框? 在 API 中找不到任何内容 http://geodjango.org/docs/geos.html ...
How can I get the bounding box of a MultiPolygon object in geodjango? Can't find anything in the API http://geodjango.org/docs/geos.html ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
范围
财产。它返回一个 4 元组,分别包含左下坐标和右上角坐标。
您还可以使用
envelope
属性(如果您想要边界框的Polygon
对象表示)。Use the
extent
property.It returns a 4-tuple comprising the lower left and upper right coordinates, respectively.
You can also use the
envelope
property if you want aPolygon
object representation of the bounding box.