= :1 AND location <= :2", db.GeoPt(lat=minLat, lon=minLo...">Geek Answers HandbookGoogle App Engine geological queryquery = 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 ignores the long one in this case. It's true?+4python google-app-engine geolocation geospatial google-cloud-datastoreJohnny May 13, '11 at 3:18source share1 answerShort answer: Yes.Long answer: GeoPt properties are sorted first by latitude, then by longitude. This query will find objects that fall between two latitudes, only given longitudes if the latitudes are identical.+1Nick johnson May 15, '11 at 22:44source shareMore articles:How to access values ββin a recordset - ms-accessDefining Members and Properties in Xcode 4 and iOS 4 - iosThe C # switch statement is case sensitive. Is there a way to switch it so that it becomes case insensitive? - c #https://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1352514/alternative-for-downloading-several-images-to-a-web-page&usg=ALkJrhjxCI8Cg6z4vqZZ9IpZ-BegtIG40wCreating custom controls in wpf for reuse - c #It is not possible to display the register for ... on ... because it does not store its value outside the edge of the hour - vhdlSQL Server 2008 - How to add a constraint that prevents the same value from appearing in both column A and column B? - sqlscala: override implicit parameter around code block by name - scalaHow to make this thread wait in line to exit? - pythonHaskell - Creating Functional Programming (Exercise 4.3) - equalsAll Articles
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 ignores the long one in this case. It's true?
Short answer: Yes.
Long answer: GeoPt properties are sorted first by latitude, then by longitude. This query will find objects that fall between two latitudes, only given longitudes if the latitudes are identical.
GeoPt