NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum

Hello List, is there a way to get amenity=school polygons or nodes inside amenity=school polygons?

asked 22 Apr '21, 09:19

Cascafico's gravatar image

Cascafico
283202329
accept rate: 0%


Use Overpass, find all school polygons in an area and then for each one see if there is a school within it. This example is based on the fairways example from the OSM Wiki;

{{geocodeArea:Nottingham}}->.searchArea;
wr["amenity"="school"](area.searchArea);
map_to_area->.schools;
nwr(area.schools)["amenity"="school"];
out; > ; out geom;

I happen to know of at least one school within a school (which in this case is not a bug, so please don't 'fix' it) within this city.

permanent link

answered 22 Apr '21, 13:14

SK53's gravatar image

SK53 ♦
28.1k48268433
accept rate: 22%

I'm aware there are some discussions about considering it an issue. I commented school wiki page [1] and I hope conclusions will go for landuse=school.

Thanks for the fast and clear example... and don't worry for your school ;-)

[1] https://wiki.openstreetmap.org/wiki/Talk:Tag:amenity%3Dschool#Use_of_landuse.3Dschool

(23 Apr '21, 12:27) Cascafico
3

This is an extreme minority view about amenity=school, unsubstantiated by any meaningful discussion. All educational institutions can be assumed to have an implicit landuse of education, but there is nothing to be gained from adding it explicitly, and "school" would be the wrong value anyway.

(23 Apr '21, 12:56) SK53 ♦

In OSM I think there is a fundamental difference between phisical objects and functional ones:
- landuse is phisical
- amenity is functional
Hence IMHO there is no redundancy in using a tagging schema like this:

building=school (inner poly)
amenity=school (whatever primitive your knowledge represents better the function)
landuse=school (outer poly)

I came to this schema trying to map a school which I know very well. An area used by 3 different inner schools, each with its own isced:level and name.

(26 Apr '21, 11:07) Cascafico
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×483
×8

question asked: 22 Apr '21, 09:19

question was seen: 963 times

last updated: 26 Apr '21, 11:11

NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum