Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrectly tagged funeral homes #24

Closed
govvin opened this issue Sep 1, 2017 · 1 comment
Closed

Incorrectly tagged funeral homes #24

govvin opened this issue Sep 1, 2017 · 1 comment

Comments

@govvin
Copy link
Member

govvin commented Sep 1, 2017

image

Fix all POIs known (based on name) as funerary homes, and fix any mis-tags.

The correct tag is shop=funeral_directors but some objects are mapped as tourism=museum 😮 , amenity=funeral_home, shop=butcher, historic=memorial, etc.

The following Overpass Turbo query is used to find these objects:

// fetch area “Philippines” to search in
{{geocodeArea:Philippines}}->.searchArea;
// gather results
(
  // query part for: “name~/funeral/i”
  node["name"~"funeral",i](area.searchArea);
  way["name"~"funeral",i](area.searchArea););
// print results
out body;
>;
out skel qt;

After downloading the data in JOSM, objects are reviewed individually and updated accordingly.

@govvin govvin self-assigned this Sep 1, 2017
@govvin
Copy link
Member Author

govvin commented Sep 1, 2017

fixed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant