In [1]:
!date
In [2]:
import matplotlib.pyplot as plt
from geoplots import geoplot
import xarray as xr
%matplotlib inline
plt.rc('figure', figsize=(8,5))
In [3]:
geoplot()
Out[3]:
In [4]:
geoplot(proj='robin')
Out[4]:
In [5]:
geoplot(proj='ortho')
Out[5]:
In [6]:
geoplot(proj='npolar')
Out[6]:
In [7]:
geoplot(proj='spolar')
Out[7]:
In [8]:
geoplot(proj='lcc')
Out[8]:
In [9]:
geoplot(lon_0=180)
Out[9]:
In [10]:
geoplot(proj='ortho', lon_0=120, lat_0=60)
Out[10]:
In [11]:
geoplot(land_on=True)
Out[11]:
In [12]:
geoplot(land_on=True, land_color='coral')
Out[12]:
In [13]:
geoplot(land_on=True, land_color='coral', ocean_on=True)
Out[13]:
In [14]:
geoplot(grid_label_on=True)
Out[14]:
In [15]:
geoplot(proj='robin', grid_label_on=True, meridian_kw={'rotation':-30})
Out[15]:
In [16]:
geoplot(proj='npolar', grid_label_on=True)
Out[16]: