ES2019 source for Place names (v4) – built with web components
Clone the repo, install deps, and run with
git clone https://github.com/npolar/placenames # or SSH URL
cd placenames && yarn
yarn dev
Starts a live-server on http://localhost:1596
Official names are frozen in code by-area, to allow more efficient name detection
To update, create a branch, run the commands below, and submit a pull request.
npm i -g ndjson-cli
branch="freeze-official-`date -uI`"
git checkout -b $branch
./bin/placenames-freeze-official
git commit -m "Updated frozen names" src/placename/by-area/official/*.js
git push --set-upstream origin $branch