How to get points from OpenStreetMap of a certain country?
问题 i'm trying to get the list of all schools in my country, and after several tries i write the following query that works with no errors on http://overpass-turbo.eu: /* This has been generated by the overpass-turbo wizard. The original search was: “amenity=school”=“yes” */ [out:json][timeout:60]; // gather results ( // query part for: “amenity=school” node[amenity=school]({{geocodeBbox:Italia}}); way[amenity=school]({{geocodeBbox:Italia}}); relation[amenity=school]({{geocodeBbox:Italia}}); ); /