Canonical common brand names, operators, transit and flags for OpenStreetMap.
Find a file
Bryan Housel fc2d3c51af Disable the "dot-notation" eslint rule
(We have to use this notation a bunch when working with tags)
2020-11-05 09:21:00 -05:00
.github Create dependabot.yml 2020-06-10 17:40:09 -04:00
.vscode Add a Visual Studio Code config to disable formatonsave 2020-10-21 09:06:54 -07:00
app Support 'operators' as a tree, move amenity/post_office.json there 2020-11-03 15:10:18 -05:00
config Collected common names from latest planet, match some post offices 2020-11-04 17:43:39 -05:00
data npm run build 2020-11-05 09:20:25 -05:00
dist Collected common names from latest planet, match some post offices 2020-11-04 17:43:39 -05:00
docs npm run wikidata / npm run dist 2020-11-03 15:22:47 -05:00
features Organize features into folders, disambiguate Konsum Leipzig/Dresden 2020-11-02 12:10:55 -05:00
lib Support 'operators' as a tree, move amenity/post_office.json there 2020-11-03 15:10:18 -05:00
schema More file renames, update README 2020-10-01 13:48:40 -04:00
scripts Support 'operators' as a tree, move amenity/post_office.json there 2020-11-03 15:10:18 -05:00
.editorconfig Add .editorconfig file 2019-03-09 00:10:02 +00:00
.eslintrc Disable the "dot-notation" eslint rule 2020-11-05 09:21:00 -05:00
.gitignore Foot Solutions #3053 (#3085) 2019-10-08 12:06:54 -04:00
.travis.yml Back out changes to .travis.yml (logs are already visible there) 2020-09-25 15:58:16 -04:00
CODE_OF_CONDUCT.md Add Code of Conduct 2016-07-05 16:17:45 -04:00
CONTRIBUTING.md Replace some more custom geojson with country-coder subcountries 2020-10-26 13:16:48 -04:00
index.mjs Same as previous, but commit the brand files too 2020-09-18 10:55:58 -04:00
LICENSE.md Modernize 2018-09-07 10:52:34 -04:00
package.json Support 'operators' as a tree, move amenity/post_office.json there 2020-11-03 15:10:18 -05:00
README.md Replace some more custom geojson with country-coder subcountries 2020-10-26 13:16:48 -04:00
RELEASE.md Switch default branch from master -> main 2020-09-16 11:15:28 -04:00
rollup.config.js Update the rollup plugins (they are scoped packages now) 2020-06-12 11:23:07 -04:00

Build Status npm version

name-suggestion-index

Canonical features for OpenStreetMap

What is it?

The goal of this project is to maintain a canonical list of commonly used features for suggesting consistent spelling and tagging in OpenStreetMap.

Watch the video from our talk at State of the Map US 2019 to learn more about this project!

Browse the index

You can browse the index at https://nsi.guide/ to see which features are missing Wikidata links, or have incomplete Wikipedia pages.

How it's used

When mappers create features in OpenStreetMap, they are not always consistent about how they name and tag things. For example, we may prefer McDonald's tagged as amenity=fast_food but we see many examples of other spellings (Mc Donald's, McDonalds, McDonalds) and taggings (amenity=restaurant).

Building a canonical feature index allows two very useful things:

  • We can suggest the most "correct" way to tag things as users create them while editing.
  • We can scan the OSM data for "incorrect" features and produce lists for review and cleanup.
Name Suggestion Index in use in iD

The name-suggestion-index is in use in iD when adding a new item

Currently used in:

Participate!

We're always looking for help! If you have any questions or want to reach out to a maintainer, ping bhousel on:

Prerequisites

  • Node.js version 10 or newer
  • git for your platform

Installing

  • Clone this project, for example: git clone git@github.com:osmlab/name-suggestion-index.git
  • cd into the project folder,
  • Run npm install to install libraries

About the index

Generated files (do not edit):

The files under dist/* are generated:

  • dist/collected/* - Frequently occuring tags collected from OpenStreetMap
  • dist/filtered/* - Subset of tags that we are keeping or discarding
  • dist/presets/* - Preset files for use in OSM editors, custom JOSM presets, etc.
  • dist/taginfo.json - List of all tags this project uses (see: https://taginfo.openstreetmap.org/)
  • dist/wikidata.json - Cached data retrieved from Wikidata

Input files (edit these):

The files under config/*, data/*, and features/* can be edited:

  • config/*:
    • config/filter_*.json - Regular expressions used to filter the OpenStreetMap tags into keep/discard lists
    • config/match_groups.json - Groups of OpenStreetMap tags that are considered equivalent for purposes of matching
  • data/* - Data files for each kind of feature, organized by topic and OpenStreetMap tag
    • data/brands/amenity/*.json
    • data/brands/shop/*.json
    • data/transit/route/*.json
    • and so on…
  • features/* - GeoJSON files that define custom regions where the features are allowed
    • new_jersey.geojson
    • quebec.geojson
    • and so on…

👉 See CONTRIBUTING.md for info about how to contribute to this index.

Building the index

  • npm run build
    • Processes any custom locations under features/**/*.geojson
    • Regenerates dist/filtered/* keep and discard lists
    • Any new items from the keep list not already present in the index will be merged into it
    • Outputs many warnings to suggest updates to data/**/*.json

Building nsi.guide

https://nsi.guide/ is a web application written in ReactJS that lets anyone browse the index.

  • The source code for this app can be found under app/*
  • npm run appbuild will rebuild it.

Other commands

  • npm run wikidata - Fetch useful data from Wikidata - labels, descriptions, logos, etc.
  • npm run dist - Rebuild and minify the generated files in the dist/ folder.
  • npm run - Lists other available commands

Collecting names from planet

This takes a long time and a lot of disk space. It can be done occasionally by project maintainers. You do not need to do these steps in order to contribute to the index.

  • Install osmium commandline tool and node package (may only be available on some environments)
    • apt-get install osmium-tool or brew install osmium-tool or similar
    • npm install --no-save osmium
  • Download the planet
    • curl -L -o planet-latest.osm.pbf https://planet.openstreetmap.org/pbf/planet-latest.osm.pbf
  • Prefilter the planet file to only include named items with keys we are looking for:
    • osmium tags-filter planet-latest.osm.pbf -R name,brand,operator,network -o filtered.osm.pbf
  • Run node scripts/collect_all.js /path/to/filtered.osm.pbf
    • results will go in dist/collected/*.json
  • A new challenge:
    • Attempt an npm run build. Now that unique id properties are generated, it is possible that this command will fail.
    • This can happen if there are multiple new items that end up with the same id (e.g. "MetroBus" vs "Metrobus")
    • You'll need to just pick one to keep, then keep trying to run npm run build until the duplicate id issues are gone.
    • git add . && git commit -m 'Collected common names from latest planet'

License

name-suggestion-index is available under the 3-Clause BSD License. See the LICENSE.md file for more details.