In [1]:
from ahh import vis
In [2]:
vis.init_map(region='na') # quickly subset a region of interest such as North America
Out[2]:
In [3]:
vis.init_map(latlim=(0, 90), lonlim=(-180, 0)) # or input personal lat lon extent
Out[3]:
In [4]:
ax = vis.init_map(region='us') # useful in combination with plot bounds
vis.plot_bounds(ax, latlim=(35, 45), lonlim=(-120, -105), color='red') # to highlight certain regions
vis.plot_bounds(ax, latlim=(35, 45), lonlim=(-100, -90), fill=True) # perhaps to indicate the boundary of your study
vis.plot_bounds(ax, latlim=(37, 42), lonlim=(-115, -110), linestyle=':', fill=True, alpha=0.25) # extremely customizable
In [ ]: