[1]:
import earthkit.plots
from earthkit.plots.geo import domains

central_europe = domains.Domain.from_bbox(
    bbox=[2, 24, 45, 55],
    name="Central Europe",
)

chart = earthkit.plots.Map(domain=central_europe)

chart.land()
chart.urban_areas()
chart.borders()
chart.cities(adjust_labels=True)
chart.coastlines()
chart.gridlines()

chart.title("{domain}")

chart.show()
../../../_images/examples_gallery_domains_custom-domain_0_0.png