Skip to content

Automated script for the download of OSM data with Overpass API to be used in uMap.

License

Notifications You must be signed in to change notification settings

LorenzoStucchi/umap_OSM_overpassdata

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

umap_OSM_overpassdata

Automated script for the download of OSM data with Overpass API to be used in uMap.

List of maps

Overpass query

Pietre

[out:xml][timeout:300];
{{geocodeArea:Italia}}->.searchArea;
(
	node["memorial"="stolperstein"](area.searchArea);
	node["memorial:type"="stolperstein"](area.searchArea);
);
out;

Ecomusei_percorsi

[out:xml][timeout:300];
{{geocodeArea:Italia}}->.searchArea;
(
	node["operator"~"ecomuseo"](area.searchArea);
	way["operator"~"ecomuseo"](area.searchArea);
	relation["operator"~"ecomuseo"](area.searchArea);
);
out;
>;
out skel qt;

Ecomusei

[out:xml][timeout:300];
{{geocodeArea:Italia}}->.searchArea;
(
	node["museum"="ecomuseum"](area.searchArea);
	way["museum"="ecomuseum"](area.searchArea);
);
out;
>;
out skel qt;

Ecomusei_name

[out:xml][timeout:300];
{{geocodeArea:Italia}}->.searchArea;
(
	node["name"~"Ecomuseo"](area.searchArea);
	way["name"~"Ecomuseo"](area.searchArea);
);
out;
>;
out skel qt;

Flush

[out:xml][timeout:300];
{{geocodeArea:Milano}}->.searchArea;
node["kerb"="flush"](area.searchArea);
out meta geom;

Lowered

[out:xml][timeout:300];
{{geocodeArea:Milano}}->.searchArea;
node["kerb"="lowered"](area.searchArea);
out meta geom;

Raised

[out:xml][timeout:300];
{{geocodeArea:Milano}}->.searchArea;
node["kerb"="raised"](area.searchArea);
out meta geom;

Sidewalk

[out:xml][timeout:300];
{{geocodeArea:Milano}}->.searchArea;
way["footway"="sidewalk"](area.searchArea);
out meta geom;

Crossing

[out:xml][timeout:300];
{{geocodeArea:Milano}}->.searchArea;
way["footway"="crossing"](area.searchArea);
out meta geom;

Kerb

[out:xml][timeout:300];
{{geocodeArea:Milano}}->.searchArea;
node["kerb"](area.searchArea);
out meta geom;

Wheelchair

[out:xml][timeout:300];
{{geocodeArea:Milano}}->.searchArea;
(node["wheelchair"][!"highway"][!"kerb"](area.searchArea);
way["wheelchair"][!"highway"][!"kerb"](area.searchArea););
out meta center;

About

Automated script for the download of OSM data with Overpass API to be used in uMap.

Topics

Resources

License

Stars

Watchers

Forks

Languages