[SOLVED] Find all retirement/nursing homes within 10km radius?

Thanks.

Simplified with regexes:

[out:json];

(
  nw(around:5000,LAT, LON)["social_facility"~"(nursing_home|care_home)"];
  nw(around:5000,LAT, LON)["amenity"~"(nursing_home|care_home)"];
);

(._;>;);
out qt;
1 Like