Skip to content

Commit

Permalink
some fix
Browse files Browse the repository at this point in the history
  • Loading branch information
naogify committed Jan 6, 2025
1 parent 7d54031 commit 73d2cfc
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ jq -c '.[]' $json_file | while read item; do

# URLを関連ファイルの拡張子に変更
reference_file="${reference%.*}.$extension"
# キャッシュ対策
reference_file="${reference_file}?date=$(date +%s)"

# ダウンロード先のファイルが存在しない場合のみダウンロード
if [ ! -f "$download_path" ]; then
Expand Down Expand Up @@ -259,10 +261,10 @@ echo "マージする .mbtiles ファイル: ${mbtiles_files[@]}"
merged_file="output.mbtiles"
tile-join -o "$merged_file" "${TILEJOIN_OPTS[@]}" "${mbtiles_files[@]}"

# 処理が終わったら .ndgeojson と .mbtiles ファイルを削除
find . -name "*.ndgeojson" -delete
find . -name "*.geojson" -delete
find . -name "*.mbtiles" ! -name "$merged_file" -delete
# # 処理が終わったら .ndgeojson と .mbtiles ファイルを削除
# find . -name "*.ndgeojson" -delete
# find . -name "*.geojson" -delete
# find . -name "*.mbtiles" ! -name "$merged_file" -delete


# --------------------------------------------------
Expand Down

0 comments on commit 73d2cfc

Please sign in to comment.