I would like to add this as a map background option for the cartopy_tools.common_features class...

Could be terrain field from GFS, HRRR, or another model
This would require Herbie being installed, and getting the data.
from herbie import Herbie
model = 'hrrr'
def TERRAIN2(self, date, model):
H = Herbie(date, model)
ds = H.terrain()
# color the map background water
self.ax.set_facecolor(water_color)
# plot the terrain
ax.pcolormesh(
ds.longitude,
ds.latitude,
ds.orog,
transform=pc,
**cm_terrain(water=False, land_top=5500).cmap_kwargs
)
I would like to add this as a map background option for the
cartopy_tools.common_featuresclass...Could be terrain field from GFS, HRRR, or another model
This would require Herbie being installed, and getting the data.