Canonical common brand names, operators, transit and flags for OpenStreetMap.
Find a file
2016-07-05 16:17:45 -04:00
.gitignore Update from planet-140101.osm.pbf 2014-01-06 04:09:56 +00:00
build.js Resolve more translations, add some basic obvious tags 2013-11-25 15:51:05 -08:00
canonical.json Update canonical and filter 2016-06-28 12:13:22 +02:00
CODE_OF_CONDUCT.md Add Code of Conduct 2016-07-05 16:17:45 -04:00
filter.json Extend the list of supported tags 2016-06-28 13:45:56 +02:00
getRaw.js Extend the list of supported tags 2016-06-28 13:45:56 +02:00
Makefile Organization 2013-10-30 18:32:58 -07:00
name-suggestions.json Extend the list of supported tags 2016-06-28 13:45:56 +02:00
name-suggestions.min.json Extend the list of supported tags 2016-06-28 13:45:56 +02:00
package.json Use correct license string to prevent warning on 'npm install' 2016-06-26 11:15:42 +02:00
README.md Update for modern ubuntu 2014-10-26 18:24:32 -04:00
topNames.json Extend the list of supported tags 2016-06-28 13:45:56 +02:00

Name Suggestion Index

The goal of this project is to maintain a canonical list of commonly used name values for suggesting correct spelling and/or formatting that might otherwise diverge from common usage on OSM. When editing a place name like Walmart, users create many different spellings such as Wal-Mart, WalMart, Walmart Supercenter. In iD we want to help suggest the most common names with the correct formatting and spelling.

This index can also be used for passing additional values for a selected name. For example, it's known that McDonald's serves hamburgers so we can use that knowledge to fill in cuisine=burger or any other tags that are always associated with a specific name.

###Contributing We need help finding all the 'incorrect' names in topNames.json and mapping them to the correct equivalent so the incorrect name is not suggested. By 'correct', we only mean the most common usage on OSM. Check with filter.json to make sure we are using that tag combination and are not ignoring that name already. For example, "Papa John's" has been used 144 times, but has also been entered as "Papa John's Pizza" (62) and "Papa Johns" (68). Mapping them to a singular value is done in canonical.json:

"Papa John's": {
    "matches": [
        "Papa John's Pizza",
        "Papa Johns"
    ]
}
  • make necessary changes to canonical.json or filter.json ("what to edit" below)
  • run make
    • this will run build.js against topNames.json using the rules defined in filter.json and canonical.json
    • name-suggestions.json and name-suggestions.min.json will be updated

###What to edit

  • canonical.json is a list of the most correct names, any possible similar matches to them, and any known tags.
  • filter.json determines which tag combinations are included and which names are completely ignored
  • name-suggestions.json and name-suggestions.min.json are compiled, any changes made to them directly will be overwritten

###Updating topNames.json from planet

  • git clone https://github.com/osmlab/name-suggestion-index.git && cd name-suggestion-index
  • download the planet
    • wget http://planet.osm.org/pbf/planet-latest.osm.pbf
  • Ubuntu install (install recent nodejs):
    • sudo apt-get update
    • sudo apt-get install -y python-software-properties python g++ make
    • sudo apt-get install nodejs npm
    • sudo ln -s /usr/bin/nodejs /usr/bin/node
    • npm install
  • node getRaw yourOSMfile
    • results will go in topNames.json