Customised ancillary layers

[1]:
import earthkit.maps

chart = earthkit.maps.Chart(domain="Africa")

chart.land(color="slategrey")
chart.rivers(color="cornflowerblue", linestyle="--", linewidth=2)
chart.lakes(edgecolor="cornflowerblue", linewidth=2)
chart.ocean(color="darkslategrey")

chart.coastlines(color="red", linewidth=2)
chart.borders(color="pink", linestyle=":", linewidth=1)

chart.show()
../../../_images/examples_gallery_ancillary-data_customised-ancillary-layers_1_0.png