npm run build
will reprocess the files and output warnings- Resolve warnings - show me
- Remove generic names - show me
- Add
brand:wikidata
andbrand:wikipedia
tags - show me - Add missing brands - show me
dist/allNames.json
- all the frequent names and tags collected from OpenStreetMapdist/discardNames.json
- discarded subset of allNamesdist/keepNames.json
- kept subset of allNames
config/filters.json
- Regular expressions used to filterallNames
intokeepNames
/discardNames
config/canonical.json
- Main config file containing all the most correct names and tags to assign to them
OpenStreetMap is a free, editable map of the whole world that
is being built by volunteers.
Features on the map are defined using tags. Each tag is a key=value
pair of text strings.
For example, a McDonald's restaurant might have these tags:
"amenity": "fast_food"
"cuisine": "burger"
"name": "McDonald's"
... and more tags to record its address, opening hours, and so on.
The goal of this project is to define the most correct tags to assign to each common brand name. This helps people contribute to OpenStreetMap, because they can pick "McDonald's" from a list and not need to worry about the tags being added.
config/canonical.json
is our main list of the most correct names and tags.
This file is created by:
- Processing the OpenStreetMap "planet" data to extract common names ->
dist/allNames.json
- Filtering all the names into ->
dist/keepNames.json
anddist/discardNames.json
- Merging the names we are keeping into ->
config/canonical.json
for us to decide what to do with them
Each entry looks like this (comments added for clarity):
"amenity/fast_food|McDonald's": { // Identifier like "key/value|name"
"count": 19040, // `count` - generated # of these that we found in OpenStreetMap
"match": [
"amenity/fast_food|Mc Donald's", // Optional `match` array
"amenity/fast_food|McDonalds", // Contains less-desirable variations to ignore.
"amenity/restaurant|Mc Donald's", // (we want to keep only "amenity/fast_food|McDonald's")
"amenity/restaurant|Mc Donalds", //
"amenity/restaurant|McDonald's", //
"amenity/restaurant|McDonalds", //
],
"tags": { // "tags" - OpenStreetMap tags that every McDonald's should have
"amenity": "fast_food", // The OpenStreetMap tag for a "fast food" restaurant
"brand": "McDonald's", // `brand` - Brand name in the local language (English)
"brand:wikidata": "Q38076", // `brand:wikidata` - Universal Wikidata identifier
"brand:wikipedia": "en:McDonald's", // `brand:wikipedia` - Reference to English Wikipedia
"cuisine": "burger", // `cuisine` - What kind of fast food is served here
"name": "McDonald's" // `name` - Display name, also in the local language (English)
}
},
There may also be entries for McDonald's in other languages!
"amenity/fast_food|マクドナルド": { // Identifier like "key/value|name"
"count": 1445,
"countryCodes": ["jp"], // Optional `countryCodes` - array of countries where this entry is used
"tags": {
"amenity": "fast_food",
"brand": "マクドナルド", // `brand` - Brand name in the local language (Japanese)
"brand:en": "McDonald's", // `brand:en` - For non-English brands, tag the English version too
"brand:wikidata": "Q38076", // `brand:wikidata` - Same Universal wikidata identifier
"brand:wikipedia": "ja:マクドナルド", // `brand:wikipedia` - Reference to Japanese Wikipedia
"cuisine": "burger",
"name": "マクドナルド", // `name` - Display name, also in the local language (Japanese)
"name:en": "McDonald's" // `name:en` - For non-English names, tag the English version too
}
},
These properties always start with "no"
.
Sometimes there are multiple different entries that use the same name.
For example, "Sonic" can be either a fast food restaurant or a fuel station.
We want to allow both kinds of "Sonic" to exist in the index, and we don't want
to be warned that they are potentially duplicate, so we can add a nomatch
property to each entry to suppress the "duplicate name" warning.
"amenity/fuel|Sonic": {
"count": 127,
"nomatch": ["amenity/fast_food|Sonic"],
...
}
"amenity/fast_food|Sonic": {
"count": 1110,
"nomatch": ["amenity/fuel|Sonic"],
...
}
Sometimes a new, uncommon OpenStreetMap tag-name combination should replace an existing tag-name combination.
For example, many Costcos are tagged as shop=department_store
or shop=supermarket
,
but the new preferred tag is shop=wholesale
.
We don't want to be warned that the new correct tag is uncommon, so we add a
nocount
property to the entry to suppress the "uncommon name" warning.
"shop/wholesale|Costco": {
"nocount": true,
"match": [
"shop/department_store|Costco",
"shop/department_store|Costco Wholesale",
"shop/supermarket|Costco",
"shop/supermarket|Costco Wholesale"
],
...
},
Sometimes multiple brands with the same name will operate in geographically
distinct locations. You can modify the key to include a tilde ~
after the name
to tell the difference between two otherwise identical brands.
The text after the tilde can contain anything.
When using a tilde ~
name:
- You should add
"nocount": true
, as the script will not be able to determine the true count. - You should add
"nomatch":
properties to each name so they do not generate duplicate name warnings.
"shop/supermarket|Price Chopper~(Kansas City)": {
"countryCodes": ["us"],
"nocount": true,
"nomatch": [
"shop/supermarket|Price Chopper~(New York)"
],
"tags": {
"brand": "Price Chopper",
"brand:wikidata": "Q7242572",
"brand:wikipedia": "en:Price Chopper (supermarket)",
"name": "Price Chopper",
"shop": "supermarket"
}
},
"shop/supermarket|Price Chopper~(New York)": {
"countryCodes": ["us"],
"nocount": true,
"nomatch": [
"shop/supermarket|Price Chopper~(Kansas City)"
],
"tags": {
"brand": "Price Chopper",
"brand:wikidata": "Q7242574",
"brand:wikipedia": "en:Price Chopper Supermarkets",
"name": "Price Chopper",
"shop": "supermarket"
}
},
To rebuild the index, run:
npm run build
This will output a lot of warnings, which you can help fix!
Warnings mean that you need to edit config/canonical.json
.
The warning output gives a clue about how to fix or suppress the warning.
If you aren't sure, just ask on GitHub!
Warning - Potential duplicate names in `canonical.json`:
To resolve these, remove the worse entry and add "match" property on the better entry.
To suppress this warning for entries that really are different, add a "nomatch" property on both entries.
"tourism/motel|Motel 6" -> duplicates? -> "tourism/hotel|Motel 6"
What it means: "Motel 6" exists in the index twice - as both a tourism=hotel
(wrong)
and a tourism=motel
(correct). In this situation we want to:
- Delete the entry for
"tourism/hotel|Motel 6"
and - Add
"match": ["tourism/hotel|Motel 6"]
to the"tourism/motel|Motel 6"
entry
Usually the entry which is used more frequently (indicated by "count" property) is the one to keep. If you are not sure, you can also search on the OpenStreetMap Wiki for tag best practices.
Warning - Uncommon entries in `canonical.json` not found in `keepNames.json`:
These might be okay. It just means that the entry is not commonly found in OpenStreetMap.
To suppress this warning, add a "nocount" property to the entry.
"shop/wholesale|Costco"
What it means: This warning can occur if the index contains an entry that is not common in OpenStreetMap.
Either replace it with a more common tag, or add "nocount": true
to suppress the warning.
(In this situation, shop=wholesale
is a new preferred tag, but most existing Costcos were
still tagged as shop=department_store
. Suppressing the warning is the correct thing to do).
Some of the common names in the index might not actually be brand names. We want to remove these generic words from the index, so they are not suggested to mappers.
For example, "Универмаг" is just a Russian word for "Department store":
"shop/department_store|Универмаг": {
"count": 210,
"tags": {
"brand": "Универмаг",
"name": "Универмаг",
"shop": "department_store"
}
},
To remove this generic name:
- Delete the entries from
config/canonical.json
- Edit
config/filters.json
. Add a regular expression matching the generic name in either thediscardKeys
ordiscardNames
list. - Run
npm run build
- if the filter is working, the name will not be put back intoconfig/canonical.json
git diff
- to make sure that the entries you wanted to discard are gone (and no others are affected)- If all looks ok, submit a pull request with your changes.
Adding brand:wikipedia
and brand:wikidata
tags is a very useful task that anybody
can help with.
- Find an entry in
config/canonical.json
that is missing these tags:
"amenity/fast_food|Chipotle": {
"count": 708,
"match": [
"amenity/fast_food|Chipotle Mexican Grill",
"amenity/restaurant|Chipotle",
"amenity/restaurant|Chipotle Mexican Grill"
],
"tags": {
"amenity": "fast_food",
"brand": "Chipotle",
"cuisine": "mexican",
"name": "Chipotle"
}
},
- Google for that brand - if you are lucky, you might find the Wikipedia page right away.
- From the Wikipedia page URL, you can identify the
brand:wikipedia
value.
OpenStreetMap expects this tag to be formatted like "en:Chipotle Mexican Grill"
.
- Copy the page name from the URL.
- Add the language prefix "en:".
- Replace the underscores '_' with spaces.
On the brand's Wikipedia page, you can also find its "Wikidata item" link. This appears under the "tools" menu in the sidebar.
👉 protip: @maxerickson has created a user script to make copying these values even easier - see #1881
- On the brand's Wikidata page, you can identify the
brand:wikidata
value. It is a code starting with 'Q' and several numbers.
- Update
config/canonical.json
:
We can add the "brand:wikipedia"
and "brand:wikidata"
tags.
"amenity/fast_food|Chipotle": {
"count": 708,
"match": [
"amenity/fast_food|Chipotle Mexican Grill",
"amenity/restaurant|Chipotle",
"amenity/restaurant|Chipotle Mexican Grill"
],
"tags": {
"amenity": "fast_food",
"brand:wikidata": "Q465751", // added
"brand:wikipedia": "en:Chipotle Mexican Grill", // added
"brand": "Chipotle",
"cuisine": "mexican",
"name": "Chipotle"
}
},
(comments added for clarity)
- Rebuild and submit a pull request.
- Run
npm run build
- If it does not fail with an error, you can submit a pull request with your changes.
This example uses a brand "かっぱ寿司". I don't know what that is, so I will do some research.
- Find an entry in
config/canonical.json
:
"amenity/fast_food|かっぱ寿司": {
"count": 91,
"tags": {
"amenity": "fast_food",
"brand": "かっぱ寿司",
"name": "かっぱ寿司"
}
},
- Google for that brand - if you are lucky, you might find the Wikipedia page right away.
Tip: You might want to narrow you search by Googling with a site:
filter: "かっぱ寿司 site:ja.wikipedia.org"
From these results, we can know that the brand is "Kappazushi", owned by a Japanese company called "Kappa Create". We can also find the Wikipedia page.
- As with English brands, you can identify the
brand:wikipedia
value from the URL. Because this is a Japanese brand, we will link to the Japanese Wikipedia page.
OpenStreetMap expects this tag to be formatted like "ja:かっぱ寿司"
.
- Copy the page name from the URL.
- Add the language prefix "ja:".
- Replace the underscores '_' with spaces.
Although I can not read Japanese, I can identify the "Wikidata item" link because it always appears in the sidebar and mouseover will show the Wikidata 'Q' code in the URL.
- On the brand's Wikidata page, you can identify the
brand:wikidata
value. It is a code starting with 'Q' and several numbers.
Note: The Wikidata page looks a bit sparse - you can edit this too if you want to help!
- Update
config/canonical.json
:
We can add:
"brand:en"
and"name:en"
tags to contain the English name "Kappazushi""brand:wikipedia"
and"brand:wikidata"
tags."cuisine": "sushi"
OpenStreetMap tag"countryCodes"
property, to indicate that this brand should only be used in Japan.
"amenity/fast_food|かっぱ寿司": {
"count": 91,
"countryCodes": ["jp"], // added
"tags": {
"amenity": "fast_food",
"brand": "かっぱ寿司",
"brand:en": "Kappazushi", // added
"brand:wikipedia": "ja:かっぱ寿司", // added
"brand:wikidata": "Q11263916", // added
"cuisine": "sushi", // added
"name": "かっぱ寿司",
"name:en": "Kappazushi" // added
}
},
(comments added for clarity)
- Rebuild and submit a pull request.
- Run
npm run build
- If it does not fail with an error, you can submit a pull request with your changes.
If it exists, we want to know about it!
Some brands aren't mapped enough (50+ times) to automatically be added to the index so this is a valuable way to get ahead of incorrect tagging.
-
Before adding a new brand, the minimum information you should know is the correct tagging required for instances of the brand (
name
,brand
and what it is - e.g.shop=food
). Ideally you also havebrand:wikidata
andbrand:wikipedia
tags for the brand and any other appropriate tags - e.g.cuisine
. -
Add your new entry anywhere in
config/canonical.json
(it will be sorted alphabetically later) and using the"tags"
key add all appropriate OSM tags. Refer to here if you're not familiar with the syntax. -
Add the
"nocount": true
key to your new entry as this will suppress the warnings that it doesn't appear often in OSM. -
If the brand only has locations in a known set of countries add the
"countryCodes": []
key to your new entry. This takes an array of ISO 3166-1 alpha-2 country codes in lowercase (e.g.["de", "at", "nl"]
). -
If instances of this brand are commonly mistagged add the
"match": []
key to list these. Again, refer to here for syntax. -
Run
npm run build
and resolve any duplicate name warnings.
Sometimes you might want to know the locations where a brand name exists in OpenStreetMap. Overpass Turbo can show them on a map:
-
Enter your query like this, replacing the
name
and other OpenStreetMap tags. Because we don't specify a bounding box, this will perform a global query.
nwr["name"="かっぱ寿司"]["amenity"="fast_food"];
out center;
- Click run to view the results.
As expected, the "かっぱ寿司" (Kappazushi) locations are all concentrated in Japan.