Created
December 20, 2016 17:42
-
-
Save dalekunce/88de84b4673ff778d4d697398057c51d to your computer and use it in GitHub Desktop.
overpass_getnewest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<osm-script output="json" timeout="3600"> | |
<union into="_"> | |
<query into="_" type="node"> | |
<newer than="2015-11-01T00:00:00Z"/> | |
<bbox-query e="-6.229248046875" into="_" n="10.919617760254697" s="3.491489430459778" w="-14.919433593750002"/> | |
</query> | |
</union> | |
<print e="" from="_" geometry="skeleton" limit="" mode="body" n="" order="id" s="" w=""/> | |
<recurse from="_" into="_" type="down"/> | |
<print e="" from="_" geometry="skeleton" limit="" mode="skeleton" n="" order="quadtile" s="" w=""/> | |
</osm-script> | |
wget "http://overpass-api.de/api/interpreter?data=node[name=\"Gielgen\"];out;" | |
[timeout:3600]; | |
// gather results | |
( | |
//node(newer:"2015-11-01T00:00:00Z")({{bbox}}); | |
way(newer:"2015-11-01T00:00:00Z")({{bbox}}); | |
); | |
// print results | |
out meta; | |
>; | |
out meta qt; | |
<osm-script timeout="3600"> | |
<union into="_"> | |
<query into="_" type="way"> | |
<has-kv k="highway" modv="" v=""/> | |
<newer than="2015-11-01T00:00:00Z"/> | |
</query> | |
</union> | |
<print e="" from="_" geometry="skeleton" limit="" mode="body" n="" order="id" s="" w=""/> | |
<recurse from="_" into="_" type="down"/> | |
<print e="" from="_" geometry="skeleton" limit="" mode="skeleton" n="" order="quadtile" s="" w=""/> | |
</osm-script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment