Skip to content

Instantly share code, notes, and snippets.

@d3netxer
Created February 27, 2016 23:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save d3netxer/e23a8eaf6fd2bbee9372 to your computer and use it in GitHub Desktop.
Save d3netxer/e23a8eaf6fd2bbee9372 to your computer and use it in GitHub Desktop.
difference Overpass-turbo ql query
/*
This is an example Overpass query that is used to find the differences in all buildings, highways, and POIs between two points in time within the bounding box
*/
[diff:"2016-02-01T15:00:00Z","2016-02-26T15:00:00Z"];
(
// get all buildings
way[building]({{bbox}});
// get all roads
way[highway]({{bbox}});
// get important POIs
node[leisure]({{bbox}});
node[sport]({{bbox}});
node[man_made]({{bbox}});
node[historic]({{bbox}});
node[tunnel]({{bbox}});
);
out body;
>;
out skel qt;
@d3netxer
Copy link
Author

Link to query on Overpass-turbo: http://overpass-turbo.eu/s/eFg

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment