Note
Go to the end to download the full example code.
GraticuleΒΆ
GraticuleLayer draws meridians and parallels at a step given in
degrees. The map is framed on continental Europe via bbox.
<mappyng.map.Map object at 0x7b2238deda30>
from mappyng import Map, BasemapLayer, GraticuleLayer
from mappyng.data import load_europe
europe = load_europe()
# Continental Europe frame, in EPSG:3857 (the data CRS).
bbox = [-1400000, 4000000, 4700000, 11500000]
m = Map(europe, bbox=bbox, width=820, height="auto", facecolor="#cfe0ee")
m.add(GraticuleLayer(step=10.0, stroke="#9bb0c4"))
m.add(BasemapLayer())
m.title("Europe", subtitle="Graticule at a 10-degree step")
m.source("Basemap: Natural Earth")
m.render("graticule.svg")
Total running time of the script: (0 minutes 0.142 seconds)