Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 geodjango 开发一个查询构建器。我想知道一个点是否在给定的多面体列表中。Django 数据库 API 有 "__in" 在列表中查找数据。有没有类似的geodjango查询?如果否,这是进行此搜索的最佳方法。
谢谢
您可以使用包含
testpoint = Point(1.0, 2.0) MyPolyTable.objects.filter(poly__contains=testpoint)