I'm trying to get my 20 most recent edits and export it as a JSON, but I can't seem to get overpass to limit my query properly. This is my query:
[out:json][timeout:60];
(
node(user:"bddavidson")({{bbox}});
way(user:"bddavidson")({{bbox}});
relation(user:"bddavidson")({{bbox}});
);
// print results
out body;
>;
out skel qt;
I've tried using the print actions found here to limit on the out
commands, but I haven't had any luck so far. I also tried on the >
, but that didn't seem to work either.
Is there currently a way with Overpass to get my 20 most recent changes no matter what they are (point/line/polygon)?
asked
01 May '17, 16:14
bddavidson
161●3●4●11
accept rate:
100%
I think you'll have to manually determine the date of the 20th changeset back and then use
newer
ordiff
to fetch the changes since that time.