Blue Marble JPEG over the Arctic
[1]:
!wget -O blue-marble.jpg https://eoimages.gsfc.nasa.gov/images/imagerecords/74000/74167/world.200410.3x5400x2700.jpg
--2023-12-11 13:38:17-- https://eoimages.gsfc.nasa.gov/images/imagerecords/74000/74167/world.200410.3x5400x2700.jpg
Resolving eoimages.gsfc.nasa.gov (eoimages.gsfc.nasa.gov)... 2001:4d0:2310:170::12, 129.164.142.12
Connecting to eoimages.gsfc.nasa.gov (eoimages.gsfc.nasa.gov)|2001:4d0:2310:170::12|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1766694 (1.7M) [image/jpeg]
Saving to: ‘blue-marble.jpg’
blue-marble.jpg 100%[===================>] 1.68M 3.06MB/s in 0.6s
2023-12-11 13:38:18 (3.06 MB/s) - ‘blue-marble.jpg’ saved [1766694/1766694]
[2]:
import earthkit.maps
chart = earthkit.maps.Chart(domain="Arctic")
chart.image("blue-marble.jpg", extent=(-180, 180, -90, 90))
chart.coastlines(color="white")
chart.borders(color="white")
chart.show()