Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update path to .tif files in create-dataset.sh #52

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions create-dataset.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ set -eu

cd $OUTDIR
../download-srtm-data.sh
../create-tiles.sh SRTM_NE_250m.tif 10 10
../create-tiles.sh SRTM_SE_250m.tif 10 10
../create-tiles.sh SRTM_W_250m.tif 10 20
../create-tiles.sh ./SRTM_NE_250m_TIF/SRTM_NE_250m.tif 10 10
../create-tiles.sh ./SRTM_SE_250m_TIF/SRTM_SE_250m.tif 10 10
../create-tiles.sh ./SRTM_W_250m_TIF/SRTM_W_250m.tif 10 20
rm -rf SRTM_NE_250m_TIF SRTM_SE_250m_TIF SRTM_W_250m_TIF
rm -rf SRTM_NE_250m.tif SRTM_SE_250m.tif SRTM_W_250m.tif *.rar
lsfischer marked this conversation as resolved.
Show resolved Hide resolved

cd $CUR_DIR