Skip to content

Instantly share code, notes, and snippets.

@geomantic
Last active June 28, 2019 13:47
Show Gist options
  • Save geomantic/085a4c0d40067add31c4 to your computer and use it in GitHub Desktop.
Save geomantic/085a4c0d40067add31c4 to your computer and use it in GitHub Desktop.
Finding data by date using Overpass Turbo
[out:json][timeout:25];
// gather results
(
// query part for: “newer:"2017-05-22T00:01:00Z"”
node(newer:"2019-01-01T00:01:00Z")({{bbox}});
way(newer:"2019-01-01T00:01:00Z")({{bbox}});
);
// print results
out body;
>;
out skel qt;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment