Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kamataryo/nationalpark-mvt
https://github.com/kamataryo/nationalpark-mvt
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kamataryo/nationalpark-mvt
- Owner: kamataryo
- Created: 2020-06-15T03:55:11.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-20T02:48:17.000Z (over 2 years ago)
- Last Synced: 2023-09-17T00:26:50.064Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 28 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 国立公園区域タイル
https://kamataryo.github.io/nationalpark-mvt/
## ライセンス
### タイル
このリポジトリでホストされているベクトルタイルは、[国立公園区域等 GIS データ](http://gis.biodic.go.jp/webgis/sc-026.html?kind=nps)([環境省生物多様性センター](http://www.biodic.go.jp/))を使用し [@kamataryo](https://github.com/kamataryo/nationalpark-mvt)が作成したものです。
### その他のソース
MIT
## タイルのビルド
### ツール
- ogr2ogr https://gdal.org/programs/ogr2ogr.html
- tippeacanoe https://github.com/mapbox/tippecanoe
- mb-util https://github.com/mapbox/mbutil### タイルの作成
```shell
$ git clone https://github.com/kamataryo/nationalpark-mvt.git
$ cd nationalpark-mvt
```国立公園の区域図を `./data/nps_all.shp` としてダウンロードしておきます。
http://gis.biodic.go.jp/webgis/sc-026.html?kind=nps以下のコマンドを実行すると、docs フォルダにベクトルタイルが生成されます。
```shell
$ ogr2ogr -f GeoJSON ./data/nps.geojson ./data/nps_all.shp -lco ENCODING=UTF-8
$ tippecanoe -o ./data/nps.mbtiles -zg --drop-densest-as-needed --no-tile-compression ./data/nps.geojson
$ mb-util --image_format=pbf ./data/nps.mbtiles ./docs
$ find ./docs -name "*.pbf" -exec bash -c 'mv "$1" "${1%.pbf}".mvt' - '{}' \;
```