Skip to content

Commit

Permalink
some fix
Browse files Browse the repository at this point in the history
  • Loading branch information
naogify committed Nov 13, 2024
1 parent 770bca2 commit e2aee3f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -144,4 +144,5 @@ output.xlsx
bin/yaizu
data.json
_rawData
rawData
rawData
data_test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ $ ./main.sh <input_directory> <config_file_excel> [CRS]
- `config_file_excel` には、メニュー用設定ファイルのパスを指定します。

```bash
$ ./main.sh ./data ./スマートマップ地理空間データ設定.xlsx EPSG:2446
$ ./main.sh ./data ./スマートマップ地理空間データ設定.xlsx EPSG:6676 // 8系
```

## 試してみる
Expand Down
6 changes: 3 additions & 3 deletions main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jq -c '.[]' $json_file | while read item; do

# EPSG:4326 で UTF-8 の Shapefile に変換
if [ ! -f "$prj_file" ]; then
# .prj ファイルがない場合、指定されたCRS を使用して変換
# .prj ファイルがない場合、EPSG:6676 を使用して変換
ogr2ogr -f "ESRI Shapefile" $s_srs_args -t_srs EPSG:4326 -lco ENCODING=UTF-8 "$temp_file" "$shpfile"
else
# .prj ファイルがある場合はそのまま変換
Expand Down Expand Up @@ -209,7 +209,7 @@ jq -c '.[]' $json_file | while read item; do
TIPPECANOE_OPTS=(
"-M" "500000" # タイルサイズを500KBに制限
"--no-tile-stats" # タイル統計情報を生成しない
"-Z" "9"
"-Z" "8"
"-z" "14"
"--simplify-only-low-zooms" # 低ズームレベルのみ簡略化
"--cluster-distance=5" # 10 ピクセル以内はクラスタリング
Expand Down Expand Up @@ -238,7 +238,7 @@ TILEJOIN_OPTS=(
"--overzoom" # オーバーズームを有効
"--no-tile-size-limit" # タイルサイズの制限を無効
"--no-tile-stats" # タイル統計情報を生成しない
"-Z" "9" # このズーム以下のタイルはコピーしない
"-Z" "8" # このズーム以下のタイルはコピーしない
"-z" "14" # このズーム以上のタイルはコピーしない
"--force"
)
Expand Down

0 comments on commit e2aee3f

Please sign in to comment.