Last active
January 15, 2024 01:42
-
-
Save JayKickliter/57994f6005148ee3fdfbe47480f7870c to your computer and use it in GitHub Desktop.
Download all ESA WorldCover tiles
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -ex | |
for lat in "S90" "S30" "N30"; do | |
for lon in "E000" "E060" "E120" "W060" "W120" "W180"; do | |
file_name=ESA_WorldCover_10m_2021_v200_60deg_macrotile_$lat$lon.zip | |
wget https://worldcover2021.esa.int/data/archive/$file_name | |
unzip $file_name | |
rm $file_name | |
done | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment