Skip to content

Instantly share code, notes, and snippets.

@JayKickliter
Last active January 15, 2024 01:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JayKickliter/57994f6005148ee3fdfbe47480f7870c to your computer and use it in GitHub Desktop.
Save JayKickliter/57994f6005148ee3fdfbe47480f7870c to your computer and use it in GitHub Desktop.
Download all ESA WorldCover tiles
#!/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