Skip to content

npolar/placenames

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

norwegian polar place names

ES2019 source for Place names (v4) – built with web components Eventyrstranda

Development

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

Freeze official names

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