diff --git a/examples/scalar_data/geometry_data.py b/examples/scalar_data/geometry_data.py new file mode 100644 index 000000000..80c052f4c --- /dev/null +++ b/examples/scalar_data/geometry_data.py @@ -0,0 +1,46 @@ +""" +Associating data with geometries +-------------------------------- + +This example shows how to colour geometries based on a data array. This +functionality is available since Cartopy 0.23. + +""" +import matplotlib.pyplot as plt + +import cartopy.crs as ccrs +import cartopy.io.shapereader as shpreader + + +def main(): + # Load Natural Earth's country shapefiles. + shpfilename = shpreader.natural_earth(resolution='110m', + category='cultural', + name='admin_0_countries') + reader = shpreader.Reader(shpfilename) + countries = reader.records() + + # Get hold of the geometry and population estimate from each countries record. + geometries = [] + population_estimates = [] + + for country in countries: + geometries.append(country.geometry) + population_estimates.append(country.attributes['POP_EST']) + + # Set up a figure and an axes with the Eckert VI projection. + fig = plt.figure() + ax = fig.add_subplot(projection=ccrs.EckertVI()) + + # Plot the geometries coloured according to population estimate. + art = ax.add_geometries(geometries, crs=ccrs.PlateCarree(), + array=population_estimates, cmap='YlGnBu', norm='log') + cbar = fig.colorbar(art, orientation='horizontal') + cbar.set_label('Number of people') + fig.suptitle('Country Population Estimates', fontsize='x-large') + + plt.show() + + +if __name__ == '__main__': + main()