This is a static archive of our old OpenStreetMap Help Site. Please post any new questions and answers at community.osm.org.

download all school address

0

I have the project to mapping all school in my region (City and Region), need to download all elementary/secondary schools in all kinds of authority - public, private. I am a beginner with OpenStreetMap, please advise and thank you very much!

asked 13 Oct '20, 18:12

schoolgis's gravatar image

schoolgis
11114
accept rate: 0%

What do you need to download? Just name and street address? Or geo-location of the school's centroid?

(13 Oct '20, 19:30) TZorn

4 Answers:

2

Your examples appear to look for "node" data items only. Schools are more often mapped as ways or relations than as single points, so you need to look for all these data types. This example finds several schools in Airdrie: https://overpass-turbo.eu/s/Z2O

answered 15 Oct '20, 11:37

alan_gr's gravatar image

alan_gr
2.6k12245
accept rate: 15%

2

First you need to get the area to search within. Then ensure your searching for all types (NWR means Nodes,Ways,Relations) Output to both centre-points & perimeter boundaries so they can all be viewed when zoomed out.

area[name="Airdrie"];
nwr[amenity=school](area);
out center;
out geom;

https://overpass-turbo.eu/s/Z37

answered 15 Oct '20, 13:48

DaveF's gravatar image

DaveF
3.3k8498133
accept rate: 16%

1

I can give you a hint. There must be a way to do what you need in https://overpass-turbo.eu/

Good luck.

met

answered 14 Oct '20, 04:55

mdelatorre's gravatar image

mdelatorre
1773411
accept rate: 0%

Thank you very much, I got it but it seems not all school have been captured in the "bbox".

(14 Oct '20, 15:49) schoolgis

Post a link with your routine (Share tab)

(14 Oct '20, 19:42) DaveF

0

https://overpass-turbo.eu/s/Z1N https://overpass-turbo.eu/s/Z1S

There is no data showing in Airdrie, Alberta, Canada. Thank you very much!

answered 14 Oct '20, 20:29

schoolgis's gravatar image

schoolgis
11114
accept rate: 0%

edited 14 Oct '20, 20:35

Source code available on GitHub .