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

2
2

There is a problem with misusing name tag to map node types instead of proper nouns. Can I somehow setup a notification for new nodes with name=some_type ?

Related: How to find a bot maintainer to suggest additional replace conditions?

asked 12 Mar '13, 01:17

int_ua's gravatar image

int_ua
27591221
accept rate: 0%


That's a good idea to improve data quality.

Please have a look at http://osm102.openstreetmap.fr/~zorglub/watch/

Another approach would be to call from your browser once a day or more often a link like

http://overpass-api.de/api/interpreter?data=[out:json];node[name=some_type];out;

It will list all nodes that exist with the given tag. For example

http://overpass-api.de/api/interpreter?data=[out:json];node[name=highway];out;

has two hits.

As in your case most likely no legitimate case exists, you can work by hand through all found objects and correct their tags.

permanent link

answered 12 Mar '13, 07:34

Roland%20Olbricht's gravatar image

Roland Olbricht
6.7k36489
accept rate: 36%

edited 12 Mar '13, 09:46

The Firefox addon Update Scanner may be useful for automatic scanning the overpass result page for changes. Be SURE to set the scan interval to daily or even weekly to avoid unnecessary load on the server. Maybe using IFTTT would be another option.

(12 Mar '13, 20:37) aseerel4c26 ♦

If you have a little Unix command line skills, it is easy to do:

  • use Osmosis with the --rri task to download all changes since you last ran the program;
  • run the result past the "oscgrep" program (http://svn.openstreetmap.org/applications/utils/filter/oscgrep/) using the flags -a create -t node to search only for new nodes, and the flag -r 'k="name" v="Toilet"' to find those where this tag has been used.

Please do not use such a mechanism to indiscriminately "fix" things the world over; such editing would be subject to the Mechanical Edit Policy and you would have to achieve community consenus on whether your edits are desirable first.

permanent link

answered 12 Mar '13, 07:42

Frederik%20Ramm's gravatar image

Frederik Ramm ♦
82.5k927201273
accept rate: 23%

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:

×219
×8

question asked: 12 Mar '13, 01:17

question was seen: 3,040 times

last updated: 12 Mar '13, 20:37

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