Highlighting Countries With Cartopy
Here is how to highlight select countries with Cartopy. (You can also highlight select states with Cartopy.)
Define which countries to highlight in countries.csv
, and run cartopy_countries.py
:
import matplotlib.pyplot as plt
import cartopy
import cartopy.io.shapereader as shpreader
import cartopy.crs as ccrs
import pandas as …