Default: vicmap.png
Inspect Element on map, then find the <div> with the satellite images (element
- id typically OpenLayers_Layer_XYZ_8). The second last number in each image
+ id typically OpenLayers_Layer_XYZ_*). The second last number in each image
URL corresponds to the longitude (E-W) and the last number corresponds to the
latitude (N-S). Find the maximum latitude and longitude in the range shown.\n"
mkdir -p $i
# Iterate through latitudes (individual tiles N to S)
for ((j=$latmin; j<=$latmax; j++)); do
- curl -s -C - https://base.maps.vic.gov.au/wmts/AERIAL_WM/EPSG:3857/$zoom/$i/$j.png -o $i/$j.png
+ #curl -s -C - https://base.maps.vic.gov.au/wmts/AERIAL_VG/EPSG:3111/$zoom/$i/$j.png -o $i/$j.png
+ #curl -s -C - https://base.maps.vic.gov.au/wmts/AERIAL_WM/EPSG:3857/$zoom/$i/$j.png -o $i/$j.png
+ curl -C - https://base.maps.vic.gov.au/wmts/AERIAL_VG2020/EPSG:7899/$zoom/$i/$j.png -o $i/$j.png
done
montage $i/* -tile 1x"$y" -geometry +0+0 $i.png
done