reconfigure minify-map-json action #51

Merged
hughrun merged 1 commit from geo2topo into master 2021-01-28 19:15:38 +11:00
2 changed files with 16 additions and 2 deletions

View file

@ -1,3 +1,4 @@
#!/usr/bin/env bash
sudo npm install -g mapshaper
mapshaper ./boundaries.geo.json snap -clean -o force precision=0.0001 format=geojson ./boundaries.geo.json
sudo npm install -g topojson-server

View file

@ -14,10 +14,23 @@ jobs:
with:
fetch-depth: 0
- name: Update TopoJSON boundaries
run: ./.github/scripts/minify-map-json.sh
merge:
run: |
sudo npm install -g mapshaper
mapshaper ./boundaries.geo.json snap -clean -o force precision=0.0001 format=geojson ./boundaries.geo.json
process:
needs: prepare
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Update TopoJSON boundaries
run: |
sudo npm install -g topojson-server
geo2topo ./boundaries.geo.json -q 50000 > ./website/data/boundaries.topo.json
merge:
needs: process
runs-on: ubuntu-latest
steps:
- name: Merge CSV to TopoJSON
run: |