In [10]:
from ahh import exp, vis

In [11]:
ds = exp.arr_ds()
da = ds['air'][0]

In [12]:
vis.plot_map(da, latlim=(-20, 80), lonlim=(-180, 90))


Out[12]:
<cartopy.mpl.geoaxes.GeoAxesSubplot at 0x7fa83f0d1860>

In [13]:
vis.plot_map(da, region='na')


Out[13]:
<cartopy.mpl.geoaxes.GeoAxesSubplot at 0x7fa839bb9a20>

In [14]:
vis.plot_map(da, region='us')


Out[14]:
<cartopy.mpl.geoaxes.GeoAxesSubplot at 0x7fa839f80668>

In [15]:
vis.plot_map(da, region='nh')


Out[15]:
<cartopy.mpl.geoaxes.GeoAxesSubplot at 0x7fa83a2304e0>

In [16]:
vis.plot_map(da, region='sh')


Out[16]:
<cartopy.mpl.geoaxes.GeoAxesSubplot at 0x7fa83cd035c0>

In [17]:
vis.plot_map(da, region='wh')


Out[17]:
<cartopy.mpl.geoaxes.GeoAxesSubplot at 0x7fa83d05f518>

In [18]:
vis.plot_map(da, region='eh')


Out[18]:
<cartopy.mpl.geoaxes.GeoAxesSubplot at 0x7fa83d2c7c50>

In [ ]: