.. (comment): DO NOT EDIT this file. .. It is auto-generated by running : /home/runner/work/MetPy/MetPy/docs/make_areas.py .. Please adjust by making changes there. .. It is included in the repository only to aid detection of changes. .. _api-areas: MetPy Area List =============== us - UNITED STATES --------------------- .. plot:: :context: reset import matplotlib.pyplot as plt import cartopy.crs as ccrs import cartopy.feature as cfeature from metpy.plots import named_areas proj = named_areas['us'].projection plt.figure(figsize=(8, 10)) ax = plt.subplot(111, projection=proj) ax.set_extent((-119.0, -56.0, 19.0, 47.0), ccrs.PlateCarree()) ax.add_feature(cfeature.STATES.with_scale('10m'), edgecolor='grey', linewidth=0.75) ax.add_feature(cfeature.COASTLINE.with_scale('10m'), linewidth=1.1) ax.add_feature(cfeature.BORDERS.with_scale('10m'), edgecolor='black') ax.set_title(f'area=us name=UNITED STATES') awips - AWIPS US ------------------- .. plot:: :context: reset import matplotlib.pyplot as plt import cartopy.crs as ccrs import cartopy.feature as cfeature from metpy.plots import named_areas proj = named_areas['awips'].projection plt.figure(figsize=(8, 10)) ax = plt.subplot(111, projection=proj) ax.set_extent((-127.0, -59.0, 20.0, 50.0), ccrs.PlateCarree()) ax.add_feature(cfeature.STATES.with_scale('10m'), edgecolor='grey', linewidth=0.75) ax.add_feature(cfeature.COASTLINE.with_scale('10m'), linewidth=1.1) ax.add_feature(cfeature.BORDERS.with_scale('10m'), edgecolor='black') ax.set_title(f'area=awips name=AWIPS US')