Google App Engine 地理查询
query = db.GqlQuery("SELECT * FROM Place
WHERE location >= :1 AND
location <= :2",
db.GeoPt(lat=minLat, lon=minLon),
db.GeoPt(lat=maxLat, lon=maxLon) )
据我了解,GAE 在这种情况下忽略了 long 。 这是真的吗?
query = db.GqlQuery("SELECT * FROM Place
WHERE location >= :1 AND
location <= :2",
db.GeoPt(lat=minLat, lon=minLon),
db.GeoPt(lat=maxLat, lon=maxLon) )
From what I understand, GAE ignore the long in this case.
Is this true?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简短回答:是的。
长答案:
GeoPt
属性首先按纬度排序,然后按经度排序。此查询将查找位于两个纬度之间的实体,仅在纬度相同时才考虑经度。Short answer: Yes.
Long answer:
GeoPt
properties are sorted first by latitude, then by longitude. This query will find entities that fall between the two latitudes, only considering the longitudes if the latitudes are identical.