0

I'm trying to perform search by tag using the request like this:

http://overpass.osm.rambler.ru/cgi/interpreter?data=[out:json];node[%22addr:postcode%22=20156];out;

Is it possible to query only for nodes that has been added/modified after some arbitrary date?

Igor Bubelov
  • 5,154
  • 5
  • 25
  • 24

1 Answers1

0

Yes, there are the two keywords changed and newer. Better use newer since changed requires lots of memory to run, see issue 278.

scai
  • 20,297
  • 4
  • 56
  • 72
  • But changed apparently uses mega amounts of memory, so newer may be the way to go. – Max von Hippel Oct 04 '16 at 07:30
  • 1
    Thanks for the hint. Please put your experiences in a separate answer. To me this sounds more like a bug with a specific version of Overpass API and not like a general advice. It has already been reported at https://github.com/drolbr/Overpass-API/issues/278 – scai Oct 04 '16 at 17:45