Session Ready
Exercise

Projecting to Web Mercator for using web tiles

In the first chapter, we did an exercise on plotting the restaurant locations in Paris and adding a background map to it using the contextily package.

Currently, contextily assumes that your data is in the Web Mercator projection, the system used by most web tile services. And in that first exercise, we provided the data in the appropriate CRS so you didn't need to care about this aspect.

However, typically, your data will not come in Web Mercator (EPSG:3857) and you will have to align them with web tiles on your own.

GeoPandas, matplotlib and contextily are already imported.

Instructions
100 XP
  • Convert the restaurants dataset to the Web Mercator projection (EPSG:3857). Call the result restaurants_webmercator.
  • Make a plot of this projected dataset (specify the marker size to be 1) and add a background map using contextily.