You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have seen now how to make worldwide maps, let's now make a smaller map with our own data. We can use the `set_extent` method to define an area of interest. In the following code we define an area of interest in units of the Dutch projection system RDNew (with the EPSG ode 28992). When passing these coordinates, do not forget to tell Cartopy from which reference system they are! Let's also add some gridlines so, another nice way to add some reference to map.
351
+
## Smaller maps
352
+
We have seen now how to make worldwide maps, let's now make a smaller map with our own data. To do this we use the `set_extent` method to define an area of interest and the `add_geometries` method to add geometries in a GeoDataFrame. Have a look at the code below
So we see that the pre defined features are useful, but when zooming in to Wageningen coastlines will not really help us... A good moment to add our own data! Let's start with a GeoDataFrame
0 commit comments