I'd like to look for recent nodes on exactly latitude -1. That's something a bit like this:
Which nearly works, except that it's not looking for recent nodes. The documentation leads me to believe that something like
ought to work, but unfortunately that gives:
Presumably, that is because the bounding box is counted as "large" (because it covers every latitude) rather than "small" (only one longitude) and therefore the "changed" part is being executed first, and obviously every node on the planet added this year results in an "out of memory" error. Is there any way to rephrase this query to only return nodes in that bounding box that were modified this year? (edit: spelling) |
Try using the Thanks - that works!
(24 Nov '16, 19:01)
SomeoneElse ♦
Is there a logic to having to use "diff" before the actual query (in []) and "changed" at the level of the queried items (in () )?
(25 Nov '16, 08:45)
joost schouppe
@joost: Hmm, as far as I know, the operations of the two operations are actually quite different:
(26 Nov '16, 14:21)
tyr_asd
OK thanks, just realized I've been using diff when I could have used the lighter changed or newer
(27 Nov '16, 08:55)
joost schouppe
1
Just for completeness, an example combining with a bounding box:
(18 Mar '17, 10:53)
SomeoneElse ♦
|