Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.18 KB

defined_scientific.rst

File metadata and controls

49 lines (32 loc) · 1.18 KB

Scientific Regions

The following regions, used in the scientific literature, are already defined:

  • Giorgi Regions (from Giorgi and Franciso, 2000)
  • SREX Regions (Special Report on Managing the Risks of Extreme Events and Disasters to Advance Climate Change Adaptation (SREX) from Seneviratne et al., 2012)

python

# Use defaults so we don't get gridlines in generated docs import matplotlib as mpl mpl.rcdefaults() mpl.use('Agg')

The following imports are necessary for the examples.

python

import regionmask import matplotlib.pyplot as plt

Giorgi Regions

python

regionmask.defined_regions.giorgi.plot(label='abbrev');

@savefig plotting_giorgi.png width=6in plt.tight_layout()

SREX Regions

python

regionmask.defined_regions.srex.plot();

@savefig plotting_srex.png width=6in plt.tight_layout()

References