THREDDS-served GRIB Data: GFS (Global Grid) Model: Eclipse Cloud Cover Forecast
Contents
THREDDS-served GRIB Data: GFS (Global Grid) Model: Eclipse Cloud Cover Forecast¶
This notebook reads in realtime GFS model output from a THREDDS server.¶
Overview:¶
Determine latest available model run
Use dictionaries to deal with coordinate dimension names that change from run-to-run
Subset data and map regions
Create a 4-panel plot
Imports¶
import cartopy.crs as ccrs
import cartopy.feature as cfeature
from cartopy.io.shapereader import Reader
from matplotlib import pyplot as plt
from matplotlib.dates import DateFormatter, AutoDateLocator,HourLocator,DayLocator
from matplotlib.collections import LineCollection
from matplotlib.colors import BoundaryNorm, ListedColormap
import numpy as np
import xarray as xr
import pandas as pd
from datetime import datetime, timedelta
from pyproj import Proj
from metpy.plots import USCOUNTIES
import seaborn as sns
import geopandas as gpd
sns.set()
Access real-time NWP data from Unidata’s THREDDS server¶
Parse the current time and choose a recent hour when we might expect the model run to be complete. There is normally a ~90 minute lag, but we’ll give it a bit more than that.
now = datetime.now()
year = now.year
month = now.month
day = now.day
hour = now.hour
minute = now.minute
# Allow for a six-hour lag between GFS initialization and current time
if (hour >= 18):
runHour = 12
hrDelta = hour - runHour
elif (hour >= 12):
runHour = 6
hrDelta = hour - runHour
elif (hour >= 6):
runHour = 0
hrDelta = hour - runHour
else:
runHour = 18
hrDelta = hour + 6
runTime = now - timedelta(hours=hrDelta)
runTimeStr = runTime.strftime('%Y%m%d %H00 UTC')
modelDate = runTime.strftime('%Y%m%d')
modelHour = runTime.strftime('%H')
modelMin = runTime.strftime('%M')
modelDay = runTime.strftime('%D')
titleTime = modelDay + ' ' + modelHour + '00 UTC'
print (modelDay)
print (modelHour)
print (runTimeStr)
print(titleTime)
04/29/24
18
20240429 1800 UTC
04/29/24 1800 UTC
Open the most recent NCEP real-timeGFS from Unidata’s THREDDS server
ds = xr.open_dataset(f'https://thredds.ucar.edu/thredds/dodsC/grib/NCEP/GFS/Global_0p25deg/GFS_Global_0p25deg_{modelDate}_{modelHour}00.grib2')
ds
<xarray.Dataset> Dimensions: ( lat: 721, lon: 1440, time: 254, time1: 129, time2: 128, ... height_above_ground_layer_bounds_1: 2, height_above_ground_layer1_bounds_1: 2, pressure_difference_layer1_bounds_1: 2, pressure_difference_layer2_bounds_1: 2, sigma_layer_bounds_1: 2, depth_below_surface_layer_bounds_1: 2) Coordinates: (12/28) * lat (lat) float32 ... * lon (lon) float32 ... reftime datetime64[ns] ... * time (time) datetime64[ns] ... * time1 (time1) datetime64[ns] ... * time2 (time2) datetime64[ns] ... ... ... * height_above_ground4 (height_above_ground4) float32 ... * height_above_ground5 (height_above_ground5) float32 ... * potential_vorticity_surface (potential_vorticity_surface) float32 ... * sigma (sigma) float32 ... * hybrid (hybrid) float32 ... * hybrid1 (hybrid1) float32 ... Dimensions without coordinates: time_bounds_1, time2_bounds_1, pressure_difference_layer_bounds_1, height_above_ground_layer_bounds_1, height_above_ground_layer1_bounds_1, pressure_difference_layer1_bounds_1, pressure_difference_layer2_bounds_1, sigma_layer_bounds_1, depth_below_surface_layer_bounds_1 Data variables: (12/180) LatLon_Projection int32 ... time_bounds (time, time_bounds_1) datetime64[ns] ... time2_bounds (time2, time2_bounds_1) datetime64[ns] ... pressure_difference_layer_bounds (pressure_difference_layer, pressure_difference_layer_bounds_1) float32 ... height_above_ground_layer_bounds (height_above_ground_layer, height_above_ground_layer_bounds_1) float32 ... height_above_ground_layer1_bounds (height_above_ground_layer1, height_above_ground_layer1_bounds_1) float32 ... ... ... v-component_of_wind_planetary_boundary (time1, lat, lon) float32 ... v-component_of_wind_altitude_above_msl (time1, altitude_above_msl, lat, lon) float32 ... v-component_of_wind_maximum_wind (time1, lat, lon) float32 ... v-component_of_wind_tropopause (time1, lat, lon) float32 ... v-component_of_wind_height_above_ground (time1, height_above_ground2, lat, lon) float32 ... v-component_of_wind_sigma (time1, sigma, lat, lon) float32 ... Attributes: Originating_or_generating_Center: ... Originating_or_generating_Subcenter: ... GRIB_table_version: ... Type_of_generating_process: ... Analysis_or_forecast_generating_process_identifier_defined_by_originating... file_format: ... Conventions: ... history: ... featureType: ... _CoordSysBuilder: ...
- lat: 721
- lon: 1440
- time: 254
- time1: 129
- time2: 128
- time3: 128
- height_above_ground: 1
- pressure_difference_layer: 1
- height_above_ground1: 2
- altitude_above_msl: 3
- altitude_above_msl1: 1
- isobaric: 41
- height_above_ground_layer: 1
- height_above_ground_layer1: 1
- pressure_difference_layer1: 3
- pressure_difference_layer2: 1
- height_above_ground2: 7
- sigma_layer: 4
- depth_below_surface_layer: 4
- height_above_ground3: 3
- isobaric1: 22
- height_above_ground4: 1
- height_above_ground5: 2
- potential_vorticity_surface: 2
- sigma: 1
- hybrid: 1
- hybrid1: 2
- time_bounds_1: 2
- time2_bounds_1: 2
- pressure_difference_layer_bounds_1: 2
- height_above_ground_layer_bounds_1: 2
- height_above_ground_layer1_bounds_1: 2
- pressure_difference_layer1_bounds_1: 2
- pressure_difference_layer2_bounds_1: 2
- sigma_layer_bounds_1: 2
- depth_below_surface_layer_bounds_1: 2
- lat(lat)float3290.0 89.75 89.5 ... -89.75 -90.0
- units :
- degrees_north
- _CoordinateAxisType :
- Lat
array([ 90. , 89.75, 89.5 , ..., -89.5 , -89.75, -90. ], dtype=float32)
- lon(lon)float320.0 0.25 0.5 ... 359.2 359.5 359.8
- units :
- degrees_east
- _CoordinateAxisType :
- Lon
array([0.0000e+00, 2.5000e-01, 5.0000e-01, ..., 3.5925e+02, 3.5950e+02, 3.5975e+02], dtype=float32)
- reftime()datetime64[ns]...
- standard_name :
- forecast_reference_time
- long_name :
- GRIB reference time
- _CoordinateAxisType :
- RunTime
[1 values with dtype=datetime64[ns]]
- time(time)datetime64[ns]2024-04-29T21:00:00 ... 2024-05-...
- standard_name :
- time
- long_name :
- GRIB forecast or observation time
- bounds :
- time_bounds
- _CoordinateAxisType :
- Time
array(['2024-04-29T21:00:00.000000000', '2024-04-30T00:00:00.000000000', '2024-04-30T01:30:00.000000000', ..., '2024-05-15T15:00:00.000000000', '2024-05-15T16:30:00.000000000', '2024-05-15T18:00:00.000000000'], dtype='datetime64[ns]')
- time1(time1)datetime64[ns]2024-04-29T18:00:00 ... 2024-05-...
- standard_name :
- time
- long_name :
- GRIB forecast or observation time
- _CoordinateAxisType :
- Time
array(['2024-04-29T18:00:00.000000000', '2024-04-29T21:00:00.000000000', '2024-04-30T00:00:00.000000000', '2024-04-30T03:00:00.000000000', '2024-04-30T06:00:00.000000000', '2024-04-30T09:00:00.000000000', '2024-04-30T12:00:00.000000000', '2024-04-30T15:00:00.000000000', '2024-04-30T18:00:00.000000000', '2024-04-30T21:00:00.000000000', '2024-05-01T00:00:00.000000000', '2024-05-01T03:00:00.000000000', '2024-05-01T06:00:00.000000000', '2024-05-01T09:00:00.000000000', '2024-05-01T12:00:00.000000000', '2024-05-01T15:00:00.000000000', '2024-05-01T18:00:00.000000000', '2024-05-01T21:00:00.000000000', '2024-05-02T00:00:00.000000000', '2024-05-02T03:00:00.000000000', '2024-05-02T06:00:00.000000000', '2024-05-02T09:00:00.000000000', '2024-05-02T12:00:00.000000000', '2024-05-02T15:00:00.000000000', '2024-05-02T18:00:00.000000000', '2024-05-02T21:00:00.000000000', '2024-05-03T00:00:00.000000000', '2024-05-03T03:00:00.000000000', '2024-05-03T06:00:00.000000000', '2024-05-03T09:00:00.000000000', '2024-05-03T12:00:00.000000000', '2024-05-03T15:00:00.000000000', '2024-05-03T18:00:00.000000000', '2024-05-03T21:00:00.000000000', '2024-05-04T00:00:00.000000000', '2024-05-04T03:00:00.000000000', '2024-05-04T06:00:00.000000000', '2024-05-04T09:00:00.000000000', '2024-05-04T12:00:00.000000000', '2024-05-04T15:00:00.000000000', '2024-05-04T18:00:00.000000000', '2024-05-04T21:00:00.000000000', '2024-05-05T00:00:00.000000000', '2024-05-05T03:00:00.000000000', '2024-05-05T06:00:00.000000000', '2024-05-05T09:00:00.000000000', '2024-05-05T12:00:00.000000000', '2024-05-05T15:00:00.000000000', '2024-05-05T18:00:00.000000000', '2024-05-05T21:00:00.000000000', '2024-05-06T00:00:00.000000000', '2024-05-06T03:00:00.000000000', '2024-05-06T06:00:00.000000000', '2024-05-06T09:00:00.000000000', '2024-05-06T12:00:00.000000000', '2024-05-06T15:00:00.000000000', '2024-05-06T18:00:00.000000000', '2024-05-06T21:00:00.000000000', '2024-05-07T00:00:00.000000000', '2024-05-07T03:00:00.000000000', '2024-05-07T06:00:00.000000000', '2024-05-07T09:00:00.000000000', '2024-05-07T12:00:00.000000000', '2024-05-07T15:00:00.000000000', '2024-05-07T18:00:00.000000000', '2024-05-07T21:00:00.000000000', '2024-05-08T00:00:00.000000000', '2024-05-08T03:00:00.000000000', '2024-05-08T06:00:00.000000000', '2024-05-08T09:00:00.000000000', '2024-05-08T12:00:00.000000000', '2024-05-08T15:00:00.000000000', '2024-05-08T18:00:00.000000000', '2024-05-08T21:00:00.000000000', '2024-05-09T00:00:00.000000000', '2024-05-09T03:00:00.000000000', '2024-05-09T06:00:00.000000000', '2024-05-09T09:00:00.000000000', '2024-05-09T12:00:00.000000000', '2024-05-09T15:00:00.000000000', '2024-05-09T18:00:00.000000000', '2024-05-09T21:00:00.000000000', '2024-05-10T00:00:00.000000000', '2024-05-10T03:00:00.000000000', '2024-05-10T06:00:00.000000000', '2024-05-10T09:00:00.000000000', '2024-05-10T12:00:00.000000000', '2024-05-10T15:00:00.000000000', '2024-05-10T18:00:00.000000000', '2024-05-10T21:00:00.000000000', '2024-05-11T00:00:00.000000000', '2024-05-11T03:00:00.000000000', '2024-05-11T06:00:00.000000000', '2024-05-11T09:00:00.000000000', '2024-05-11T12:00:00.000000000', '2024-05-11T15:00:00.000000000', '2024-05-11T18:00:00.000000000', '2024-05-11T21:00:00.000000000', '2024-05-12T00:00:00.000000000', '2024-05-12T03:00:00.000000000', '2024-05-12T06:00:00.000000000', '2024-05-12T09:00:00.000000000', '2024-05-12T12:00:00.000000000', '2024-05-12T15:00:00.000000000', '2024-05-12T18:00:00.000000000', '2024-05-12T21:00:00.000000000', '2024-05-13T00:00:00.000000000', '2024-05-13T03:00:00.000000000', '2024-05-13T06:00:00.000000000', '2024-05-13T09:00:00.000000000', '2024-05-13T12:00:00.000000000', '2024-05-13T15:00:00.000000000', '2024-05-13T18:00:00.000000000', '2024-05-13T21:00:00.000000000', '2024-05-14T00:00:00.000000000', '2024-05-14T03:00:00.000000000', '2024-05-14T06:00:00.000000000', '2024-05-14T09:00:00.000000000', '2024-05-14T12:00:00.000000000', '2024-05-14T15:00:00.000000000', '2024-05-14T18:00:00.000000000', '2024-05-14T21:00:00.000000000', '2024-05-15T00:00:00.000000000', '2024-05-15T03:00:00.000000000', '2024-05-15T06:00:00.000000000', '2024-05-15T09:00:00.000000000', '2024-05-15T12:00:00.000000000', '2024-05-15T15:00:00.000000000', '2024-05-15T18:00:00.000000000'], dtype='datetime64[ns]')
- time2(time2)datetime64[ns]2024-04-29T21:00:00 ... 2024-05-...
- standard_name :
- time
- long_name :
- GRIB forecast or observation time
- bounds :
- time2_bounds
- _CoordinateAxisType :
- Time
array(['2024-04-29T21:00:00.000000000', '2024-04-30T00:00:00.000000000', '2024-04-30T03:00:00.000000000', '2024-04-30T06:00:00.000000000', '2024-04-30T09:00:00.000000000', '2024-04-30T12:00:00.000000000', '2024-04-30T15:00:00.000000000', '2024-04-30T18:00:00.000000000', '2024-04-30T21:00:00.000000000', '2024-05-01T00:00:00.000000000', '2024-05-01T03:00:00.000000000', '2024-05-01T06:00:00.000000000', '2024-05-01T09:00:00.000000000', '2024-05-01T12:00:00.000000000', '2024-05-01T15:00:00.000000000', '2024-05-01T18:00:00.000000000', '2024-05-01T21:00:00.000000000', '2024-05-02T00:00:00.000000000', '2024-05-02T03:00:00.000000000', '2024-05-02T06:00:00.000000000', '2024-05-02T09:00:00.000000000', '2024-05-02T12:00:00.000000000', '2024-05-02T15:00:00.000000000', '2024-05-02T18:00:00.000000000', '2024-05-02T21:00:00.000000000', '2024-05-03T00:00:00.000000000', '2024-05-03T03:00:00.000000000', '2024-05-03T06:00:00.000000000', '2024-05-03T09:00:00.000000000', '2024-05-03T12:00:00.000000000', '2024-05-03T15:00:00.000000000', '2024-05-03T18:00:00.000000000', '2024-05-03T21:00:00.000000000', '2024-05-04T00:00:00.000000000', '2024-05-04T03:00:00.000000000', '2024-05-04T06:00:00.000000000', '2024-05-04T09:00:00.000000000', '2024-05-04T12:00:00.000000000', '2024-05-04T15:00:00.000000000', '2024-05-04T18:00:00.000000000', '2024-05-04T21:00:00.000000000', '2024-05-05T00:00:00.000000000', '2024-05-05T03:00:00.000000000', '2024-05-05T06:00:00.000000000', '2024-05-05T09:00:00.000000000', '2024-05-05T12:00:00.000000000', '2024-05-05T15:00:00.000000000', '2024-05-05T18:00:00.000000000', '2024-05-05T21:00:00.000000000', '2024-05-06T00:00:00.000000000', '2024-05-06T03:00:00.000000000', '2024-05-06T06:00:00.000000000', '2024-05-06T09:00:00.000000000', '2024-05-06T12:00:00.000000000', '2024-05-06T15:00:00.000000000', '2024-05-06T18:00:00.000000000', '2024-05-06T21:00:00.000000000', '2024-05-07T00:00:00.000000000', '2024-05-07T03:00:00.000000000', '2024-05-07T06:00:00.000000000', '2024-05-07T09:00:00.000000000', '2024-05-07T12:00:00.000000000', '2024-05-07T15:00:00.000000000', '2024-05-07T18:00:00.000000000', '2024-05-07T21:00:00.000000000', '2024-05-08T00:00:00.000000000', '2024-05-08T03:00:00.000000000', '2024-05-08T06:00:00.000000000', '2024-05-08T09:00:00.000000000', '2024-05-08T12:00:00.000000000', '2024-05-08T15:00:00.000000000', '2024-05-08T18:00:00.000000000', '2024-05-08T21:00:00.000000000', '2024-05-09T00:00:00.000000000', '2024-05-09T03:00:00.000000000', '2024-05-09T06:00:00.000000000', '2024-05-09T09:00:00.000000000', '2024-05-09T12:00:00.000000000', '2024-05-09T15:00:00.000000000', '2024-05-09T18:00:00.000000000', '2024-05-09T21:00:00.000000000', '2024-05-10T00:00:00.000000000', '2024-05-10T03:00:00.000000000', '2024-05-10T06:00:00.000000000', '2024-05-10T09:00:00.000000000', '2024-05-10T12:00:00.000000000', '2024-05-10T15:00:00.000000000', '2024-05-10T18:00:00.000000000', '2024-05-10T21:00:00.000000000', '2024-05-11T00:00:00.000000000', '2024-05-11T03:00:00.000000000', '2024-05-11T06:00:00.000000000', '2024-05-11T09:00:00.000000000', '2024-05-11T12:00:00.000000000', '2024-05-11T15:00:00.000000000', '2024-05-11T18:00:00.000000000', '2024-05-11T21:00:00.000000000', '2024-05-12T00:00:00.000000000', '2024-05-12T03:00:00.000000000', '2024-05-12T06:00:00.000000000', '2024-05-12T09:00:00.000000000', '2024-05-12T12:00:00.000000000', '2024-05-12T15:00:00.000000000', '2024-05-12T18:00:00.000000000', '2024-05-12T21:00:00.000000000', '2024-05-13T00:00:00.000000000', '2024-05-13T03:00:00.000000000', '2024-05-13T06:00:00.000000000', '2024-05-13T09:00:00.000000000', '2024-05-13T12:00:00.000000000', '2024-05-13T15:00:00.000000000', '2024-05-13T18:00:00.000000000', '2024-05-13T21:00:00.000000000', '2024-05-14T00:00:00.000000000', '2024-05-14T03:00:00.000000000', '2024-05-14T06:00:00.000000000', '2024-05-14T09:00:00.000000000', '2024-05-14T12:00:00.000000000', '2024-05-14T15:00:00.000000000', '2024-05-14T18:00:00.000000000', '2024-05-14T21:00:00.000000000', '2024-05-15T00:00:00.000000000', '2024-05-15T03:00:00.000000000', '2024-05-15T06:00:00.000000000', '2024-05-15T09:00:00.000000000', '2024-05-15T12:00:00.000000000', '2024-05-15T15:00:00.000000000', '2024-05-15T18:00:00.000000000'], dtype='datetime64[ns]')
- time3(time3)datetime64[ns]2024-04-29T21:00:00 ... 2024-05-...
- standard_name :
- time
- long_name :
- GRIB forecast or observation time
- _CoordinateAxisType :
- Time
array(['2024-04-29T21:00:00.000000000', '2024-04-30T00:00:00.000000000', '2024-04-30T03:00:00.000000000', '2024-04-30T06:00:00.000000000', '2024-04-30T09:00:00.000000000', '2024-04-30T12:00:00.000000000', '2024-04-30T15:00:00.000000000', '2024-04-30T18:00:00.000000000', '2024-04-30T21:00:00.000000000', '2024-05-01T00:00:00.000000000', '2024-05-01T03:00:00.000000000', '2024-05-01T06:00:00.000000000', '2024-05-01T09:00:00.000000000', '2024-05-01T12:00:00.000000000', '2024-05-01T15:00:00.000000000', '2024-05-01T18:00:00.000000000', '2024-05-01T21:00:00.000000000', '2024-05-02T00:00:00.000000000', '2024-05-02T03:00:00.000000000', '2024-05-02T06:00:00.000000000', '2024-05-02T09:00:00.000000000', '2024-05-02T12:00:00.000000000', '2024-05-02T15:00:00.000000000', '2024-05-02T18:00:00.000000000', '2024-05-02T21:00:00.000000000', '2024-05-03T00:00:00.000000000', '2024-05-03T03:00:00.000000000', '2024-05-03T06:00:00.000000000', '2024-05-03T09:00:00.000000000', '2024-05-03T12:00:00.000000000', '2024-05-03T15:00:00.000000000', '2024-05-03T18:00:00.000000000', '2024-05-03T21:00:00.000000000', '2024-05-04T00:00:00.000000000', '2024-05-04T03:00:00.000000000', '2024-05-04T06:00:00.000000000', '2024-05-04T09:00:00.000000000', '2024-05-04T12:00:00.000000000', '2024-05-04T15:00:00.000000000', '2024-05-04T18:00:00.000000000', '2024-05-04T21:00:00.000000000', '2024-05-05T00:00:00.000000000', '2024-05-05T03:00:00.000000000', '2024-05-05T06:00:00.000000000', '2024-05-05T09:00:00.000000000', '2024-05-05T12:00:00.000000000', '2024-05-05T15:00:00.000000000', '2024-05-05T18:00:00.000000000', '2024-05-05T21:00:00.000000000', '2024-05-06T00:00:00.000000000', '2024-05-06T03:00:00.000000000', '2024-05-06T06:00:00.000000000', '2024-05-06T09:00:00.000000000', '2024-05-06T12:00:00.000000000', '2024-05-06T15:00:00.000000000', '2024-05-06T18:00:00.000000000', '2024-05-06T21:00:00.000000000', '2024-05-07T00:00:00.000000000', '2024-05-07T03:00:00.000000000', '2024-05-07T06:00:00.000000000', '2024-05-07T09:00:00.000000000', '2024-05-07T12:00:00.000000000', '2024-05-07T15:00:00.000000000', '2024-05-07T18:00:00.000000000', '2024-05-07T21:00:00.000000000', '2024-05-08T00:00:00.000000000', '2024-05-08T03:00:00.000000000', '2024-05-08T06:00:00.000000000', '2024-05-08T09:00:00.000000000', '2024-05-08T12:00:00.000000000', '2024-05-08T15:00:00.000000000', '2024-05-08T18:00:00.000000000', '2024-05-08T21:00:00.000000000', '2024-05-09T00:00:00.000000000', '2024-05-09T03:00:00.000000000', '2024-05-09T06:00:00.000000000', '2024-05-09T09:00:00.000000000', '2024-05-09T12:00:00.000000000', '2024-05-09T15:00:00.000000000', '2024-05-09T18:00:00.000000000', '2024-05-09T21:00:00.000000000', '2024-05-10T00:00:00.000000000', '2024-05-10T03:00:00.000000000', '2024-05-10T06:00:00.000000000', '2024-05-10T09:00:00.000000000', '2024-05-10T12:00:00.000000000', '2024-05-10T15:00:00.000000000', '2024-05-10T18:00:00.000000000', '2024-05-10T21:00:00.000000000', '2024-05-11T00:00:00.000000000', '2024-05-11T03:00:00.000000000', '2024-05-11T06:00:00.000000000', '2024-05-11T09:00:00.000000000', '2024-05-11T12:00:00.000000000', '2024-05-11T15:00:00.000000000', '2024-05-11T18:00:00.000000000', '2024-05-11T21:00:00.000000000', '2024-05-12T00:00:00.000000000', '2024-05-12T03:00:00.000000000', '2024-05-12T06:00:00.000000000', '2024-05-12T09:00:00.000000000', '2024-05-12T12:00:00.000000000', '2024-05-12T15:00:00.000000000', '2024-05-12T18:00:00.000000000', '2024-05-12T21:00:00.000000000', '2024-05-13T00:00:00.000000000', '2024-05-13T03:00:00.000000000', '2024-05-13T06:00:00.000000000', '2024-05-13T09:00:00.000000000', '2024-05-13T12:00:00.000000000', '2024-05-13T15:00:00.000000000', '2024-05-13T18:00:00.000000000', '2024-05-13T21:00:00.000000000', '2024-05-14T00:00:00.000000000', '2024-05-14T03:00:00.000000000', '2024-05-14T06:00:00.000000000', '2024-05-14T09:00:00.000000000', '2024-05-14T12:00:00.000000000', '2024-05-14T15:00:00.000000000', '2024-05-14T18:00:00.000000000', '2024-05-14T21:00:00.000000000', '2024-05-15T00:00:00.000000000', '2024-05-15T03:00:00.000000000', '2024-05-15T06:00:00.000000000', '2024-05-15T09:00:00.000000000', '2024-05-15T12:00:00.000000000', '2024-05-15T15:00:00.000000000', '2024-05-15T18:00:00.000000000'], dtype='datetime64[ns]')
- height_above_ground(height_above_ground)float3280.0
- units :
- m
- long_name :
- Specified height level above ground
- positive :
- up
- Grib_level_type :
- 103
- datum :
- ground
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
array([80.], dtype=float32)
- pressure_difference_layer(pressure_difference_layer)float321.275e+04
- units :
- Pa
- long_name :
- Level at specified pressure difference from ground to level
- positive :
- up
- Grib_level_type :
- 108
- datum :
- ground
- bounds :
- pressure_difference_layer_bounds
- _CoordinateAxisType :
- Pressure
- _CoordinateZisPositive :
- up
array([12750.], dtype=float32)
- height_above_ground1(height_above_ground1)float321e+03 4e+03
- units :
- m
- long_name :
- Specified height level above ground
- positive :
- up
- Grib_level_type :
- 103
- datum :
- ground
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
array([1000., 4000.], dtype=float32)
- altitude_above_msl(altitude_above_msl)float321.829e+03 2.743e+03 3.658e+03
- units :
- m
- long_name :
- Specific altitude above mean sea level
- positive :
- up
- Grib_level_type :
- 102
- datum :
- mean sea level
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
array([1829., 2743., 3658.], dtype=float32)
- altitude_above_msl1(altitude_above_msl1)float3210.0
- units :
- m
- long_name :
- Specific altitude above mean sea level
- positive :
- up
- Grib_level_type :
- 102
- datum :
- mean sea level
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
array([10.], dtype=float32)
- isobaric(isobaric)float321.0 2.0 4.0 ... 9.75e+04 1e+05
- units :
- Pa
- long_name :
- Isobaric surface
- positive :
- down
- Grib_level_type :
- 100
- _CoordinateAxisType :
- Pressure
- _CoordinateZisPositive :
- down
array([1.00e+00, 2.00e+00, 4.00e+00, 7.00e+00, 1.00e+01, 2.00e+01, 4.00e+01, 7.00e+01, 1.00e+02, 2.00e+02, 3.00e+02, 5.00e+02, 7.00e+02, 1.00e+03, 1.50e+03, 2.00e+03, 3.00e+03, 4.00e+03, 5.00e+03, 7.00e+03, 1.00e+04, 1.50e+04, 2.00e+04, 2.50e+04, 3.00e+04, 3.50e+04, 4.00e+04, 4.50e+04, 5.00e+04, 5.50e+04, 6.00e+04, 6.50e+04, 7.00e+04, 7.50e+04, 8.00e+04, 8.50e+04, 9.00e+04, 9.25e+04, 9.50e+04, 9.75e+04, 1.00e+05], dtype=float32)
- height_above_ground_layer(height_above_ground_layer)float321.5e+03
- units :
- m
- long_name :
- Specified height level above ground
- positive :
- up
- Grib_level_type :
- 103
- datum :
- ground
- bounds :
- height_above_ground_layer_bounds
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
array([1500.], dtype=float32)
- height_above_ground_layer1(height_above_ground_layer1)float323e+03
- units :
- m
- long_name :
- Specified height level above ground
- positive :
- up
- Grib_level_type :
- 103
- datum :
- ground
- bounds :
- height_above_ground_layer1_bounds
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
array([3000.], dtype=float32)
- pressure_difference_layer1(pressure_difference_layer1)float324.5e+03 9e+03 1.275e+04
- units :
- Pa
- long_name :
- Level at specified pressure difference from ground to level
- positive :
- up
- Grib_level_type :
- 108
- datum :
- ground
- bounds :
- pressure_difference_layer1_bounds
- _CoordinateAxisType :
- Pressure
- _CoordinateZisPositive :
- up
array([ 4500., 9000., 12750.], dtype=float32)
- pressure_difference_layer2(pressure_difference_layer2)float321.5e+03
- units :
- Pa
- long_name :
- Level at specified pressure difference from ground to level
- positive :
- up
- Grib_level_type :
- 108
- datum :
- ground
- bounds :
- pressure_difference_layer2_bounds
- _CoordinateAxisType :
- Pressure
- _CoordinateZisPositive :
- up
array([1500.], dtype=float32)
- height_above_ground2(height_above_ground2)float3210.0 20.0 30.0 40.0 50.0 80.0 100.0
- units :
- m
- long_name :
- Specified height level above ground
- positive :
- up
- Grib_level_type :
- 103
- datum :
- ground
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
array([ 10., 20., 30., 40., 50., 80., 100.], dtype=float32)
- sigma_layer(sigma_layer)float320.58 0.665 0.72 0.83
- units :
- sigma
- long_name :
- Sigma level
- positive :
- down
- Grib_level_type :
- 104
- bounds :
- sigma_layer_bounds
- _CoordinateAxisType :
- GeoZ
- _CoordinateZisPositive :
- down
array([0.58 , 0.665, 0.72 , 0.83 ], dtype=float32)
- depth_below_surface_layer(depth_below_surface_layer)float320.05 0.25 0.7 1.5
- units :
- m
- long_name :
- Depth below land surface
- positive :
- down
- Grib_level_type :
- 106
- datum :
- land surface
- bounds :
- depth_below_surface_layer_bounds
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- down
array([0.05, 0.25, 0.7 , 1.5 ], dtype=float32)
- height_above_ground3(height_above_ground3)float322.0 80.0 100.0
- units :
- m
- long_name :
- Specified height level above ground
- positive :
- up
- Grib_level_type :
- 103
- datum :
- ground
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
array([ 2., 80., 100.], dtype=float32)
- isobaric1(isobaric1)float325e+03 1e+04 ... 9.75e+04 1e+05
- units :
- Pa
- long_name :
- Isobaric surface
- positive :
- down
- Grib_level_type :
- 100
- _CoordinateAxisType :
- Pressure
- _CoordinateZisPositive :
- down
array([ 5000., 10000., 15000., 20000., 25000., 30000., 35000., 40000., 45000., 50000., 55000., 60000., 65000., 70000., 75000., 80000., 85000., 90000., 92500., 95000., 97500., 100000.], dtype=float32)
- height_above_ground4(height_above_ground4)float322.0
- units :
- m
- long_name :
- Specified height level above ground
- positive :
- up
- Grib_level_type :
- 103
- datum :
- ground
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
array([2.], dtype=float32)
- height_above_ground5(height_above_ground5)float322.0 80.0
- units :
- m
- long_name :
- Specified height level above ground
- positive :
- up
- Grib_level_type :
- 103
- datum :
- ground
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
array([ 2., 80.], dtype=float32)
- potential_vorticity_surface(potential_vorticity_surface)float32-2e-06 2e-06
- units :
- K m2 kg-1 s-1
- long_name :
- Potential vorticity surface
- positive :
- up
- Grib_level_type :
- 109
- _CoordinateAxisType :
- GeoZ
- _CoordinateZisPositive :
- up
array([-2.e-06, 2.e-06], dtype=float32)
- sigma(sigma)float320.995
- units :
- sigma
- long_name :
- Sigma level
- positive :
- down
- Grib_level_type :
- 104
- _CoordinateAxisType :
- GeoZ
- _CoordinateZisPositive :
- down
array([0.995], dtype=float32)
- hybrid(hybrid)float321.0
- units :
- sigma
- long_name :
- Hybrid level
- positive :
- down
- Grib_level_type :
- 105
- _CoordinateAxisType :
- GeoZ
- _CoordinateZisPositive :
- down
array([1.], dtype=float32)
- hybrid1(hybrid1)float321.0 2.0
- units :
- sigma
- long_name :
- Hybrid level
- positive :
- down
- Grib_level_type :
- 105
- _CoordinateAxisType :
- GeoZ
- _CoordinateZisPositive :
- down
array([1., 2.], dtype=float32)
- LatLon_Projection()int32...
- grid_mapping_name :
- latitude_longitude
- earth_radius :
- 6371229.0
- _CoordinateTransformType :
- Projection
- _CoordinateAxisTypes :
- Lat Lon
[1 values with dtype=int32]
- time_bounds(time, time_bounds_1)datetime64[ns]...
- long_name :
- bounds for time
[508 values with dtype=datetime64[ns]]
- time2_bounds(time2, time2_bounds_1)datetime64[ns]...
- long_name :
- bounds for time2
[256 values with dtype=datetime64[ns]]
- pressure_difference_layer_bounds(pressure_difference_layer, pressure_difference_layer_bounds_1)float32...
- units :
- Pa
- long_name :
- bounds for pressure_difference_layer
[2 values with dtype=float32]
- height_above_ground_layer_bounds(height_above_ground_layer, height_above_ground_layer_bounds_1)float32...
- units :
- m
- long_name :
- bounds for height_above_ground_layer
[2 values with dtype=float32]
- height_above_ground_layer1_bounds(height_above_ground_layer1, height_above_ground_layer1_bounds_1)float32...
- units :
- m
- long_name :
- bounds for height_above_ground_layer1
[2 values with dtype=float32]
- pressure_difference_layer1_bounds(pressure_difference_layer1, pressure_difference_layer1_bounds_1)float32...
- units :
- Pa
- long_name :
- bounds for pressure_difference_layer1
[6 values with dtype=float32]
- pressure_difference_layer2_bounds(pressure_difference_layer2, pressure_difference_layer2_bounds_1)float32...
- units :
- Pa
- long_name :
- bounds for pressure_difference_layer2
[2 values with dtype=float32]
- sigma_layer_bounds(sigma_layer, sigma_layer_bounds_1)float32...
- units :
- sigma
- long_name :
- bounds for sigma_layer
[8 values with dtype=float32]
- depth_below_surface_layer_bounds(depth_below_surface_layer, depth_below_surface_layer_bounds_1)float32...
- units :
- m
- long_name :
- bounds for depth_below_surface_layer
[8 values with dtype=float32]
- Absolute_vorticity_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- Absolute vorticity @ Isobaric surface
- units :
- 1/s
- abbreviation :
- ABSV
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-10_L100
- Grib2_Parameter :
- [ 0 2 10]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Absolute vorticity
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- Albedo_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Albedo (Mixed_intervals Average) @ Ground or water surface
- units :
- %
- abbreviation :
- ALBDO
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-19-1_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 19 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Physical atmospheric Properties
- Grib2_Parameter_Name :
- Albedo
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Apparent_temperature_height_above_ground(time1, height_above_ground4, lat, lon)float32...
- long_name :
- Apparent temperature @ Specified height level above ground
- units :
- K
- abbreviation :
- APTMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-21_L103
- Grib2_Parameter :
- [ 0 0 21]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Apparent temperature
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Cloud_mixing_ratio_isobaric(time1, isobaric1, lat, lon)float32...
- long_name :
- Cloud mixing ratio @ Isobaric surface
- units :
- kg/kg
- abbreviation :
- CLWMR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-22_L100
- Grib2_Parameter :
- [ 0 1 22]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Cloud mixing ratio
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[2946525120 values with dtype=float32]
- Cloud_mixing_ratio_hybrid(time1, hybrid, lat, lon)float32...
- long_name :
- Cloud mixing ratio @ Hybrid level
- units :
- kg/kg
- abbreviation :
- CLWMR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-22_L105
- Grib2_Parameter :
- [ 0 1 22]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Cloud mixing ratio
- Grib2_Level_Type :
- 105
- Grib2_Level_Desc :
- Hybrid level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Cloud_water_entire_atmosphere_single_layer(time1, lat, lon)float32...
- long_name :
- Cloud water @ Entire atmosphere layer
- units :
- kg.m-2
- abbreviation :
- CWAT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-6-6_L200
- Grib2_Parameter :
- [0 6 6]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Cloud water
- Grib2_Level_Type :
- 200
- Grib2_Level_Desc :
- Entire atmosphere layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Convective_available_potential_energy_pressure_difference_layer(time1, pressure_difference_layer1, lat, lon)float32...
- long_name :
- Convective available potential energy @ Level at specified pressure difference from ground to level layer
- units :
- J/kg
- abbreviation :
- CAPE
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-7-6_L108_layer
- Grib2_Parameter :
- [0 7 6]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Thermodynamic stability indices
- Grib2_Parameter_Name :
- Convective available potential energy
- Grib2_Level_Type :
- 108
- Grib2_Level_Desc :
- Level at specified pressure difference from ground to level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[401798880 values with dtype=float32]
- Convective_available_potential_energy_surface(time1, lat, lon)float32...
- long_name :
- Convective available potential energy @ Ground or water surface
- units :
- J/kg
- abbreviation :
- CAPE
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-7-6_L1
- Grib2_Parameter :
- [0 7 6]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Thermodynamic stability indices
- Grib2_Parameter_Name :
- Convective available potential energy
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Convective_inhibition_pressure_difference_layer(time1, pressure_difference_layer1, lat, lon)float32...
- long_name :
- Convective inhibition @ Level at specified pressure difference from ground to level layer
- units :
- J/kg
- abbreviation :
- CIN
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-7-7_L108_layer
- Grib2_Parameter :
- [0 7 7]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Thermodynamic stability indices
- Grib2_Parameter_Name :
- Convective inhibition
- Grib2_Level_Type :
- 108
- Grib2_Level_Desc :
- Level at specified pressure difference from ground to level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[401798880 values with dtype=float32]
- Convective_inhibition_surface(time1, lat, lon)float32...
- long_name :
- Convective inhibition @ Ground or water surface
- units :
- J/kg
- abbreviation :
- CIN
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-7-7_L1
- Grib2_Parameter :
- [0 7 7]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Thermodynamic stability indices
- Grib2_Parameter_Name :
- Convective inhibition
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Convective_precipitation_surface_Mixed_intervals_Accumulation(time, lat, lon)float32...
- long_name :
- Convective precipitation (Mixed_intervals Accumulation) @ Ground or water surface
- units :
- kg.m-2
- abbreviation :
- ACPCP
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Accumulation
- Grib_Variable_Id :
- VAR_0-1-10_L1_Imixed_S1
- Grib2_Parameter :
- [ 0 1 10]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Convective precipitation
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Accumulation
[263712960 values with dtype=float32]
- Convective_precipitation_rate_surface(time3, lat, lon)float32...
- long_name :
- Convective precipitation rate @ Ground or water surface
- units :
- kg.m-2.s-1
- abbreviation :
- CPRAT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-37_L1
- Grib2_Parameter :
- [ 0 1 37]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Convective precipitation rate
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[132894720 values with dtype=float32]
- Dewpoint_temperature_height_above_ground(time1, height_above_ground4, lat, lon)float32...
- long_name :
- Dewpoint temperature @ Specified height level above ground
- units :
- K
- abbreviation :
- DPT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-6_L103
- Grib2_Parameter :
- [0 0 6]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Dewpoint temperature
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Geopotential_height_potential_vorticity_surface(time1, potential_vorticity_surface, lat, lon)float32...
- long_name :
- Geopotential height @ Potential vorticity surface
- units :
- gpm
- abbreviation :
- HGT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-5_L109
- Grib2_Parameter :
- [0 3 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Geopotential height
- Grib2_Level_Type :
- 109
- Grib2_Level_Desc :
- Potential vorticity surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[267865920 values with dtype=float32]
- Geopotential_height_surface(time1, lat, lon)float32...
- long_name :
- Geopotential height @ Ground or water surface
- units :
- gpm
- abbreviation :
- HGT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-5_L1
- Grib2_Parameter :
- [0 3 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Geopotential height
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Geopotential_height_highest_tropospheric_freezing(time1, lat, lon)float32...
- long_name :
- Geopotential height @ Highest tropospheric freezing level
- units :
- gpm
- abbreviation :
- HGT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-5_L204
- Grib2_Parameter :
- [0 3 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Geopotential height
- Grib2_Level_Type :
- 204
- Grib2_Level_Desc :
- Highest tropospheric freezing level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Geopotential_height_cloud_ceiling(time1, lat, lon)float32...
- long_name :
- Geopotential height @ Cloud ceiling
- units :
- gpm
- abbreviation :
- HGT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-5_L215
- Grib2_Parameter :
- [0 3 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Geopotential height
- Grib2_Level_Type :
- 215
- Grib2_Level_Desc :
- Cloud ceiling
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Geopotential_height_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- Geopotential height @ Isobaric surface
- units :
- gpm
- abbreviation :
- HGT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-5_L100
- Grib2_Parameter :
- [0 3 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Geopotential height
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- Geopotential_height_zeroDegC_isotherm(time1, lat, lon)float32...
- long_name :
- Geopotential height @ Level of 0 °C isotherm
- units :
- gpm
- abbreviation :
- HGT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-5_L4
- Grib2_Parameter :
- [0 3 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Geopotential height
- Grib2_Level_Type :
- 4
- Grib2_Level_Desc :
- Level of 0 °C isotherm
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Geopotential_height_maximum_wind(time1, lat, lon)float32...
- long_name :
- Geopotential height @ Maximum wind level
- units :
- gpm
- abbreviation :
- HGT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-5_L6
- Grib2_Parameter :
- [0 3 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Geopotential height
- Grib2_Level_Type :
- 6
- Grib2_Level_Desc :
- Maximum wind level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Geopotential_height_tropopause(time1, lat, lon)float32...
- long_name :
- Geopotential height @ Tropopause
- units :
- gpm
- abbreviation :
- HGT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-5_L7
- Grib2_Parameter :
- [0 3 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Geopotential height
- Grib2_Level_Type :
- 7
- Grib2_Level_Desc :
- Tropopause
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Graupel_snow_pellets_isobaric(time1, isobaric1, lat, lon)float32...
- long_name :
- Graupel (snow pellets) @ Isobaric surface
- units :
- kg/kg
- abbreviation :
- GRLE
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-32_L100
- Grib2_Parameter :
- [ 0 1 32]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Graupel (snow pellets)
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[2946525120 values with dtype=float32]
- Graupel_snow_pellets_hybrid(time1, hybrid, lat, lon)float32...
- long_name :
- Graupel (snow pellets) @ Hybrid level
- units :
- kg/kg
- abbreviation :
- GRLE
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-32_L105
- Grib2_Parameter :
- [ 0 1 32]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Graupel (snow pellets)
- Grib2_Level_Type :
- 105
- Grib2_Level_Desc :
- Hybrid level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Haines_index_surface(time1, lat, lon)float32...
- long_name :
- Haines index @ Ground or water surface
- units :
- abbreviation :
- HINDEX
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-4-2_L1
- Grib2_Parameter :
- [2 4 2]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Fire Weather Products
- Grib2_Parameter_Name :
- Haines index
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- High_cloud_cover_high_cloud(time1, lat, lon)float32...
- long_name :
- High cloud cover @ High cloud layer
- units :
- %
- abbreviation :
- HCDC
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-6-5_L234
- Grib2_Parameter :
- [0 6 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- High cloud cover
- Grib2_Level_Type :
- 234
- Grib2_Level_Desc :
- High cloud layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- High_cloud_cover_high_cloud_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- High cloud cover (Mixed_intervals Average) @ High cloud layer
- units :
- %
- abbreviation :
- HCDC
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-6-5_L234_Imixed_S0
- Grib2_Parameter :
- [0 6 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- High cloud cover
- Grib2_Level_Type :
- 234
- Grib2_Level_Desc :
- High cloud layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- ICAO_Standard_Atmosphere_Reference_Height_maximum_wind(time1, lat, lon)float32...
- long_name :
- ICAO Standard Atmosphere Reference Height @ Maximum wind level
- units :
- m
- abbreviation :
- ICAHT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-3_L6
- Grib2_Parameter :
- [0 3 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- ICAO Standard Atmosphere Reference Height
- Grib2_Level_Type :
- 6
- Grib2_Level_Desc :
- Maximum wind level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- ICAO_Standard_Atmosphere_Reference_Height_tropopause(time1, lat, lon)float32...
- long_name :
- ICAO Standard Atmosphere Reference Height @ Tropopause
- units :
- m
- abbreviation :
- ICAHT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-3_L7
- Grib2_Parameter :
- [0 3 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- ICAO Standard Atmosphere Reference Height
- Grib2_Level_Type :
- 7
- Grib2_Level_Desc :
- Tropopause
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Ice_cover_surface(time1, lat, lon)float32...
- long_name :
- Ice cover @ Ground or water surface
- units :
- abbreviation :
- ICEC
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_10-2-0_L1
- Grib2_Parameter :
- [10 2 0]
- Grib2_Parameter_Discipline :
- Oceanographic products
- Grib2_Parameter_Category :
- Ice
- Grib2_Parameter_Name :
- Ice cover
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Ice_growth_rate_altitude_above_msl(time1, altitude_above_msl1, lat, lon)float32...
- long_name :
- Ice growth rate @ Specific altitude above mean sea level
- units :
- m/s
- abbreviation :
- ICEG
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_10-2-6_L102
- Grib2_Parameter :
- [10 2 6]
- Grib2_Parameter_Discipline :
- Oceanographic products
- Grib2_Parameter_Category :
- Ice
- Grib2_Parameter_Name :
- Ice growth rate
- Grib2_Level_Type :
- 102
- Grib2_Level_Desc :
- Specific altitude above mean sea level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Ice_temperature_surface(time1, lat, lon)float32...
- long_name :
- Ice temperature @ Ground or water surface
- units :
- K
- abbreviation :
- ICETMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_10-2-8_L1
- Grib2_Parameter :
- [10 2 8]
- Grib2_Parameter_Discipline :
- Oceanographic products
- Grib2_Parameter_Category :
- Ice
- Grib2_Parameter_Name :
- Ice temperature
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Ice_thickness_surface(time1, lat, lon)float32...
- long_name :
- Ice thickness @ Ground or water surface
- units :
- m
- abbreviation :
- ICETK
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_10-2-1_L1
- Grib2_Parameter :
- [10 2 1]
- Grib2_Parameter_Discipline :
- Oceanographic products
- Grib2_Parameter_Category :
- Ice
- Grib2_Parameter_Name :
- Ice thickness
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Ice_water_mixing_ratio_isobaric(time1, isobaric1, lat, lon)float32...
- long_name :
- Ice water mixing ratio @ Isobaric surface
- units :
- kg/kg
- abbreviation :
- ICMR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-23_L100
- Grib2_Parameter :
- [ 0 1 23]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Ice water mixing ratio
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[2946525120 values with dtype=float32]
- Ice_water_mixing_ratio_hybrid(time1, hybrid, lat, lon)float32...
- long_name :
- Ice water mixing ratio @ Hybrid level
- units :
- kg/kg
- abbreviation :
- ICMR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-23_L105
- Grib2_Parameter :
- [ 0 1 23]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Ice water mixing ratio
- Grib2_Level_Type :
- 105
- Grib2_Level_Desc :
- Hybrid level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Land_cover_0__sea_1__land_surface(time1, lat, lon)float32...
- long_name :
- Land cover (0 = sea, 1 = land) @ Ground or water surface
- units :
- abbreviation :
- LAND
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-0-0_L1
- Grib2_Parameter :
- [2 0 0]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Vegetation/Biomass
- Grib2_Parameter_Name :
- Land cover (0 = sea, 1 = land)
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Latent_heat_net_flux_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Latent heat net flux (Mixed_intervals Average) @ Ground or water surface
- units :
- W.m-2
- abbreviation :
- LHTFL
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-0-10_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 0 10]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Latent heat net flux
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Low_cloud_cover_low_cloud_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Low cloud cover (Mixed_intervals Average) @ Low cloud layer
- units :
- %
- abbreviation :
- LCDC
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-6-3_L214_Imixed_S0
- Grib2_Parameter :
- [0 6 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Low cloud cover
- Grib2_Level_Type :
- 214
- Grib2_Level_Desc :
- Low cloud layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Low_cloud_cover_low_cloud(time1, lat, lon)float32...
- long_name :
- Low cloud cover @ Low cloud layer
- units :
- %
- abbreviation :
- LCDC
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-6-3_L214
- Grib2_Parameter :
- [0 6 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Low cloud cover
- Grib2_Level_Type :
- 214
- Grib2_Level_Desc :
- Low cloud layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Maximum_temperature_height_above_ground_Mixed_intervals_Maximum(time2, height_above_ground4, lat, lon)float32...
- long_name :
- Maximum temperature (Mixed_intervals Maximum) @ Specified height level above ground
- units :
- K
- abbreviation :
- TMAX
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Maximum
- Grib_Variable_Id :
- VAR_0-0-4_L103_Imixed_S2
- Grib2_Parameter :
- [0 0 4]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Maximum temperature
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Maximum
[132894720 values with dtype=float32]
- Medium_cloud_cover_middle_cloud(time1, lat, lon)float32...
- long_name :
- Medium cloud cover @ Middle cloud layer
- units :
- %
- abbreviation :
- MCDC
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-6-4_L224
- Grib2_Parameter :
- [0 6 4]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Medium cloud cover
- Grib2_Level_Type :
- 224
- Grib2_Level_Desc :
- Middle cloud layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Medium_cloud_cover_middle_cloud_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Medium cloud cover (Mixed_intervals Average) @ Middle cloud layer
- units :
- %
- abbreviation :
- MCDC
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-6-4_L224_Imixed_S0
- Grib2_Parameter :
- [0 6 4]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Medium cloud cover
- Grib2_Level_Type :
- 224
- Grib2_Level_Desc :
- Middle cloud layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Minimum_temperature_height_above_ground_Mixed_intervals_Minimum(time2, height_above_ground4, lat, lon)float32...
- long_name :
- Minimum temperature (Mixed_intervals Minimum) @ Specified height level above ground
- units :
- K
- abbreviation :
- TMIN
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Minimum
- Grib_Variable_Id :
- VAR_0-0-5_L103_Imixed_S3
- Grib2_Parameter :
- [0 0 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Minimum temperature
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Minimum
[132894720 values with dtype=float32]
- Momentum_flux_u-component_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Momentum flux, u-component (Mixed_intervals Average) @ Ground or water surface
- units :
- N.m-2
- abbreviation :
- UFLX
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-2-17_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 2 17]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Momentum flux, u-component
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Momentum_flux_v-component_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Momentum flux, v-component (Mixed_intervals Average) @ Ground or water surface
- units :
- N.m-2
- abbreviation :
- VFLX
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-2-18_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 2 18]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Momentum flux, v-component
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Per_cent_frozen_precipitation_surface(time1, lat, lon)float32...
- long_name :
- Per cent frozen precipitation @ Ground or water surface
- units :
- %
- abbreviation :
- CPOFP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-39_L1
- Grib2_Parameter :
- [ 0 1 39]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Per cent frozen precipitation
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Potential_temperature_sigma(time1, sigma, lat, lon)float32...
- long_name :
- Potential temperature @ Sigma level
- units :
- K
- abbreviation :
- POT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-2_L104
- Grib2_Parameter :
- [0 0 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Potential temperature
- Grib2_Level_Type :
- 104
- Grib2_Level_Desc :
- Sigma level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Precipitable_water_entire_atmosphere_single_layer(time1, lat, lon)float32...
- long_name :
- Precipitable water @ Entire atmosphere layer
- units :
- kg.m-2
- abbreviation :
- PWAT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-3_L200
- Grib2_Parameter :
- [0 1 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Precipitable water
- Grib2_Level_Type :
- 200
- Grib2_Level_Desc :
- Entire atmosphere layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Precipitation_rate_surface(time1, lat, lon)float32...
- long_name :
- Precipitation rate @ Ground or water surface
- units :
- kg.m-2.s-1
- abbreviation :
- PRATE
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-7_L1
- Grib2_Parameter :
- [0 1 7]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Precipitation rate
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Precipitation_rate_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Precipitation rate (Mixed_intervals Average) @ Ground or water surface
- units :
- kg.m-2.s-1
- abbreviation :
- PRATE
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-1-7_L1_Imixed_S0
- Grib2_Parameter :
- [0 1 7]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Precipitation rate
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Pressure_high_cloud_bottom_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Pressure (Mixed_intervals Average) @ High cloud bottom level
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-3-0_L232_Imixed_S0
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 232
- Grib2_Level_Desc :
- High cloud bottom level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Pressure_low_cloud_bottom_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Pressure (Mixed_intervals Average) @ Low cloud bottom level
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-3-0_L212_Imixed_S0
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 212
- Grib2_Level_Desc :
- Low cloud bottom level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Pressure_middle_cloud_bottom_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Pressure (Mixed_intervals Average) @ Middle cloud bottom level
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-3-0_L222_Imixed_S0
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 222
- Grib2_Level_Desc :
- Middle cloud bottom level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Pressure_low_cloud_top_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Pressure (Mixed_intervals Average) @ Low cloud top level
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-3-0_L213_Imixed_S0
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 213
- Grib2_Level_Desc :
- Low cloud top level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Pressure_high_cloud_top_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Pressure (Mixed_intervals Average) @ High cloud top level
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-3-0_L233_Imixed_S0
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 233
- Grib2_Level_Desc :
- High cloud top level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Pressure_middle_cloud_top_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Pressure (Mixed_intervals Average) @ Middle cloud top level
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-3-0_L223_Imixed_S0
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 223
- Grib2_Level_Desc :
- Middle cloud top level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Pressure_potential_vorticity_surface(time1, potential_vorticity_surface, lat, lon)float32...
- long_name :
- Pressure @ Potential vorticity surface
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-0_L109
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 109
- Grib2_Level_Desc :
- Potential vorticity surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[267865920 values with dtype=float32]
- Pressure_surface(time1, lat, lon)float32...
- long_name :
- Pressure @ Ground or water surface
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-0_L1
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Pressure_maximum_wind(time1, lat, lon)float32...
- long_name :
- Pressure @ Maximum wind level
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-0_L6
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 6
- Grib2_Level_Desc :
- Maximum wind level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Pressure_tropopause(time1, lat, lon)float32...
- long_name :
- Pressure @ Tropopause
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-0_L7
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 7
- Grib2_Level_Desc :
- Tropopause
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Pressure_height_above_ground(time1, height_above_ground, lat, lon)float32...
- long_name :
- Pressure @ Specified height level above ground
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-0_L103
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Pressure_convective_cloud_top(time3, lat, lon)float32...
- long_name :
- Pressure @ Convective cloud top level
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-0_L243
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 243
- Grib2_Level_Desc :
- Convective cloud top level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[132894720 values with dtype=float32]
- Pressure_convective_cloud_bottom(time3, lat, lon)float32...
- long_name :
- Pressure @ Convective cloud bottom level
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-0_L242
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 242
- Grib2_Level_Desc :
- Convective cloud bottom level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[132894720 values with dtype=float32]
- Pressure_reduced_to_MSL_msl(time1, lat, lon)float32...
- long_name :
- Pressure reduced to MSL @ Mean sea level
- units :
- Pa
- abbreviation :
- PRMSL
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-1_L101
- Grib2_Parameter :
- [0 3 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure reduced to MSL
- Grib2_Level_Type :
- 101
- Grib2_Level_Desc :
- Mean sea level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Rain_mixing_ratio_isobaric(time1, isobaric1, lat, lon)float32...
- long_name :
- Rain mixing ratio @ Isobaric surface
- units :
- kg/kg
- abbreviation :
- RWMR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-24_L100
- Grib2_Parameter :
- [ 0 1 24]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Rain mixing ratio
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[2946525120 values with dtype=float32]
- Rain_mixing_ratio_hybrid(time1, hybrid, lat, lon)float32...
- long_name :
- Rain mixing ratio @ Hybrid level
- units :
- kg/kg
- abbreviation :
- RWMR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-24_L105
- Grib2_Parameter :
- [ 0 1 24]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Rain mixing ratio
- Grib2_Level_Type :
- 105
- Grib2_Level_Desc :
- Hybrid level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Relative_humidity_sigma_layer(time1, sigma_layer, lat, lon)float32...
- long_name :
- Relative humidity @ Sigma level layer
- units :
- %
- abbreviation :
- RH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-1_L104_layer
- Grib2_Parameter :
- [0 1 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Relative humidity
- Grib2_Level_Type :
- 104
- Grib2_Level_Desc :
- Sigma level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[535731840 values with dtype=float32]
- Relative_humidity_pressure_difference_layer(time1, pressure_difference_layer2, lat, lon)float32...
- long_name :
- Relative humidity @ Level at specified pressure difference from ground to level layer
- units :
- %
- abbreviation :
- RH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-1_L108_layer
- Grib2_Parameter :
- [0 1 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Relative humidity
- Grib2_Level_Type :
- 108
- Grib2_Level_Desc :
- Level at specified pressure difference from ground to level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Relative_humidity_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- Relative humidity @ Isobaric surface
- units :
- %
- abbreviation :
- RH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-1_L100
- Grib2_Parameter :
- [0 1 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Relative humidity
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- Relative_humidity_zeroDegC_isotherm(time1, lat, lon)float32...
- long_name :
- Relative humidity @ Level of 0 °C isotherm
- units :
- %
- abbreviation :
- RH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-1_L4
- Grib2_Parameter :
- [0 1 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Relative humidity
- Grib2_Level_Type :
- 4
- Grib2_Level_Desc :
- Level of 0 °C isotherm
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Relative_humidity_height_above_ground(time1, height_above_ground4, lat, lon)float32...
- long_name :
- Relative humidity @ Specified height level above ground
- units :
- %
- abbreviation :
- RH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-1_L103
- Grib2_Parameter :
- [0 1 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Relative humidity
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Relative_humidity_sigma(time1, sigma, lat, lon)float32...
- long_name :
- Relative humidity @ Sigma level
- units :
- %
- abbreviation :
- RH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-1_L104
- Grib2_Parameter :
- [0 1 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Relative humidity
- Grib2_Level_Type :
- 104
- Grib2_Level_Desc :
- Sigma level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Relative_humidity_highest_tropospheric_freezing(time1, lat, lon)float32...
- long_name :
- Relative humidity @ Highest tropospheric freezing level
- units :
- %
- abbreviation :
- RH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-1_L204
- Grib2_Parameter :
- [0 1 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Relative humidity
- Grib2_Level_Type :
- 204
- Grib2_Level_Desc :
- Highest tropospheric freezing level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Relative_humidity_entire_atmosphere_single_layer(time1, lat, lon)float32...
- long_name :
- Relative humidity @ Entire atmosphere layer
- units :
- %
- abbreviation :
- RH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-1_L200
- Grib2_Parameter :
- [0 1 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Relative humidity
- Grib2_Level_Type :
- 200
- Grib2_Level_Desc :
- Entire atmosphere layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Sensible_heat_net_flux_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Sensible heat net flux (Mixed_intervals Average) @ Ground or water surface
- units :
- W.m-2
- abbreviation :
- SHTFL
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-0-11_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 0 11]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Sensible heat net flux
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Snow_depth_surface(time1, lat, lon)float32...
- long_name :
- Snow depth @ Ground or water surface
- units :
- m
- abbreviation :
- SNOD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-11_L1
- Grib2_Parameter :
- [ 0 1 11]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Snow depth
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Snow_mixing_ratio_isobaric(time1, isobaric1, lat, lon)float32...
- long_name :
- Snow mixing ratio @ Isobaric surface
- units :
- kg/kg
- abbreviation :
- SNMR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-25_L100
- Grib2_Parameter :
- [ 0 1 25]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Snow mixing ratio
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[2946525120 values with dtype=float32]
- Snow_mixing_ratio_hybrid(time1, hybrid, lat, lon)float32...
- long_name :
- Snow mixing ratio @ Hybrid level
- units :
- kg/kg
- abbreviation :
- SNMR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-25_L105
- Grib2_Parameter :
- [ 0 1 25]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Snow mixing ratio
- Grib2_Level_Type :
- 105
- Grib2_Level_Desc :
- Hybrid level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Soil_temperature_depth_below_surface_layer(time1, depth_below_surface_layer, lat, lon)float32...
- long_name :
- Soil temperature @ Depth below land surface layer
- units :
- K
- abbreviation :
- TSOIL
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-0-2_L106_layer
- Grib2_Parameter :
- [2 0 2]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Vegetation/Biomass
- Grib2_Parameter_Name :
- Soil temperature
- Grib2_Level_Type :
- 106
- Grib2_Level_Desc :
- Depth below land surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[535731840 values with dtype=float32]
- Soil_type_surface(time1, lat, lon)float32...
- long_name :
- Soil type @ Ground or water surface
- units :
- (Code table 4.213)
- abbreviation :
- SOTYP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-3-0_L1
- Grib2_Parameter :
- [2 3 0]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Soil Products
- Grib2_Parameter_Name :
- Soil type
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Specific_humidity_pressure_difference_layer(time1, pressure_difference_layer2, lat, lon)float32...
- long_name :
- Specific humidity @ Level at specified pressure difference from ground to level layer
- units :
- kg/kg
- abbreviation :
- SPFH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-0_L108_layer
- Grib2_Parameter :
- [0 1 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Specific humidity
- Grib2_Level_Type :
- 108
- Grib2_Level_Desc :
- Level at specified pressure difference from ground to level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Specific_humidity_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- Specific humidity @ Isobaric surface
- units :
- kg/kg
- abbreviation :
- SPFH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-0_L100
- Grib2_Parameter :
- [0 1 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Specific humidity
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- Specific_humidity_height_above_ground(time1, height_above_ground5, lat, lon)float32...
- long_name :
- Specific humidity @ Specified height level above ground
- units :
- kg/kg
- abbreviation :
- SPFH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-0_L103
- Grib2_Parameter :
- [0 1 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Specific humidity
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[267865920 values with dtype=float32]
- Storm_relative_helicity_height_above_ground_layer(time1, height_above_ground_layer, lat, lon)float32...
- long_name :
- Storm relative helicity @ Specified height level above ground layer
- units :
- J/kg
- abbreviation :
- HLCY
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-7-8_L103_layer
- Grib2_Parameter :
- [0 7 8]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Thermodynamic stability indices
- Grib2_Parameter_Name :
- Storm relative helicity
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Surface_roughness_surface(time1, lat, lon)float32...
- long_name :
- Surface roughness @ Ground or water surface
- units :
- m
- abbreviation :
- SFCR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-0-1_L1
- Grib2_Parameter :
- [2 0 1]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Vegetation/Biomass
- Grib2_Parameter_Name :
- Surface roughness
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Temperature_low_cloud_top_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Temperature (Mixed_intervals Average) @ Low cloud top level
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-0-0_L213_Imixed_S0
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 213
- Grib2_Level_Desc :
- Low cloud top level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Temperature_high_cloud_top_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Temperature (Mixed_intervals Average) @ High cloud top level
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-0-0_L233_Imixed_S0
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 233
- Grib2_Level_Desc :
- High cloud top level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Temperature_middle_cloud_top_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Temperature (Mixed_intervals Average) @ Middle cloud top level
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-0-0_L223_Imixed_S0
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 223
- Grib2_Level_Desc :
- Middle cloud top level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Temperature_potential_vorticity_surface(time1, potential_vorticity_surface, lat, lon)float32...
- long_name :
- Temperature @ Potential vorticity surface
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-0_L109
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 109
- Grib2_Level_Desc :
- Potential vorticity surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[267865920 values with dtype=float32]
- Temperature_surface(time1, lat, lon)float32...
- long_name :
- Temperature @ Ground or water surface
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-0_L1
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Temperature_pressure_difference_layer(time1, pressure_difference_layer2, lat, lon)float32...
- long_name :
- Temperature @ Level at specified pressure difference from ground to level layer
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-0_L108_layer
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 108
- Grib2_Level_Desc :
- Level at specified pressure difference from ground to level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Temperature_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- Temperature @ Isobaric surface
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-0_L100
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- Temperature_altitude_above_msl(time1, altitude_above_msl, lat, lon)float32...
- long_name :
- Temperature @ Specific altitude above mean sea level
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-0_L102
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 102
- Grib2_Level_Desc :
- Specific altitude above mean sea level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[401798880 values with dtype=float32]
- Temperature_maximum_wind(time1, lat, lon)float32...
- long_name :
- Temperature @ Maximum wind level
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-0_L6
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 6
- Grib2_Level_Desc :
- Maximum wind level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Temperature_height_above_ground(time1, height_above_ground3, lat, lon)float32...
- long_name :
- Temperature @ Specified height level above ground
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-0_L103
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[401798880 values with dtype=float32]
- Temperature_tropopause(time1, lat, lon)float32...
- long_name :
- Temperature @ Tropopause
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-0_L7
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 7
- Grib2_Level_Desc :
- Tropopause
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Temperature_sigma(time1, sigma, lat, lon)float32...
- long_name :
- Temperature @ Sigma level
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-0_L104
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 104
- Grib2_Level_Desc :
- Sigma level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Total_cloud_cover_entire_atmosphere(time1, lat, lon)float32...
- long_name :
- Total cloud cover @ Entire atmosphere
- units :
- %
- abbreviation :
- TCDC
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-6-1_L10
- Grib2_Parameter :
- [0 6 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Total cloud cover
- Grib2_Level_Type :
- 10
- Grib2_Level_Desc :
- Entire atmosphere
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Total_cloud_cover_boundary_layer_cloud_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Total cloud cover (Mixed_intervals Average) @ Boundary layer cloud layer
- units :
- %
- abbreviation :
- TCDC
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-6-1_L211_Imixed_S0
- Grib2_Parameter :
- [0 6 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Total cloud cover
- Grib2_Level_Type :
- 211
- Grib2_Level_Desc :
- Boundary layer cloud layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Total_cloud_cover_isobaric(time1, isobaric1, lat, lon)float32...
- long_name :
- Total cloud cover @ Isobaric surface
- units :
- %
- abbreviation :
- TCDC
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-6-1_L100
- Grib2_Parameter :
- [0 6 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Total cloud cover
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[2946525120 values with dtype=float32]
- Total_cloud_cover_entire_atmosphere_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Total cloud cover (Mixed_intervals Average) @ Entire atmosphere
- units :
- %
- abbreviation :
- TCDC
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-6-1_L10_Imixed_S0
- Grib2_Parameter :
- [0 6 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Total cloud cover
- Grib2_Level_Type :
- 10
- Grib2_Level_Desc :
- Entire atmosphere
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Total_cloud_cover_convective_cloud(time3, lat, lon)float32...
- long_name :
- Total cloud cover @ Convective cloud layer
- units :
- %
- abbreviation :
- TCDC
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-6-1_L244
- Grib2_Parameter :
- [0 6 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Total cloud cover
- Grib2_Level_Type :
- 244
- Grib2_Level_Desc :
- Convective cloud layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[132894720 values with dtype=float32]
- Total_ozone_entire_atmosphere_single_layer(time1, lat, lon)float32...
- long_name :
- Total ozone @ Entire atmosphere layer
- units :
- DU
- abbreviation :
- TOZNE
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-14-0_L200
- Grib2_Parameter :
- [ 0 14 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Trace gases
- Grib2_Parameter_Name :
- Total ozone
- Grib2_Level_Type :
- 200
- Grib2_Level_Desc :
- Entire atmosphere layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Total_precipitation_surface_Mixed_intervals_Accumulation(time, lat, lon)float32...
- long_name :
- Total precipitation (Mixed_intervals Accumulation) @ Ground or water surface
- units :
- kg.m-2
- abbreviation :
- APCP
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Accumulation
- Grib_Variable_Id :
- VAR_0-1-8_L1_Imixed_S1
- Grib2_Parameter :
- [0 1 8]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Total precipitation
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Accumulation
[263712960 values with dtype=float32]
- Categorical_Rain_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Categorical Rain (Mixed_intervals Average) @ Ground or water surface
- units :
- Code table 4.222
- abbreviation :
- CRAIN
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-1-192_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 1 192]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Categorical Rain
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Categorical_Rain_surface(time1, lat, lon)float32...
- long_name :
- Categorical Rain @ Ground or water surface
- units :
- Code table 4.222
- abbreviation :
- CRAIN
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-192_L1
- Grib2_Parameter :
- [ 0 1 192]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Categorical Rain
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Categorical_Freezing_Rain_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Categorical Freezing Rain (Mixed_intervals Average) @ Ground or water surface
- units :
- Code table 4.222
- abbreviation :
- CFRZR
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-1-193_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 1 193]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Categorical Freezing Rain
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Categorical_Freezing_Rain_surface(time1, lat, lon)float32...
- long_name :
- Categorical Freezing Rain @ Ground or water surface
- units :
- Code table 4.222
- abbreviation :
- CFRZR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-193_L1
- Grib2_Parameter :
- [ 0 1 193]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Categorical Freezing Rain
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Categorical_Ice_Pellets_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Categorical Ice Pellets (Mixed_intervals Average) @ Ground or water surface
- units :
- Code table 4.222
- abbreviation :
- CICEP
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-1-194_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 1 194]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Categorical Ice Pellets
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Categorical_Ice_Pellets_surface(time1, lat, lon)float32...
- long_name :
- Categorical Ice Pellets @ Ground or water surface
- units :
- Code table 4.222
- abbreviation :
- CICEP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-194_L1
- Grib2_Parameter :
- [ 0 1 194]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Categorical Ice Pellets
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Categorical_Snow_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Categorical Snow (Mixed_intervals Average) @ Ground or water surface
- units :
- Code table 4.222
- abbreviation :
- CSNOW
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-1-195_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 1 195]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Categorical Snow
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Categorical_Snow_surface(time1, lat, lon)float32...
- long_name :
- Categorical Snow @ Ground or water surface
- units :
- Code table 4.222
- abbreviation :
- CSNOW
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-195_L1
- Grib2_Parameter :
- [ 0 1 195]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Categorical Snow
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Convective_Precipitation_Rate_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Convective Precipitation Rate (Mixed_intervals Average) @ Ground or water surface
- units :
- kg.m-2.s-1
- abbreviation :
- CPRAT
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-1-196_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 1 196]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Convective Precipitation Rate
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Potential_Evaporation_Rate_surface(time3, lat, lon)float32...
- long_name :
- Potential Evaporation Rate @ Ground or water surface
- units :
- W.m-2
- abbreviation :
- PEVPR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-200_L1
- Grib2_Parameter :
- [ 0 1 200]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Potential Evaporation Rate
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[132894720 values with dtype=float32]
- Ozone_Mixing_Ratio_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- Ozone Mixing Ratio @ Isobaric surface
- units :
- kg.kg-1
- abbreviation :
- O3MR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-14-192_L100
- Grib2_Parameter :
- [ 0 14 192]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Trace gases
- Grib2_Parameter_Name :
- Ozone Mixing Ratio
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- Reflectivity_hybrid(time1, hybrid1, lat, lon)float32...
- long_name :
- Reflectivity @ Hybrid level
- units :
- dB
- abbreviation :
- REFD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-16-195_L105
- Grib2_Parameter :
- [ 0 16 195]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Forecast Radar Imagery
- Grib2_Parameter_Name :
- Reflectivity
- Grib2_Level_Type :
- 105
- Grib2_Level_Desc :
- Hybrid level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[267865920 values with dtype=float32]
- Reflectivity_height_above_ground(time1, height_above_ground1, lat, lon)float32...
- long_name :
- Reflectivity @ Specified height level above ground
- units :
- dB
- abbreviation :
- REFD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-16-195_L103
- Grib2_Parameter :
- [ 0 16 195]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Forecast Radar Imagery
- Grib2_Parameter_Name :
- Reflectivity
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[267865920 values with dtype=float32]
- Composite_reflectivity_entire_atmosphere(time1, lat, lon)float32...
- long_name :
- Composite reflectivity @ Entire atmosphere
- units :
- dB
- abbreviation :
- REFC
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-16-196_L10
- Grib2_Parameter :
- [ 0 16 196]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Forecast Radar Imagery
- Grib2_Parameter_Name :
- Composite reflectivity
- Grib2_Level_Type :
- 10
- Grib2_Level_Desc :
- Entire atmosphere
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Vertical_Speed_Shear_tropopause(time1, lat, lon)float32...
- long_name :
- Vertical Speed Shear @ Tropopause
- units :
- s-1
- abbreviation :
- VWSH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-192_L7
- Grib2_Parameter :
- [ 0 2 192]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Vertical Speed Shear
- Grib2_Level_Type :
- 7
- Grib2_Level_Desc :
- Tropopause
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Vertical_Speed_Shear_potential_vorticity_surface(time1, potential_vorticity_surface, lat, lon)float32...
- long_name :
- Vertical Speed Shear @ Potential vorticity surface
- units :
- s-1
- abbreviation :
- VWSH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-192_L109
- Grib2_Parameter :
- [ 0 2 192]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Vertical Speed Shear
- Grib2_Level_Type :
- 109
- Grib2_Level_Desc :
- Potential vorticity surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[267865920 values with dtype=float32]
- U-Component_Storm_Motion_height_above_ground_layer(time1, height_above_ground_layer1, lat, lon)float32...
- long_name :
- U-Component Storm Motion @ Specified height level above ground layer
- units :
- m.s-1
- abbreviation :
- USTM
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-194_L103_layer
- Grib2_Parameter :
- [ 0 2 194]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- U-Component Storm Motion
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- V-Component_Storm_Motion_height_above_ground_layer(time1, height_above_ground_layer1, lat, lon)float32...
- long_name :
- V-Component Storm Motion @ Specified height level above ground layer
- units :
- m.s-1
- abbreviation :
- VSTM
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-195_L103_layer
- Grib2_Parameter :
- [ 0 2 195]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- V-Component Storm Motion
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Frictional_Velocity_surface(time1, lat, lon)float32...
- long_name :
- Frictional Velocity @ Ground or water surface
- units :
- m.s-1
- abbreviation :
- FRICV
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-197_L1
- Grib2_Parameter :
- [ 0 2 197]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Frictional Velocity
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Ventilation_Rate_planetary_boundary(time1, lat, lon)float32...
- long_name :
- Ventilation Rate @ Planetary Boundary Layer
- units :
- m2.s-1
- abbreviation :
- VRATE
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-224_L220
- Grib2_Parameter :
- [ 0 2 224]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Ventilation Rate
- Grib2_Level_Type :
- 220
- Grib2_Level_Desc :
- Planetary Boundary Layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- MSLP_Eta_model_reduction_msl(time1, lat, lon)float32...
- long_name :
- MSLP (Eta model reduction) @ Mean sea level
- units :
- Pa
- abbreviation :
- MSLET
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-192_L101
- Grib2_Parameter :
- [ 0 3 192]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- MSLP (Eta model reduction)
- Grib2_Level_Type :
- 101
- Grib2_Level_Desc :
- Mean sea level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Zonal_Flux_of_Gravity_Wave_Stress_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Zonal Flux of Gravity Wave Stress (Mixed_intervals Average) @ Ground or water surface
- units :
- N.m-2
- abbreviation :
- U-GWD
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-3-194_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 3 194]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Zonal Flux of Gravity Wave Stress
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Meridional_Flux_of_Gravity_Wave_Stress_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Meridional Flux of Gravity Wave Stress (Mixed_intervals Average) @ Ground or water surface
- units :
- N.m-2
- abbreviation :
- V-GWD
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-3-195_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 3 195]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Meridional Flux of Gravity Wave Stress
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Planetary_Boundary_Layer_Height_surface(time1, lat, lon)float32...
- long_name :
- Planetary Boundary Layer Height @ Ground or water surface
- units :
- m
- abbreviation :
- HPBL
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-196_L1
- Grib2_Parameter :
- [ 0 3 196]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Planetary Boundary Layer Height
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Pressure_of_level_from_which_parcel_was_lifted_pressure_difference_layer(time1, pressure_difference_layer, lat, lon)float32...
- long_name :
- Pressure of level from which parcel was lifted @ Level at specified pressure difference from ground to level layer
- units :
- Pa
- abbreviation :
- PLPL
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-200_L108_layer
- Grib2_Parameter :
- [ 0 3 200]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure of level from which parcel was lifted
- Grib2_Level_Type :
- 108
- Grib2_Level_Desc :
- Level at specified pressure difference from ground to level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Downward_Short-Wave_Radiation_Flux_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Downward Short-Wave Radiation Flux (Mixed_intervals Average) @ Ground or water surface
- units :
- W.m-2
- abbreviation :
- DSWRF
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-4-192_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 4 192]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Short wave radiation
- Grib2_Parameter_Name :
- Downward Short-Wave Radiation Flux
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Upward_Short-Wave_Radiation_Flux_atmosphere_top_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Upward Short-Wave Radiation Flux (Mixed_intervals Average) @ Nominal top of the atmosphere
- units :
- W.m-2
- abbreviation :
- USWRF
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-4-193_L8_Imixed_S0
- Grib2_Parameter :
- [ 0 4 193]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Short wave radiation
- Grib2_Parameter_Name :
- Upward Short-Wave Radiation Flux
- Grib2_Level_Type :
- 8
- Grib2_Level_Desc :
- Nominal top of the atmosphere
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Upward_Short-Wave_Radiation_Flux_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Upward Short-Wave Radiation Flux (Mixed_intervals Average) @ Ground or water surface
- units :
- W.m-2
- abbreviation :
- USWRF
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-4-193_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 4 193]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Short wave radiation
- Grib2_Parameter_Name :
- Upward Short-Wave Radiation Flux
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Downward_Long-Wave_Radp_Flux_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Downward Long-Wave Rad. Flux (Mixed_intervals Average) @ Ground or water surface
- units :
- W.m-2
- abbreviation :
- DLWRF
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-5-192_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 5 192]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Long wave radiation
- Grib2_Parameter_Name :
- Downward Long-Wave Rad. Flux
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Upward_Long-Wave_Radp_Flux_atmosphere_top_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Upward Long-Wave Rad. Flux (Mixed_intervals Average) @ Nominal top of the atmosphere
- units :
- W.m-2
- abbreviation :
- ULWRF
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-5-193_L8_Imixed_S0
- Grib2_Parameter :
- [ 0 5 193]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Long wave radiation
- Grib2_Parameter_Name :
- Upward Long-Wave Rad. Flux
- Grib2_Level_Type :
- 8
- Grib2_Level_Desc :
- Nominal top of the atmosphere
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Upward_Long-Wave_Radp_Flux_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Upward Long-Wave Rad. Flux (Mixed_intervals Average) @ Ground or water surface
- units :
- W.m-2
- abbreviation :
- ULWRF
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-5-193_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 5 193]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Long wave radiation
- Grib2_Parameter_Name :
- Upward Long-Wave Rad. Flux
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Cloud_Work_Function_entire_atmosphere_single_layer_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Cloud Work Function (Mixed_intervals Average) @ Entire atmosphere layer
- units :
- J.kg-1
- abbreviation :
- CWORK
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-6-193_L200_Imixed_S0
- Grib2_Parameter :
- [ 0 6 193]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Cloud Work Function
- Grib2_Level_Type :
- 200
- Grib2_Level_Desc :
- Entire atmosphere layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Sunshine_Duration_surface(time1, lat, lon)float32...
- long_name :
- Sunshine Duration @ Ground or water surface
- units :
- s
- abbreviation :
- SUNSD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-6-201_L1
- Grib2_Parameter :
- [ 0 6 201]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Sunshine Duration
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Surface_Lifted_Index_surface(time1, lat, lon)float32...
- long_name :
- Surface Lifted Index @ Ground or water surface
- units :
- K
- abbreviation :
- LFT X
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-7-192_L1
- Grib2_Parameter :
- [ 0 7 192]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Thermodynamic stability indices
- Grib2_Parameter_Name :
- Surface Lifted Index
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Best_4_layer_Lifted_Index_surface(time1, lat, lon)float32...
- long_name :
- Best (4 layer) Lifted Index @ Ground or water surface
- units :
- K
- abbreviation :
- 4LFTX
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-7-193_L1
- Grib2_Parameter :
- [ 0 7 193]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Thermodynamic stability indices
- Grib2_Parameter_Name :
- Best (4 layer) Lifted Index
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Volumetric_Soil_Moisture_Content_depth_below_surface_layer(time1, depth_below_surface_layer, lat, lon)float32...
- long_name :
- Volumetric Soil Moisture Content @ Depth below land surface layer
- units :
- Fraction
- abbreviation :
- SOILW
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-0-192_L106_layer
- Grib2_Parameter :
- [ 2 0 192]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Vegetation/Biomass
- Grib2_Parameter_Name :
- Volumetric Soil Moisture Content
- Grib2_Level_Type :
- 106
- Grib2_Level_Desc :
- Depth below land surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[535731840 values with dtype=float32]
- Ground_Heat_Flux_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Ground Heat Flux (Mixed_intervals Average) @ Ground or water surface
- units :
- W.m-2
- abbreviation :
- GFLUX
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_2-0-193_L1_Imixed_S0
- Grib2_Parameter :
- [ 2 0 193]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Vegetation/Biomass
- Grib2_Parameter_Name :
- Ground Heat Flux
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Plant_Canopy_Surface_Water_surface(time1, lat, lon)float32...
- long_name :
- Plant Canopy Surface Water @ Ground or water surface
- units :
- kg.m-2
- abbreviation :
- CNWAT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-0-196_L1
- Grib2_Parameter :
- [ 2 0 196]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Vegetation/Biomass
- Grib2_Parameter_Name :
- Plant Canopy Surface Water
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Wilting_Point_surface(time1, lat, lon)float32...
- long_name :
- Wilting Point @ Ground or water surface
- units :
- Fraction
- abbreviation :
- WILT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-0-201_L1
- Grib2_Parameter :
- [ 2 0 201]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Vegetation/Biomass
- Grib2_Parameter_Name :
- Wilting Point
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Liquid_Volumetric_Soil_Moisture_non_Frozen_depth_below_surface_layer(time1, depth_below_surface_layer, lat, lon)float32...
- long_name :
- Liquid Volumetric Soil Moisture (non Frozen) @ Depth below land surface layer
- units :
- abbreviation :
- SOILL
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-3-192_L106_layer
- Grib2_Parameter :
- [ 2 3 192]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Soil Products
- Grib2_Parameter_Name :
- Liquid Volumetric Soil Moisture (non Frozen)
- Grib2_Level_Type :
- 106
- Grib2_Level_Desc :
- Depth below land surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[535731840 values with dtype=float32]
- Field_Capacity_surface(time1, lat, lon)float32...
- long_name :
- Field Capacity @ Ground or water surface
- units :
- Fraction
- abbreviation :
- FLDCP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-3-203_L1
- Grib2_Parameter :
- [ 2 3 203]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Soil Products
- Grib2_Parameter_Name :
- Field Capacity
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Vegetation_surface(time1, lat, lon)float32...
- long_name :
- Vegetation @ Ground or water surface
- units :
- %
- abbreviation :
- VEG
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-0-4_L1
- Grib2_Parameter :
- [2 0 4]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Vegetation/Biomass
- Grib2_Parameter_Name :
- Vegetation
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Vertical_velocity_geometric_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- Vertical velocity (geometric) @ Isobaric surface
- units :
- m/s
- abbreviation :
- DZDT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-9_L100
- Grib2_Parameter :
- [0 2 9]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Vertical velocity (geometric)
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- Vertical_velocity_pressure_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- Vertical velocity (pressure) @ Isobaric surface
- units :
- Pa/s
- abbreviation :
- VVEL
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-8_L100
- Grib2_Parameter :
- [0 2 8]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Vertical velocity (pressure)
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- Vertical_velocity_pressure_sigma(time1, sigma, lat, lon)float32...
- long_name :
- Vertical velocity (pressure) @ Sigma level
- units :
- Pa/s
- abbreviation :
- VVEL
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-8_L104
- Grib2_Parameter :
- [0 2 8]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Vertical velocity (pressure)
- Grib2_Level_Type :
- 104
- Grib2_Level_Desc :
- Sigma level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Visibility_surface(time1, lat, lon)float32...
- long_name :
- Visibility @ Ground or water surface
- units :
- m
- abbreviation :
- VIS
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-19-0_L1
- Grib2_Parameter :
- [ 0 19 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Physical atmospheric Properties
- Grib2_Parameter_Name :
- Visibility
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Water_equivalent_of_accumulated_snow_depth_surface(time1, lat, lon)float32...
- long_name :
- Water equivalent of accumulated snow depth @ Ground or water surface
- units :
- kg.m-2
- abbreviation :
- WEASD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-13_L1
- Grib2_Parameter :
- [ 0 1 13]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Water equivalent of accumulated snow depth
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Water_runoff_surface_Mixed_intervals_Accumulation(time2, lat, lon)float32...
- long_name :
- Water runoff (Mixed_intervals Accumulation) @ Ground or water surface
- units :
- kg.m-2
- abbreviation :
- WATR
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Accumulation
- Grib_Variable_Id :
- VAR_2-0-5_L1_Imixed_S1
- Grib2_Parameter :
- [2 0 5]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Vegetation/Biomass
- Grib2_Parameter_Name :
- Water runoff
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Accumulation
[132894720 values with dtype=float32]
- Wind_speed_gust_surface(time1, lat, lon)float32...
- long_name :
- Wind speed (gust) @ Ground or water surface
- units :
- m/s
- abbreviation :
- GUST
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-22_L1
- Grib2_Parameter :
- [ 0 2 22]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Wind speed (gust)
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- u-component_of_wind_potential_vorticity_surface(time1, potential_vorticity_surface, lat, lon)float32...
- long_name :
- u-component of wind @ Potential vorticity surface
- units :
- m/s
- abbreviation :
- UGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-2_L109
- Grib2_Parameter :
- [0 2 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- u-component of wind
- Grib2_Level_Type :
- 109
- Grib2_Level_Desc :
- Potential vorticity surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[267865920 values with dtype=float32]
- u-component_of_wind_pressure_difference_layer(time1, pressure_difference_layer2, lat, lon)float32...
- long_name :
- u-component of wind @ Level at specified pressure difference from ground to level layer
- units :
- m/s
- abbreviation :
- UGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-2_L108_layer
- Grib2_Parameter :
- [0 2 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- u-component of wind
- Grib2_Level_Type :
- 108
- Grib2_Level_Desc :
- Level at specified pressure difference from ground to level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- u-component_of_wind_planetary_boundary(time1, lat, lon)float32...
- long_name :
- u-component of wind @ Planetary Boundary Layer
- units :
- m/s
- abbreviation :
- UGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-2_L220
- Grib2_Parameter :
- [0 2 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- u-component of wind
- Grib2_Level_Type :
- 220
- Grib2_Level_Desc :
- Planetary Boundary Layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- u-component_of_wind_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- u-component of wind @ Isobaric surface
- units :
- m/s
- abbreviation :
- UGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-2_L100
- Grib2_Parameter :
- [0 2 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- u-component of wind
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- u-component_of_wind_maximum_wind(time1, lat, lon)float32...
- long_name :
- u-component of wind @ Maximum wind level
- units :
- m/s
- abbreviation :
- UGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-2_L6
- Grib2_Parameter :
- [0 2 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- u-component of wind
- Grib2_Level_Type :
- 6
- Grib2_Level_Desc :
- Maximum wind level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- u-component_of_wind_altitude_above_msl(time1, altitude_above_msl, lat, lon)float32...
- long_name :
- u-component of wind @ Specific altitude above mean sea level
- units :
- m/s
- abbreviation :
- UGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-2_L102
- Grib2_Parameter :
- [0 2 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- u-component of wind
- Grib2_Level_Type :
- 102
- Grib2_Level_Desc :
- Specific altitude above mean sea level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[401798880 values with dtype=float32]
- u-component_of_wind_height_above_ground(time1, height_above_ground2, lat, lon)float32...
- long_name :
- u-component of wind @ Specified height level above ground
- units :
- m/s
- abbreviation :
- UGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-2_L103
- Grib2_Parameter :
- [0 2 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- u-component of wind
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[937530720 values with dtype=float32]
- u-component_of_wind_tropopause(time1, lat, lon)float32...
- long_name :
- u-component of wind @ Tropopause
- units :
- m/s
- abbreviation :
- UGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-2_L7
- Grib2_Parameter :
- [0 2 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- u-component of wind
- Grib2_Level_Type :
- 7
- Grib2_Level_Desc :
- Tropopause
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- u-component_of_wind_sigma(time1, sigma, lat, lon)float32...
- long_name :
- u-component of wind @ Sigma level
- units :
- m/s
- abbreviation :
- UGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-2_L104
- Grib2_Parameter :
- [0 2 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- u-component of wind
- Grib2_Level_Type :
- 104
- Grib2_Level_Desc :
- Sigma level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- v-component_of_wind_potential_vorticity_surface(time1, potential_vorticity_surface, lat, lon)float32...
- long_name :
- v-component of wind @ Potential vorticity surface
- units :
- m/s
- abbreviation :
- VGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-3_L109
- Grib2_Parameter :
- [0 2 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- v-component of wind
- Grib2_Level_Type :
- 109
- Grib2_Level_Desc :
- Potential vorticity surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[267865920 values with dtype=float32]
- v-component_of_wind_pressure_difference_layer(time1, pressure_difference_layer2, lat, lon)float32...
- long_name :
- v-component of wind @ Level at specified pressure difference from ground to level layer
- units :
- m/s
- abbreviation :
- VGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-3_L108_layer
- Grib2_Parameter :
- [0 2 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- v-component of wind
- Grib2_Level_Type :
- 108
- Grib2_Level_Desc :
- Level at specified pressure difference from ground to level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- v-component_of_wind_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- v-component of wind @ Isobaric surface
- units :
- m/s
- abbreviation :
- VGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-3_L100
- Grib2_Parameter :
- [0 2 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- v-component of wind
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- v-component_of_wind_planetary_boundary(time1, lat, lon)float32...
- long_name :
- v-component of wind @ Planetary Boundary Layer
- units :
- m/s
- abbreviation :
- VGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-3_L220
- Grib2_Parameter :
- [0 2 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- v-component of wind
- Grib2_Level_Type :
- 220
- Grib2_Level_Desc :
- Planetary Boundary Layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- v-component_of_wind_altitude_above_msl(time1, altitude_above_msl, lat, lon)float32...
- long_name :
- v-component of wind @ Specific altitude above mean sea level
- units :
- m/s
- abbreviation :
- VGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-3_L102
- Grib2_Parameter :
- [0 2 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- v-component of wind
- Grib2_Level_Type :
- 102
- Grib2_Level_Desc :
- Specific altitude above mean sea level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[401798880 values with dtype=float32]
- v-component_of_wind_maximum_wind(time1, lat, lon)float32...
- long_name :
- v-component of wind @ Maximum wind level
- units :
- m/s
- abbreviation :
- VGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-3_L6
- Grib2_Parameter :
- [0 2 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- v-component of wind
- Grib2_Level_Type :
- 6
- Grib2_Level_Desc :
- Maximum wind level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- v-component_of_wind_tropopause(time1, lat, lon)float32...
- long_name :
- v-component of wind @ Tropopause
- units :
- m/s
- abbreviation :
- VGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-3_L7
- Grib2_Parameter :
- [0 2 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- v-component of wind
- Grib2_Level_Type :
- 7
- Grib2_Level_Desc :
- Tropopause
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- v-component_of_wind_height_above_ground(time1, height_above_ground2, lat, lon)float32...
- long_name :
- v-component of wind @ Specified height level above ground
- units :
- m/s
- abbreviation :
- VGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-3_L103
- Grib2_Parameter :
- [0 2 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- v-component of wind
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[937530720 values with dtype=float32]
- v-component_of_wind_sigma(time1, sigma, lat, lon)float32...
- long_name :
- v-component of wind @ Sigma level
- units :
- m/s
- abbreviation :
- VGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-3_L104
- Grib2_Parameter :
- [0 2 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- v-component of wind
- Grib2_Level_Type :
- 104
- Grib2_Level_Desc :
- Sigma level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- latPandasIndex
PandasIndex(Index([ 90.0, 89.75, 89.5, 89.25, 89.0, 88.75, 88.5, 88.25, 88.0, 87.75, ... -87.75, -88.0, -88.25, -88.5, -88.75, -89.0, -89.25, -89.5, -89.75, -90.0], dtype='float32', name='lat', length=721))
- lonPandasIndex
PandasIndex(Index([ 0.0, 0.25, 0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0, 2.25, ... 357.5, 357.75, 358.0, 358.25, 358.5, 358.75, 359.0, 359.25, 359.5, 359.75], dtype='float32', name='lon', length=1440))
- timePandasIndex
PandasIndex(DatetimeIndex(['2024-04-29 21:00:00', '2024-04-30 00:00:00', '2024-04-30 01:30:00', '2024-04-30 03:00:00', '2024-04-30 04:30:00', '2024-04-30 06:00:00', '2024-04-30 07:30:00', '2024-04-30 09:00:00', '2024-04-30 10:30:00', '2024-04-30 12:00:00', ... '2024-05-15 04:30:00', '2024-05-15 06:00:00', '2024-05-15 07:30:00', '2024-05-15 09:00:00', '2024-05-15 10:30:00', '2024-05-15 12:00:00', '2024-05-15 13:30:00', '2024-05-15 15:00:00', '2024-05-15 16:30:00', '2024-05-15 18:00:00'], dtype='datetime64[ns]', name='time', length=254, freq=None))
- time1PandasIndex
PandasIndex(DatetimeIndex(['2024-04-29 18:00:00', '2024-04-29 21:00:00', '2024-04-30 00:00:00', '2024-04-30 03:00:00', '2024-04-30 06:00:00', '2024-04-30 09:00:00', '2024-04-30 12:00:00', '2024-04-30 15:00:00', '2024-04-30 18:00:00', '2024-04-30 21:00:00', ... '2024-05-14 15:00:00', '2024-05-14 18:00:00', '2024-05-14 21:00:00', '2024-05-15 00:00:00', '2024-05-15 03:00:00', '2024-05-15 06:00:00', '2024-05-15 09:00:00', '2024-05-15 12:00:00', '2024-05-15 15:00:00', '2024-05-15 18:00:00'], dtype='datetime64[ns]', name='time1', length=129, freq=None))
- time2PandasIndex
PandasIndex(DatetimeIndex(['2024-04-29 21:00:00', '2024-04-30 00:00:00', '2024-04-30 03:00:00', '2024-04-30 06:00:00', '2024-04-30 09:00:00', '2024-04-30 12:00:00', '2024-04-30 15:00:00', '2024-04-30 18:00:00', '2024-04-30 21:00:00', '2024-05-01 00:00:00', ... '2024-05-14 15:00:00', '2024-05-14 18:00:00', '2024-05-14 21:00:00', '2024-05-15 00:00:00', '2024-05-15 03:00:00', '2024-05-15 06:00:00', '2024-05-15 09:00:00', '2024-05-15 12:00:00', '2024-05-15 15:00:00', '2024-05-15 18:00:00'], dtype='datetime64[ns]', name='time2', length=128, freq=None))
- time3PandasIndex
PandasIndex(DatetimeIndex(['2024-04-29 21:00:00', '2024-04-30 00:00:00', '2024-04-30 03:00:00', '2024-04-30 06:00:00', '2024-04-30 09:00:00', '2024-04-30 12:00:00', '2024-04-30 15:00:00', '2024-04-30 18:00:00', '2024-04-30 21:00:00', '2024-05-01 00:00:00', ... '2024-05-14 15:00:00', '2024-05-14 18:00:00', '2024-05-14 21:00:00', '2024-05-15 00:00:00', '2024-05-15 03:00:00', '2024-05-15 06:00:00', '2024-05-15 09:00:00', '2024-05-15 12:00:00', '2024-05-15 15:00:00', '2024-05-15 18:00:00'], dtype='datetime64[ns]', name='time3', length=128, freq=None))
- height_above_groundPandasIndex
PandasIndex(Index([80.0], dtype='float32', name='height_above_ground'))
- pressure_difference_layerPandasIndex
PandasIndex(Index([12750.0], dtype='float32', name='pressure_difference_layer'))
- height_above_ground1PandasIndex
PandasIndex(Index([1000.0, 4000.0], dtype='float32', name='height_above_ground1'))
- altitude_above_mslPandasIndex
PandasIndex(Index([1829.0, 2743.0, 3658.0], dtype='float32', name='altitude_above_msl'))
- altitude_above_msl1PandasIndex
PandasIndex(Index([10.0], dtype='float32', name='altitude_above_msl1'))
- isobaricPandasIndex
PandasIndex(Index([ 1.0, 2.0, 4.0, 7.0, 10.0, 20.0, 40.0, 70.0, 100.0, 200.0, 300.0, 500.0, 700.0, 1000.0, 1500.0, 2000.0, 3000.0, 4000.0, 5000.0, 7000.0, 10000.0, 15000.0, 20000.0, 25000.0, 30000.0, 35000.0, 40000.0, 45000.0, 50000.0, 55000.0, 60000.0, 65000.0, 70000.0, 75000.0, 80000.0, 85000.0, 90000.0, 92500.0, 95000.0, 97500.0, 100000.0], dtype='float32', name='isobaric'))
- height_above_ground_layerPandasIndex
PandasIndex(Index([1500.0], dtype='float32', name='height_above_ground_layer'))
- height_above_ground_layer1PandasIndex
PandasIndex(Index([3000.0], dtype='float32', name='height_above_ground_layer1'))
- pressure_difference_layer1PandasIndex
PandasIndex(Index([4500.0, 9000.0, 12750.0], dtype='float32', name='pressure_difference_layer1'))
- pressure_difference_layer2PandasIndex
PandasIndex(Index([1500.0], dtype='float32', name='pressure_difference_layer2'))
- height_above_ground2PandasIndex
PandasIndex(Index([10.0, 20.0, 30.0, 40.0, 50.0, 80.0, 100.0], dtype='float32', name='height_above_ground2'))
- sigma_layerPandasIndex
PandasIndex(Index([0.5800000429153442, 0.6650000214576721, 0.7200000286102295, 0.8300000429153442], dtype='float32', name='sigma_layer'))
- depth_below_surface_layerPandasIndex
PandasIndex(Index([0.05000000074505806, 0.25, 0.699999988079071, 1.5], dtype='float32', name='depth_below_surface_layer'))
- height_above_ground3PandasIndex
PandasIndex(Index([2.0, 80.0, 100.0], dtype='float32', name='height_above_ground3'))
- isobaric1PandasIndex
PandasIndex(Index([ 5000.0, 10000.0, 15000.0, 20000.0, 25000.0, 30000.0, 35000.0, 40000.0, 45000.0, 50000.0, 55000.0, 60000.0, 65000.0, 70000.0, 75000.0, 80000.0, 85000.0, 90000.0, 92500.0, 95000.0, 97500.0, 100000.0], dtype='float32', name='isobaric1'))
- height_above_ground4PandasIndex
PandasIndex(Index([2.0], dtype='float32', name='height_above_ground4'))
- height_above_ground5PandasIndex
PandasIndex(Index([2.0, 80.0], dtype='float32', name='height_above_ground5'))
- potential_vorticity_surfacePandasIndex
PandasIndex(Index([-2e-06, 2e-06], dtype='float32', name='potential_vorticity_surface'))
- sigmaPandasIndex
PandasIndex(Index([0.995], dtype='float32', name='sigma'))
- hybridPandasIndex
PandasIndex(Index([1.0], dtype='float32', name='hybrid'))
- hybrid1PandasIndex
PandasIndex(Index([1.0, 2.0], dtype='float32', name='hybrid1'))
- Originating_or_generating_Center :
- US National Weather Service, National Centres for Environmental Prediction (NCEP)
- Originating_or_generating_Subcenter :
- 0
- GRIB_table_version :
- 2,1
- Type_of_generating_process :
- Forecast
- Analysis_or_forecast_generating_process_identifier_defined_by_originating_centre :
- Analysis from GFS (Global Forecast System)
- file_format :
- GRIB-2
- Conventions :
- CF-1.6
- history :
- Read using CDM IOSP GribCollection v3
- featureType :
- GRID
- _CoordSysBuilder :
- ucar.nc2.internal.dataset.conv.CF1Convention
Leverage MetPy’s parse_cf
function, which among other things will make it easy to extract the dataset’s map projection.
ds = ds.metpy.parse_cf()
ds
<xarray.Dataset> Dimensions: ( time: 254, time_bounds_1: 2, time2: 128, time2_bounds_1: 2, pressure_difference_layer: 1, ... height_above_ground5: 2, altitude_above_msl: 3, height_above_ground3: 3, hybrid1: 2, height_above_ground1: 2, height_above_ground2: 7) Coordinates: (12/29) reftime datetime64[ns] ... * time (time) datetime64[ns] ... * time2 (time2) datetime64[ns] ... * pressure_difference_layer (pressure_difference_layer) float32 ... * height_above_ground_layer (height_above_ground_layer) float32 ... * height_above_ground_layer1 (height_above_ground_layer1) float32 ... ... ... * height_above_ground5 (height_above_ground5) float32 ... * altitude_above_msl (altitude_above_msl) float32 ... * height_above_ground3 (height_above_ground3) float32 ... * hybrid1 (hybrid1) float32 ... * height_above_ground1 (height_above_ground1) float32 ... * height_above_ground2 (height_above_ground2) float32 ... Dimensions without coordinates: time_bounds_1, time2_bounds_1, pressure_difference_layer_bounds_1, height_above_ground_layer_bounds_1, height_above_ground_layer1_bounds_1, pressure_difference_layer1_bounds_1, pressure_difference_layer2_bounds_1, sigma_layer_bounds_1, depth_below_surface_layer_bounds_1 Data variables: (12/180) LatLon_Projection int32 ... time_bounds (time, time_bounds_1) datetime64[ns] ... time2_bounds (time2, time2_bounds_1) datetime64[ns] ... pressure_difference_layer_bounds (pressure_difference_layer, pressure_difference_layer_bounds_1) float32 ... height_above_ground_layer_bounds (height_above_ground_layer, height_above_ground_layer_bounds_1) float32 ... height_above_ground_layer1_bounds (height_above_ground_layer1, height_above_ground_layer1_bounds_1) float32 ... ... ... v-component_of_wind_planetary_boundary (time1, lat, lon) float32 ... v-component_of_wind_altitude_above_msl (time1, altitude_above_msl, lat, lon) float32 ... v-component_of_wind_maximum_wind (time1, lat, lon) float32 ... v-component_of_wind_tropopause (time1, lat, lon) float32 ... v-component_of_wind_height_above_ground (time1, height_above_ground2, lat, lon) float32 ... v-component_of_wind_sigma (time1, sigma, lat, lon) float32 ... Attributes: Originating_or_generating_Center: ... Originating_or_generating_Subcenter: ... GRIB_table_version: ... Type_of_generating_process: ... Analysis_or_forecast_generating_process_identifier_defined_by_originating... file_format: ... Conventions: ... history: ... featureType: ... _CoordSysBuilder: ...
- time: 254
- time_bounds_1: 2
- time2: 128
- time2_bounds_1: 2
- pressure_difference_layer: 1
- pressure_difference_layer_bounds_1: 2
- height_above_ground_layer: 1
- height_above_ground_layer_bounds_1: 2
- height_above_ground_layer1: 1
- height_above_ground_layer1_bounds_1: 2
- pressure_difference_layer1: 3
- pressure_difference_layer1_bounds_1: 2
- pressure_difference_layer2: 1
- pressure_difference_layer2_bounds_1: 2
- sigma_layer: 4
- sigma_layer_bounds_1: 2
- depth_below_surface_layer: 4
- depth_below_surface_layer_bounds_1: 2
- lat: 721
- lon: 1440
- time1: 129
- isobaric: 41
- height_above_ground4: 1
- isobaric1: 22
- hybrid: 1
- time3: 128
- potential_vorticity_surface: 2
- altitude_above_msl1: 1
- sigma: 1
- height_above_ground: 1
- height_above_ground5: 2
- altitude_above_msl: 3
- height_above_ground3: 3
- hybrid1: 2
- height_above_ground1: 2
- height_above_ground2: 7
- reftime()datetime64[ns]2024-04-29T18:00:00
- standard_name :
- forecast_reference_time
- long_name :
- GRIB reference time
- _CoordinateAxisType :
- RunTime
array('2024-04-29T18:00:00.000000000', dtype='datetime64[ns]')
- time(time)datetime64[ns]2024-04-29T21:00:00 ... 2024-05-...
- standard_name :
- time
- long_name :
- GRIB forecast or observation time
- bounds :
- time_bounds
- _CoordinateAxisType :
- Time
- _metpy_axis :
- time
array(['2024-04-29T21:00:00.000000000', '2024-04-30T00:00:00.000000000', '2024-04-30T01:30:00.000000000', ..., '2024-05-15T15:00:00.000000000', '2024-05-15T16:30:00.000000000', '2024-05-15T18:00:00.000000000'], dtype='datetime64[ns]')
- time2(time2)datetime64[ns]2024-04-29T21:00:00 ... 2024-05-...
- standard_name :
- time
- long_name :
- GRIB forecast or observation time
- bounds :
- time2_bounds
- _CoordinateAxisType :
- Time
- _metpy_axis :
- time
array(['2024-04-29T21:00:00.000000000', '2024-04-30T00:00:00.000000000', '2024-04-30T03:00:00.000000000', '2024-04-30T06:00:00.000000000', '2024-04-30T09:00:00.000000000', '2024-04-30T12:00:00.000000000', '2024-04-30T15:00:00.000000000', '2024-04-30T18:00:00.000000000', '2024-04-30T21:00:00.000000000', '2024-05-01T00:00:00.000000000', '2024-05-01T03:00:00.000000000', '2024-05-01T06:00:00.000000000', '2024-05-01T09:00:00.000000000', '2024-05-01T12:00:00.000000000', '2024-05-01T15:00:00.000000000', '2024-05-01T18:00:00.000000000', '2024-05-01T21:00:00.000000000', '2024-05-02T00:00:00.000000000', '2024-05-02T03:00:00.000000000', '2024-05-02T06:00:00.000000000', '2024-05-02T09:00:00.000000000', '2024-05-02T12:00:00.000000000', '2024-05-02T15:00:00.000000000', '2024-05-02T18:00:00.000000000', '2024-05-02T21:00:00.000000000', '2024-05-03T00:00:00.000000000', '2024-05-03T03:00:00.000000000', '2024-05-03T06:00:00.000000000', '2024-05-03T09:00:00.000000000', '2024-05-03T12:00:00.000000000', '2024-05-03T15:00:00.000000000', '2024-05-03T18:00:00.000000000', '2024-05-03T21:00:00.000000000', '2024-05-04T00:00:00.000000000', '2024-05-04T03:00:00.000000000', '2024-05-04T06:00:00.000000000', '2024-05-04T09:00:00.000000000', '2024-05-04T12:00:00.000000000', '2024-05-04T15:00:00.000000000', '2024-05-04T18:00:00.000000000', '2024-05-04T21:00:00.000000000', '2024-05-05T00:00:00.000000000', '2024-05-05T03:00:00.000000000', '2024-05-05T06:00:00.000000000', '2024-05-05T09:00:00.000000000', '2024-05-05T12:00:00.000000000', '2024-05-05T15:00:00.000000000', '2024-05-05T18:00:00.000000000', '2024-05-05T21:00:00.000000000', '2024-05-06T00:00:00.000000000', '2024-05-06T03:00:00.000000000', '2024-05-06T06:00:00.000000000', '2024-05-06T09:00:00.000000000', '2024-05-06T12:00:00.000000000', '2024-05-06T15:00:00.000000000', '2024-05-06T18:00:00.000000000', '2024-05-06T21:00:00.000000000', '2024-05-07T00:00:00.000000000', '2024-05-07T03:00:00.000000000', '2024-05-07T06:00:00.000000000', '2024-05-07T09:00:00.000000000', '2024-05-07T12:00:00.000000000', '2024-05-07T15:00:00.000000000', '2024-05-07T18:00:00.000000000', '2024-05-07T21:00:00.000000000', '2024-05-08T00:00:00.000000000', '2024-05-08T03:00:00.000000000', '2024-05-08T06:00:00.000000000', '2024-05-08T09:00:00.000000000', '2024-05-08T12:00:00.000000000', '2024-05-08T15:00:00.000000000', '2024-05-08T18:00:00.000000000', '2024-05-08T21:00:00.000000000', '2024-05-09T00:00:00.000000000', '2024-05-09T03:00:00.000000000', '2024-05-09T06:00:00.000000000', '2024-05-09T09:00:00.000000000', '2024-05-09T12:00:00.000000000', '2024-05-09T15:00:00.000000000', '2024-05-09T18:00:00.000000000', '2024-05-09T21:00:00.000000000', '2024-05-10T00:00:00.000000000', '2024-05-10T03:00:00.000000000', '2024-05-10T06:00:00.000000000', '2024-05-10T09:00:00.000000000', '2024-05-10T12:00:00.000000000', '2024-05-10T15:00:00.000000000', '2024-05-10T18:00:00.000000000', '2024-05-10T21:00:00.000000000', '2024-05-11T00:00:00.000000000', '2024-05-11T03:00:00.000000000', '2024-05-11T06:00:00.000000000', '2024-05-11T09:00:00.000000000', '2024-05-11T12:00:00.000000000', '2024-05-11T15:00:00.000000000', '2024-05-11T18:00:00.000000000', '2024-05-11T21:00:00.000000000', '2024-05-12T00:00:00.000000000', '2024-05-12T03:00:00.000000000', '2024-05-12T06:00:00.000000000', '2024-05-12T09:00:00.000000000', '2024-05-12T12:00:00.000000000', '2024-05-12T15:00:00.000000000', '2024-05-12T18:00:00.000000000', '2024-05-12T21:00:00.000000000', '2024-05-13T00:00:00.000000000', '2024-05-13T03:00:00.000000000', '2024-05-13T06:00:00.000000000', '2024-05-13T09:00:00.000000000', '2024-05-13T12:00:00.000000000', '2024-05-13T15:00:00.000000000', '2024-05-13T18:00:00.000000000', '2024-05-13T21:00:00.000000000', '2024-05-14T00:00:00.000000000', '2024-05-14T03:00:00.000000000', '2024-05-14T06:00:00.000000000', '2024-05-14T09:00:00.000000000', '2024-05-14T12:00:00.000000000', '2024-05-14T15:00:00.000000000', '2024-05-14T18:00:00.000000000', '2024-05-14T21:00:00.000000000', '2024-05-15T00:00:00.000000000', '2024-05-15T03:00:00.000000000', '2024-05-15T06:00:00.000000000', '2024-05-15T09:00:00.000000000', '2024-05-15T12:00:00.000000000', '2024-05-15T15:00:00.000000000', '2024-05-15T18:00:00.000000000'], dtype='datetime64[ns]')
- pressure_difference_layer(pressure_difference_layer)float321.275e+04
- units :
- Pa
- long_name :
- Level at specified pressure difference from ground to level
- positive :
- up
- Grib_level_type :
- 108
- datum :
- ground
- bounds :
- pressure_difference_layer_bounds
- _CoordinateAxisType :
- Pressure
- _CoordinateZisPositive :
- up
- _metpy_axis :
- vertical
array([12750.], dtype=float32)
- height_above_ground_layer(height_above_ground_layer)float321.5e+03
- units :
- m
- long_name :
- Specified height level above ground
- positive :
- up
- Grib_level_type :
- 103
- datum :
- ground
- bounds :
- height_above_ground_layer_bounds
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
- _metpy_axis :
- vertical
array([1500.], dtype=float32)
- height_above_ground_layer1(height_above_ground_layer1)float323e+03
- units :
- m
- long_name :
- Specified height level above ground
- positive :
- up
- Grib_level_type :
- 103
- datum :
- ground
- bounds :
- height_above_ground_layer1_bounds
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
- _metpy_axis :
- vertical
array([3000.], dtype=float32)
- pressure_difference_layer1(pressure_difference_layer1)float324.5e+03 9e+03 1.275e+04
- units :
- Pa
- long_name :
- Level at specified pressure difference from ground to level
- positive :
- up
- Grib_level_type :
- 108
- datum :
- ground
- bounds :
- pressure_difference_layer1_bounds
- _CoordinateAxisType :
- Pressure
- _CoordinateZisPositive :
- up
- _metpy_axis :
- vertical
array([ 4500., 9000., 12750.], dtype=float32)
- pressure_difference_layer2(pressure_difference_layer2)float321.5e+03
- units :
- Pa
- long_name :
- Level at specified pressure difference from ground to level
- positive :
- up
- Grib_level_type :
- 108
- datum :
- ground
- bounds :
- pressure_difference_layer2_bounds
- _CoordinateAxisType :
- Pressure
- _CoordinateZisPositive :
- up
- _metpy_axis :
- vertical
array([1500.], dtype=float32)
- sigma_layer(sigma_layer)float320.58 0.665 0.72 0.83
- units :
- sigma
- long_name :
- Sigma level
- positive :
- down
- Grib_level_type :
- 104
- bounds :
- sigma_layer_bounds
- _CoordinateAxisType :
- GeoZ
- _CoordinateZisPositive :
- down
- _metpy_axis :
- vertical
array([0.58 , 0.665, 0.72 , 0.83 ], dtype=float32)
- depth_below_surface_layer(depth_below_surface_layer)float320.05 0.25 0.7 1.5
- units :
- m
- long_name :
- Depth below land surface
- positive :
- down
- Grib_level_type :
- 106
- datum :
- land surface
- bounds :
- depth_below_surface_layer_bounds
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- down
- _metpy_axis :
- vertical
array([0.05, 0.25, 0.7 , 1.5 ], dtype=float32)
- lat(lat)float3290.0 89.75 89.5 ... -89.75 -90.0
- units :
- degrees_north
- _CoordinateAxisType :
- Lat
array([ 90. , 89.75, 89.5 , ..., -89.5 , -89.75, -90. ], dtype=float32)
- lon(lon)float320.0 0.25 0.5 ... 359.2 359.5 359.8
- units :
- degrees_east
- _CoordinateAxisType :
- Lon
array([0.0000e+00, 2.5000e-01, 5.0000e-01, ..., 3.5925e+02, 3.5950e+02, 3.5975e+02], dtype=float32)
- time1(time1)datetime64[ns]2024-04-29T18:00:00 ... 2024-05-...
- standard_name :
- time
- long_name :
- GRIB forecast or observation time
- _CoordinateAxisType :
- Time
array(['2024-04-29T18:00:00.000000000', '2024-04-29T21:00:00.000000000', '2024-04-30T00:00:00.000000000', '2024-04-30T03:00:00.000000000', '2024-04-30T06:00:00.000000000', '2024-04-30T09:00:00.000000000', '2024-04-30T12:00:00.000000000', '2024-04-30T15:00:00.000000000', '2024-04-30T18:00:00.000000000', '2024-04-30T21:00:00.000000000', '2024-05-01T00:00:00.000000000', '2024-05-01T03:00:00.000000000', '2024-05-01T06:00:00.000000000', '2024-05-01T09:00:00.000000000', '2024-05-01T12:00:00.000000000', '2024-05-01T15:00:00.000000000', '2024-05-01T18:00:00.000000000', '2024-05-01T21:00:00.000000000', '2024-05-02T00:00:00.000000000', '2024-05-02T03:00:00.000000000', '2024-05-02T06:00:00.000000000', '2024-05-02T09:00:00.000000000', '2024-05-02T12:00:00.000000000', '2024-05-02T15:00:00.000000000', '2024-05-02T18:00:00.000000000', '2024-05-02T21:00:00.000000000', '2024-05-03T00:00:00.000000000', '2024-05-03T03:00:00.000000000', '2024-05-03T06:00:00.000000000', '2024-05-03T09:00:00.000000000', '2024-05-03T12:00:00.000000000', '2024-05-03T15:00:00.000000000', '2024-05-03T18:00:00.000000000', '2024-05-03T21:00:00.000000000', '2024-05-04T00:00:00.000000000', '2024-05-04T03:00:00.000000000', '2024-05-04T06:00:00.000000000', '2024-05-04T09:00:00.000000000', '2024-05-04T12:00:00.000000000', '2024-05-04T15:00:00.000000000', '2024-05-04T18:00:00.000000000', '2024-05-04T21:00:00.000000000', '2024-05-05T00:00:00.000000000', '2024-05-05T03:00:00.000000000', '2024-05-05T06:00:00.000000000', '2024-05-05T09:00:00.000000000', '2024-05-05T12:00:00.000000000', '2024-05-05T15:00:00.000000000', '2024-05-05T18:00:00.000000000', '2024-05-05T21:00:00.000000000', '2024-05-06T00:00:00.000000000', '2024-05-06T03:00:00.000000000', '2024-05-06T06:00:00.000000000', '2024-05-06T09:00:00.000000000', '2024-05-06T12:00:00.000000000', '2024-05-06T15:00:00.000000000', '2024-05-06T18:00:00.000000000', '2024-05-06T21:00:00.000000000', '2024-05-07T00:00:00.000000000', '2024-05-07T03:00:00.000000000', '2024-05-07T06:00:00.000000000', '2024-05-07T09:00:00.000000000', '2024-05-07T12:00:00.000000000', '2024-05-07T15:00:00.000000000', '2024-05-07T18:00:00.000000000', '2024-05-07T21:00:00.000000000', '2024-05-08T00:00:00.000000000', '2024-05-08T03:00:00.000000000', '2024-05-08T06:00:00.000000000', '2024-05-08T09:00:00.000000000', '2024-05-08T12:00:00.000000000', '2024-05-08T15:00:00.000000000', '2024-05-08T18:00:00.000000000', '2024-05-08T21:00:00.000000000', '2024-05-09T00:00:00.000000000', '2024-05-09T03:00:00.000000000', '2024-05-09T06:00:00.000000000', '2024-05-09T09:00:00.000000000', '2024-05-09T12:00:00.000000000', '2024-05-09T15:00:00.000000000', '2024-05-09T18:00:00.000000000', '2024-05-09T21:00:00.000000000', '2024-05-10T00:00:00.000000000', '2024-05-10T03:00:00.000000000', '2024-05-10T06:00:00.000000000', '2024-05-10T09:00:00.000000000', '2024-05-10T12:00:00.000000000', '2024-05-10T15:00:00.000000000', '2024-05-10T18:00:00.000000000', '2024-05-10T21:00:00.000000000', '2024-05-11T00:00:00.000000000', '2024-05-11T03:00:00.000000000', '2024-05-11T06:00:00.000000000', '2024-05-11T09:00:00.000000000', '2024-05-11T12:00:00.000000000', '2024-05-11T15:00:00.000000000', '2024-05-11T18:00:00.000000000', '2024-05-11T21:00:00.000000000', '2024-05-12T00:00:00.000000000', '2024-05-12T03:00:00.000000000', '2024-05-12T06:00:00.000000000', '2024-05-12T09:00:00.000000000', '2024-05-12T12:00:00.000000000', '2024-05-12T15:00:00.000000000', '2024-05-12T18:00:00.000000000', '2024-05-12T21:00:00.000000000', '2024-05-13T00:00:00.000000000', '2024-05-13T03:00:00.000000000', '2024-05-13T06:00:00.000000000', '2024-05-13T09:00:00.000000000', '2024-05-13T12:00:00.000000000', '2024-05-13T15:00:00.000000000', '2024-05-13T18:00:00.000000000', '2024-05-13T21:00:00.000000000', '2024-05-14T00:00:00.000000000', '2024-05-14T03:00:00.000000000', '2024-05-14T06:00:00.000000000', '2024-05-14T09:00:00.000000000', '2024-05-14T12:00:00.000000000', '2024-05-14T15:00:00.000000000', '2024-05-14T18:00:00.000000000', '2024-05-14T21:00:00.000000000', '2024-05-15T00:00:00.000000000', '2024-05-15T03:00:00.000000000', '2024-05-15T06:00:00.000000000', '2024-05-15T09:00:00.000000000', '2024-05-15T12:00:00.000000000', '2024-05-15T15:00:00.000000000', '2024-05-15T18:00:00.000000000'], dtype='datetime64[ns]')
- isobaric(isobaric)float321.0 2.0 4.0 ... 9.75e+04 1e+05
- units :
- Pa
- long_name :
- Isobaric surface
- positive :
- down
- Grib_level_type :
- 100
- _CoordinateAxisType :
- Pressure
- _CoordinateZisPositive :
- down
array([1.00e+00, 2.00e+00, 4.00e+00, 7.00e+00, 1.00e+01, 2.00e+01, 4.00e+01, 7.00e+01, 1.00e+02, 2.00e+02, 3.00e+02, 5.00e+02, 7.00e+02, 1.00e+03, 1.50e+03, 2.00e+03, 3.00e+03, 4.00e+03, 5.00e+03, 7.00e+03, 1.00e+04, 1.50e+04, 2.00e+04, 2.50e+04, 3.00e+04, 3.50e+04, 4.00e+04, 4.50e+04, 5.00e+04, 5.50e+04, 6.00e+04, 6.50e+04, 7.00e+04, 7.50e+04, 8.00e+04, 8.50e+04, 9.00e+04, 9.25e+04, 9.50e+04, 9.75e+04, 1.00e+05], dtype=float32)
- metpy_crs()objectProjection: latitude_longitude
array(<metpy.plots.mapping.CFProjection object at 0x1468e54963d0>, dtype=object)
- height_above_ground4(height_above_ground4)float322.0
- units :
- m
- long_name :
- Specified height level above ground
- positive :
- up
- Grib_level_type :
- 103
- datum :
- ground
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
array([2.], dtype=float32)
- isobaric1(isobaric1)float325e+03 1e+04 ... 9.75e+04 1e+05
- units :
- Pa
- long_name :
- Isobaric surface
- positive :
- down
- Grib_level_type :
- 100
- _CoordinateAxisType :
- Pressure
- _CoordinateZisPositive :
- down
array([ 5000., 10000., 15000., 20000., 25000., 30000., 35000., 40000., 45000., 50000., 55000., 60000., 65000., 70000., 75000., 80000., 85000., 90000., 92500., 95000., 97500., 100000.], dtype=float32)
- hybrid(hybrid)float321.0
- units :
- sigma
- long_name :
- Hybrid level
- positive :
- down
- Grib_level_type :
- 105
- _CoordinateAxisType :
- GeoZ
- _CoordinateZisPositive :
- down
array([1.], dtype=float32)
- time3(time3)datetime64[ns]2024-04-29T21:00:00 ... 2024-05-...
- standard_name :
- time
- long_name :
- GRIB forecast or observation time
- _CoordinateAxisType :
- Time
array(['2024-04-29T21:00:00.000000000', '2024-04-30T00:00:00.000000000', '2024-04-30T03:00:00.000000000', '2024-04-30T06:00:00.000000000', '2024-04-30T09:00:00.000000000', '2024-04-30T12:00:00.000000000', '2024-04-30T15:00:00.000000000', '2024-04-30T18:00:00.000000000', '2024-04-30T21:00:00.000000000', '2024-05-01T00:00:00.000000000', '2024-05-01T03:00:00.000000000', '2024-05-01T06:00:00.000000000', '2024-05-01T09:00:00.000000000', '2024-05-01T12:00:00.000000000', '2024-05-01T15:00:00.000000000', '2024-05-01T18:00:00.000000000', '2024-05-01T21:00:00.000000000', '2024-05-02T00:00:00.000000000', '2024-05-02T03:00:00.000000000', '2024-05-02T06:00:00.000000000', '2024-05-02T09:00:00.000000000', '2024-05-02T12:00:00.000000000', '2024-05-02T15:00:00.000000000', '2024-05-02T18:00:00.000000000', '2024-05-02T21:00:00.000000000', '2024-05-03T00:00:00.000000000', '2024-05-03T03:00:00.000000000', '2024-05-03T06:00:00.000000000', '2024-05-03T09:00:00.000000000', '2024-05-03T12:00:00.000000000', '2024-05-03T15:00:00.000000000', '2024-05-03T18:00:00.000000000', '2024-05-03T21:00:00.000000000', '2024-05-04T00:00:00.000000000', '2024-05-04T03:00:00.000000000', '2024-05-04T06:00:00.000000000', '2024-05-04T09:00:00.000000000', '2024-05-04T12:00:00.000000000', '2024-05-04T15:00:00.000000000', '2024-05-04T18:00:00.000000000', '2024-05-04T21:00:00.000000000', '2024-05-05T00:00:00.000000000', '2024-05-05T03:00:00.000000000', '2024-05-05T06:00:00.000000000', '2024-05-05T09:00:00.000000000', '2024-05-05T12:00:00.000000000', '2024-05-05T15:00:00.000000000', '2024-05-05T18:00:00.000000000', '2024-05-05T21:00:00.000000000', '2024-05-06T00:00:00.000000000', '2024-05-06T03:00:00.000000000', '2024-05-06T06:00:00.000000000', '2024-05-06T09:00:00.000000000', '2024-05-06T12:00:00.000000000', '2024-05-06T15:00:00.000000000', '2024-05-06T18:00:00.000000000', '2024-05-06T21:00:00.000000000', '2024-05-07T00:00:00.000000000', '2024-05-07T03:00:00.000000000', '2024-05-07T06:00:00.000000000', '2024-05-07T09:00:00.000000000', '2024-05-07T12:00:00.000000000', '2024-05-07T15:00:00.000000000', '2024-05-07T18:00:00.000000000', '2024-05-07T21:00:00.000000000', '2024-05-08T00:00:00.000000000', '2024-05-08T03:00:00.000000000', '2024-05-08T06:00:00.000000000', '2024-05-08T09:00:00.000000000', '2024-05-08T12:00:00.000000000', '2024-05-08T15:00:00.000000000', '2024-05-08T18:00:00.000000000', '2024-05-08T21:00:00.000000000', '2024-05-09T00:00:00.000000000', '2024-05-09T03:00:00.000000000', '2024-05-09T06:00:00.000000000', '2024-05-09T09:00:00.000000000', '2024-05-09T12:00:00.000000000', '2024-05-09T15:00:00.000000000', '2024-05-09T18:00:00.000000000', '2024-05-09T21:00:00.000000000', '2024-05-10T00:00:00.000000000', '2024-05-10T03:00:00.000000000', '2024-05-10T06:00:00.000000000', '2024-05-10T09:00:00.000000000', '2024-05-10T12:00:00.000000000', '2024-05-10T15:00:00.000000000', '2024-05-10T18:00:00.000000000', '2024-05-10T21:00:00.000000000', '2024-05-11T00:00:00.000000000', '2024-05-11T03:00:00.000000000', '2024-05-11T06:00:00.000000000', '2024-05-11T09:00:00.000000000', '2024-05-11T12:00:00.000000000', '2024-05-11T15:00:00.000000000', '2024-05-11T18:00:00.000000000', '2024-05-11T21:00:00.000000000', '2024-05-12T00:00:00.000000000', '2024-05-12T03:00:00.000000000', '2024-05-12T06:00:00.000000000', '2024-05-12T09:00:00.000000000', '2024-05-12T12:00:00.000000000', '2024-05-12T15:00:00.000000000', '2024-05-12T18:00:00.000000000', '2024-05-12T21:00:00.000000000', '2024-05-13T00:00:00.000000000', '2024-05-13T03:00:00.000000000', '2024-05-13T06:00:00.000000000', '2024-05-13T09:00:00.000000000', '2024-05-13T12:00:00.000000000', '2024-05-13T15:00:00.000000000', '2024-05-13T18:00:00.000000000', '2024-05-13T21:00:00.000000000', '2024-05-14T00:00:00.000000000', '2024-05-14T03:00:00.000000000', '2024-05-14T06:00:00.000000000', '2024-05-14T09:00:00.000000000', '2024-05-14T12:00:00.000000000', '2024-05-14T15:00:00.000000000', '2024-05-14T18:00:00.000000000', '2024-05-14T21:00:00.000000000', '2024-05-15T00:00:00.000000000', '2024-05-15T03:00:00.000000000', '2024-05-15T06:00:00.000000000', '2024-05-15T09:00:00.000000000', '2024-05-15T12:00:00.000000000', '2024-05-15T15:00:00.000000000', '2024-05-15T18:00:00.000000000'], dtype='datetime64[ns]')
- potential_vorticity_surface(potential_vorticity_surface)float32-2e-06 2e-06
- units :
- K m2 kg-1 s-1
- long_name :
- Potential vorticity surface
- positive :
- up
- Grib_level_type :
- 109
- _CoordinateAxisType :
- GeoZ
- _CoordinateZisPositive :
- up
array([-2.e-06, 2.e-06], dtype=float32)
- altitude_above_msl1(altitude_above_msl1)float3210.0
- units :
- m
- long_name :
- Specific altitude above mean sea level
- positive :
- up
- Grib_level_type :
- 102
- datum :
- mean sea level
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
array([10.], dtype=float32)
- sigma(sigma)float320.995
- units :
- sigma
- long_name :
- Sigma level
- positive :
- down
- Grib_level_type :
- 104
- _CoordinateAxisType :
- GeoZ
- _CoordinateZisPositive :
- down
array([0.995], dtype=float32)
- height_above_ground(height_above_ground)float3280.0
- units :
- m
- long_name :
- Specified height level above ground
- positive :
- up
- Grib_level_type :
- 103
- datum :
- ground
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
array([80.], dtype=float32)
- height_above_ground5(height_above_ground5)float322.0 80.0
- units :
- m
- long_name :
- Specified height level above ground
- positive :
- up
- Grib_level_type :
- 103
- datum :
- ground
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
array([ 2., 80.], dtype=float32)
- altitude_above_msl(altitude_above_msl)float321.829e+03 2.743e+03 3.658e+03
- units :
- m
- long_name :
- Specific altitude above mean sea level
- positive :
- up
- Grib_level_type :
- 102
- datum :
- mean sea level
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
array([1829., 2743., 3658.], dtype=float32)
- height_above_ground3(height_above_ground3)float322.0 80.0 100.0
- units :
- m
- long_name :
- Specified height level above ground
- positive :
- up
- Grib_level_type :
- 103
- datum :
- ground
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
array([ 2., 80., 100.], dtype=float32)
- hybrid1(hybrid1)float321.0 2.0
- units :
- sigma
- long_name :
- Hybrid level
- positive :
- down
- Grib_level_type :
- 105
- _CoordinateAxisType :
- GeoZ
- _CoordinateZisPositive :
- down
array([1., 2.], dtype=float32)
- height_above_ground1(height_above_ground1)float321e+03 4e+03
- units :
- m
- long_name :
- Specified height level above ground
- positive :
- up
- Grib_level_type :
- 103
- datum :
- ground
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
array([1000., 4000.], dtype=float32)
- height_above_ground2(height_above_ground2)float3210.0 20.0 30.0 40.0 50.0 80.0 100.0
- units :
- m
- long_name :
- Specified height level above ground
- positive :
- up
- Grib_level_type :
- 103
- datum :
- ground
- _CoordinateAxisType :
- Height
- _CoordinateZisPositive :
- up
array([ 10., 20., 30., 40., 50., 80., 100.], dtype=float32)
- LatLon_Projection()int32...
- grid_mapping_name :
- latitude_longitude
- earth_radius :
- 6371229.0
- _CoordinateTransformType :
- Projection
- _CoordinateAxisTypes :
- Lat Lon
[1 values with dtype=int32]
- time_bounds(time, time_bounds_1)datetime64[ns]...
- long_name :
- bounds for time
[508 values with dtype=datetime64[ns]]
- time2_bounds(time2, time2_bounds_1)datetime64[ns]...
- long_name :
- bounds for time2
[256 values with dtype=datetime64[ns]]
- pressure_difference_layer_bounds(pressure_difference_layer, pressure_difference_layer_bounds_1)float32...
- units :
- Pa
- long_name :
- bounds for pressure_difference_layer
[2 values with dtype=float32]
- height_above_ground_layer_bounds(height_above_ground_layer, height_above_ground_layer_bounds_1)float32...
- units :
- m
- long_name :
- bounds for height_above_ground_layer
[2 values with dtype=float32]
- height_above_ground_layer1_bounds(height_above_ground_layer1, height_above_ground_layer1_bounds_1)float32...
- units :
- m
- long_name :
- bounds for height_above_ground_layer1
[2 values with dtype=float32]
- pressure_difference_layer1_bounds(pressure_difference_layer1, pressure_difference_layer1_bounds_1)float32...
- units :
- Pa
- long_name :
- bounds for pressure_difference_layer1
[6 values with dtype=float32]
- pressure_difference_layer2_bounds(pressure_difference_layer2, pressure_difference_layer2_bounds_1)float32...
- units :
- Pa
- long_name :
- bounds for pressure_difference_layer2
[2 values with dtype=float32]
- sigma_layer_bounds(sigma_layer, sigma_layer_bounds_1)float32...
- units :
- sigma
- long_name :
- bounds for sigma_layer
[8 values with dtype=float32]
- depth_below_surface_layer_bounds(depth_below_surface_layer, depth_below_surface_layer_bounds_1)float32...
- units :
- m
- long_name :
- bounds for depth_below_surface_layer
[8 values with dtype=float32]
- Absolute_vorticity_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- Absolute vorticity @ Isobaric surface
- units :
- 1/s
- abbreviation :
- ABSV
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-10_L100
- Grib2_Parameter :
- [ 0 2 10]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Absolute vorticity
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- Albedo_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Albedo (Mixed_intervals Average) @ Ground or water surface
- units :
- %
- abbreviation :
- ALBDO
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-19-1_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 19 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Physical atmospheric Properties
- Grib2_Parameter_Name :
- Albedo
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Apparent_temperature_height_above_ground(time1, height_above_ground4, lat, lon)float32...
- long_name :
- Apparent temperature @ Specified height level above ground
- units :
- K
- abbreviation :
- APTMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-21_L103
- Grib2_Parameter :
- [ 0 0 21]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Apparent temperature
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Cloud_mixing_ratio_isobaric(time1, isobaric1, lat, lon)float32...
- long_name :
- Cloud mixing ratio @ Isobaric surface
- units :
- kg/kg
- abbreviation :
- CLWMR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-22_L100
- Grib2_Parameter :
- [ 0 1 22]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Cloud mixing ratio
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[2946525120 values with dtype=float32]
- Cloud_mixing_ratio_hybrid(time1, hybrid, lat, lon)float32...
- long_name :
- Cloud mixing ratio @ Hybrid level
- units :
- kg/kg
- abbreviation :
- CLWMR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-22_L105
- Grib2_Parameter :
- [ 0 1 22]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Cloud mixing ratio
- Grib2_Level_Type :
- 105
- Grib2_Level_Desc :
- Hybrid level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Cloud_water_entire_atmosphere_single_layer(time1, lat, lon)float32...
- long_name :
- Cloud water @ Entire atmosphere layer
- units :
- kg.m-2
- abbreviation :
- CWAT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-6-6_L200
- Grib2_Parameter :
- [0 6 6]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Cloud water
- Grib2_Level_Type :
- 200
- Grib2_Level_Desc :
- Entire atmosphere layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Convective_available_potential_energy_pressure_difference_layer(time1, pressure_difference_layer1, lat, lon)float32...
- long_name :
- Convective available potential energy @ Level at specified pressure difference from ground to level layer
- units :
- J/kg
- abbreviation :
- CAPE
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-7-6_L108_layer
- Grib2_Parameter :
- [0 7 6]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Thermodynamic stability indices
- Grib2_Parameter_Name :
- Convective available potential energy
- Grib2_Level_Type :
- 108
- Grib2_Level_Desc :
- Level at specified pressure difference from ground to level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[401798880 values with dtype=float32]
- Convective_available_potential_energy_surface(time1, lat, lon)float32...
- long_name :
- Convective available potential energy @ Ground or water surface
- units :
- J/kg
- abbreviation :
- CAPE
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-7-6_L1
- Grib2_Parameter :
- [0 7 6]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Thermodynamic stability indices
- Grib2_Parameter_Name :
- Convective available potential energy
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Convective_inhibition_pressure_difference_layer(time1, pressure_difference_layer1, lat, lon)float32...
- long_name :
- Convective inhibition @ Level at specified pressure difference from ground to level layer
- units :
- J/kg
- abbreviation :
- CIN
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-7-7_L108_layer
- Grib2_Parameter :
- [0 7 7]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Thermodynamic stability indices
- Grib2_Parameter_Name :
- Convective inhibition
- Grib2_Level_Type :
- 108
- Grib2_Level_Desc :
- Level at specified pressure difference from ground to level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[401798880 values with dtype=float32]
- Convective_inhibition_surface(time1, lat, lon)float32...
- long_name :
- Convective inhibition @ Ground or water surface
- units :
- J/kg
- abbreviation :
- CIN
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-7-7_L1
- Grib2_Parameter :
- [0 7 7]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Thermodynamic stability indices
- Grib2_Parameter_Name :
- Convective inhibition
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Convective_precipitation_surface_Mixed_intervals_Accumulation(time, lat, lon)float32...
- long_name :
- Convective precipitation (Mixed_intervals Accumulation) @ Ground or water surface
- units :
- kg.m-2
- abbreviation :
- ACPCP
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Accumulation
- Grib_Variable_Id :
- VAR_0-1-10_L1_Imixed_S1
- Grib2_Parameter :
- [ 0 1 10]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Convective precipitation
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Accumulation
[263712960 values with dtype=float32]
- Convective_precipitation_rate_surface(time3, lat, lon)float32...
- long_name :
- Convective precipitation rate @ Ground or water surface
- units :
- kg.m-2.s-1
- abbreviation :
- CPRAT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-37_L1
- Grib2_Parameter :
- [ 0 1 37]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Convective precipitation rate
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[132894720 values with dtype=float32]
- Dewpoint_temperature_height_above_ground(time1, height_above_ground4, lat, lon)float32...
- long_name :
- Dewpoint temperature @ Specified height level above ground
- units :
- K
- abbreviation :
- DPT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-6_L103
- Grib2_Parameter :
- [0 0 6]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Dewpoint temperature
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Geopotential_height_potential_vorticity_surface(time1, potential_vorticity_surface, lat, lon)float32...
- long_name :
- Geopotential height @ Potential vorticity surface
- units :
- gpm
- abbreviation :
- HGT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-5_L109
- Grib2_Parameter :
- [0 3 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Geopotential height
- Grib2_Level_Type :
- 109
- Grib2_Level_Desc :
- Potential vorticity surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[267865920 values with dtype=float32]
- Geopotential_height_surface(time1, lat, lon)float32...
- long_name :
- Geopotential height @ Ground or water surface
- units :
- gpm
- abbreviation :
- HGT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-5_L1
- Grib2_Parameter :
- [0 3 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Geopotential height
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Geopotential_height_highest_tropospheric_freezing(time1, lat, lon)float32...
- long_name :
- Geopotential height @ Highest tropospheric freezing level
- units :
- gpm
- abbreviation :
- HGT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-5_L204
- Grib2_Parameter :
- [0 3 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Geopotential height
- Grib2_Level_Type :
- 204
- Grib2_Level_Desc :
- Highest tropospheric freezing level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Geopotential_height_cloud_ceiling(time1, lat, lon)float32...
- long_name :
- Geopotential height @ Cloud ceiling
- units :
- gpm
- abbreviation :
- HGT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-5_L215
- Grib2_Parameter :
- [0 3 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Geopotential height
- Grib2_Level_Type :
- 215
- Grib2_Level_Desc :
- Cloud ceiling
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Geopotential_height_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- Geopotential height @ Isobaric surface
- units :
- gpm
- abbreviation :
- HGT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-5_L100
- Grib2_Parameter :
- [0 3 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Geopotential height
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- Geopotential_height_zeroDegC_isotherm(time1, lat, lon)float32...
- long_name :
- Geopotential height @ Level of 0 °C isotherm
- units :
- gpm
- abbreviation :
- HGT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-5_L4
- Grib2_Parameter :
- [0 3 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Geopotential height
- Grib2_Level_Type :
- 4
- Grib2_Level_Desc :
- Level of 0 °C isotherm
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Geopotential_height_maximum_wind(time1, lat, lon)float32...
- long_name :
- Geopotential height @ Maximum wind level
- units :
- gpm
- abbreviation :
- HGT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-5_L6
- Grib2_Parameter :
- [0 3 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Geopotential height
- Grib2_Level_Type :
- 6
- Grib2_Level_Desc :
- Maximum wind level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Geopotential_height_tropopause(time1, lat, lon)float32...
- long_name :
- Geopotential height @ Tropopause
- units :
- gpm
- abbreviation :
- HGT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-5_L7
- Grib2_Parameter :
- [0 3 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Geopotential height
- Grib2_Level_Type :
- 7
- Grib2_Level_Desc :
- Tropopause
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Graupel_snow_pellets_isobaric(time1, isobaric1, lat, lon)float32...
- long_name :
- Graupel (snow pellets) @ Isobaric surface
- units :
- kg/kg
- abbreviation :
- GRLE
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-32_L100
- Grib2_Parameter :
- [ 0 1 32]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Graupel (snow pellets)
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[2946525120 values with dtype=float32]
- Graupel_snow_pellets_hybrid(time1, hybrid, lat, lon)float32...
- long_name :
- Graupel (snow pellets) @ Hybrid level
- units :
- kg/kg
- abbreviation :
- GRLE
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-32_L105
- Grib2_Parameter :
- [ 0 1 32]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Graupel (snow pellets)
- Grib2_Level_Type :
- 105
- Grib2_Level_Desc :
- Hybrid level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Haines_index_surface(time1, lat, lon)float32...
- long_name :
- Haines index @ Ground or water surface
- units :
- abbreviation :
- HINDEX
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-4-2_L1
- Grib2_Parameter :
- [2 4 2]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Fire Weather Products
- Grib2_Parameter_Name :
- Haines index
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- High_cloud_cover_high_cloud(time1, lat, lon)float32...
- long_name :
- High cloud cover @ High cloud layer
- units :
- %
- abbreviation :
- HCDC
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-6-5_L234
- Grib2_Parameter :
- [0 6 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- High cloud cover
- Grib2_Level_Type :
- 234
- Grib2_Level_Desc :
- High cloud layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- High_cloud_cover_high_cloud_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- High cloud cover (Mixed_intervals Average) @ High cloud layer
- units :
- %
- abbreviation :
- HCDC
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-6-5_L234_Imixed_S0
- Grib2_Parameter :
- [0 6 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- High cloud cover
- Grib2_Level_Type :
- 234
- Grib2_Level_Desc :
- High cloud layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- ICAO_Standard_Atmosphere_Reference_Height_maximum_wind(time1, lat, lon)float32...
- long_name :
- ICAO Standard Atmosphere Reference Height @ Maximum wind level
- units :
- m
- abbreviation :
- ICAHT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-3_L6
- Grib2_Parameter :
- [0 3 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- ICAO Standard Atmosphere Reference Height
- Grib2_Level_Type :
- 6
- Grib2_Level_Desc :
- Maximum wind level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- ICAO_Standard_Atmosphere_Reference_Height_tropopause(time1, lat, lon)float32...
- long_name :
- ICAO Standard Atmosphere Reference Height @ Tropopause
- units :
- m
- abbreviation :
- ICAHT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-3_L7
- Grib2_Parameter :
- [0 3 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- ICAO Standard Atmosphere Reference Height
- Grib2_Level_Type :
- 7
- Grib2_Level_Desc :
- Tropopause
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Ice_cover_surface(time1, lat, lon)float32...
- long_name :
- Ice cover @ Ground or water surface
- units :
- abbreviation :
- ICEC
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_10-2-0_L1
- Grib2_Parameter :
- [10 2 0]
- Grib2_Parameter_Discipline :
- Oceanographic products
- Grib2_Parameter_Category :
- Ice
- Grib2_Parameter_Name :
- Ice cover
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Ice_growth_rate_altitude_above_msl(time1, altitude_above_msl1, lat, lon)float32...
- long_name :
- Ice growth rate @ Specific altitude above mean sea level
- units :
- m/s
- abbreviation :
- ICEG
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_10-2-6_L102
- Grib2_Parameter :
- [10 2 6]
- Grib2_Parameter_Discipline :
- Oceanographic products
- Grib2_Parameter_Category :
- Ice
- Grib2_Parameter_Name :
- Ice growth rate
- Grib2_Level_Type :
- 102
- Grib2_Level_Desc :
- Specific altitude above mean sea level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Ice_temperature_surface(time1, lat, lon)float32...
- long_name :
- Ice temperature @ Ground or water surface
- units :
- K
- abbreviation :
- ICETMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_10-2-8_L1
- Grib2_Parameter :
- [10 2 8]
- Grib2_Parameter_Discipline :
- Oceanographic products
- Grib2_Parameter_Category :
- Ice
- Grib2_Parameter_Name :
- Ice temperature
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Ice_thickness_surface(time1, lat, lon)float32...
- long_name :
- Ice thickness @ Ground or water surface
- units :
- m
- abbreviation :
- ICETK
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_10-2-1_L1
- Grib2_Parameter :
- [10 2 1]
- Grib2_Parameter_Discipline :
- Oceanographic products
- Grib2_Parameter_Category :
- Ice
- Grib2_Parameter_Name :
- Ice thickness
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Ice_water_mixing_ratio_isobaric(time1, isobaric1, lat, lon)float32...
- long_name :
- Ice water mixing ratio @ Isobaric surface
- units :
- kg/kg
- abbreviation :
- ICMR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-23_L100
- Grib2_Parameter :
- [ 0 1 23]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Ice water mixing ratio
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[2946525120 values with dtype=float32]
- Ice_water_mixing_ratio_hybrid(time1, hybrid, lat, lon)float32...
- long_name :
- Ice water mixing ratio @ Hybrid level
- units :
- kg/kg
- abbreviation :
- ICMR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-23_L105
- Grib2_Parameter :
- [ 0 1 23]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Ice water mixing ratio
- Grib2_Level_Type :
- 105
- Grib2_Level_Desc :
- Hybrid level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Land_cover_0__sea_1__land_surface(time1, lat, lon)float32...
- long_name :
- Land cover (0 = sea, 1 = land) @ Ground or water surface
- units :
- abbreviation :
- LAND
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-0-0_L1
- Grib2_Parameter :
- [2 0 0]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Vegetation/Biomass
- Grib2_Parameter_Name :
- Land cover (0 = sea, 1 = land)
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Latent_heat_net_flux_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Latent heat net flux (Mixed_intervals Average) @ Ground or water surface
- units :
- W.m-2
- abbreviation :
- LHTFL
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-0-10_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 0 10]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Latent heat net flux
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Low_cloud_cover_low_cloud_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Low cloud cover (Mixed_intervals Average) @ Low cloud layer
- units :
- %
- abbreviation :
- LCDC
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-6-3_L214_Imixed_S0
- Grib2_Parameter :
- [0 6 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Low cloud cover
- Grib2_Level_Type :
- 214
- Grib2_Level_Desc :
- Low cloud layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Low_cloud_cover_low_cloud(time1, lat, lon)float32...
- long_name :
- Low cloud cover @ Low cloud layer
- units :
- %
- abbreviation :
- LCDC
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-6-3_L214
- Grib2_Parameter :
- [0 6 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Low cloud cover
- Grib2_Level_Type :
- 214
- Grib2_Level_Desc :
- Low cloud layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Maximum_temperature_height_above_ground_Mixed_intervals_Maximum(time2, height_above_ground4, lat, lon)float32...
- long_name :
- Maximum temperature (Mixed_intervals Maximum) @ Specified height level above ground
- units :
- K
- abbreviation :
- TMAX
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Maximum
- Grib_Variable_Id :
- VAR_0-0-4_L103_Imixed_S2
- Grib2_Parameter :
- [0 0 4]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Maximum temperature
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Maximum
[132894720 values with dtype=float32]
- Medium_cloud_cover_middle_cloud(time1, lat, lon)float32...
- long_name :
- Medium cloud cover @ Middle cloud layer
- units :
- %
- abbreviation :
- MCDC
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-6-4_L224
- Grib2_Parameter :
- [0 6 4]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Medium cloud cover
- Grib2_Level_Type :
- 224
- Grib2_Level_Desc :
- Middle cloud layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Medium_cloud_cover_middle_cloud_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Medium cloud cover (Mixed_intervals Average) @ Middle cloud layer
- units :
- %
- abbreviation :
- MCDC
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-6-4_L224_Imixed_S0
- Grib2_Parameter :
- [0 6 4]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Medium cloud cover
- Grib2_Level_Type :
- 224
- Grib2_Level_Desc :
- Middle cloud layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Minimum_temperature_height_above_ground_Mixed_intervals_Minimum(time2, height_above_ground4, lat, lon)float32...
- long_name :
- Minimum temperature (Mixed_intervals Minimum) @ Specified height level above ground
- units :
- K
- abbreviation :
- TMIN
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Minimum
- Grib_Variable_Id :
- VAR_0-0-5_L103_Imixed_S3
- Grib2_Parameter :
- [0 0 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Minimum temperature
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Minimum
[132894720 values with dtype=float32]
- Momentum_flux_u-component_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Momentum flux, u-component (Mixed_intervals Average) @ Ground or water surface
- units :
- N.m-2
- abbreviation :
- UFLX
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-2-17_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 2 17]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Momentum flux, u-component
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Momentum_flux_v-component_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Momentum flux, v-component (Mixed_intervals Average) @ Ground or water surface
- units :
- N.m-2
- abbreviation :
- VFLX
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-2-18_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 2 18]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Momentum flux, v-component
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Per_cent_frozen_precipitation_surface(time1, lat, lon)float32...
- long_name :
- Per cent frozen precipitation @ Ground or water surface
- units :
- %
- abbreviation :
- CPOFP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-39_L1
- Grib2_Parameter :
- [ 0 1 39]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Per cent frozen precipitation
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Potential_temperature_sigma(time1, sigma, lat, lon)float32...
- long_name :
- Potential temperature @ Sigma level
- units :
- K
- abbreviation :
- POT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-2_L104
- Grib2_Parameter :
- [0 0 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Potential temperature
- Grib2_Level_Type :
- 104
- Grib2_Level_Desc :
- Sigma level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Precipitable_water_entire_atmosphere_single_layer(time1, lat, lon)float32...
- long_name :
- Precipitable water @ Entire atmosphere layer
- units :
- kg.m-2
- abbreviation :
- PWAT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-3_L200
- Grib2_Parameter :
- [0 1 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Precipitable water
- Grib2_Level_Type :
- 200
- Grib2_Level_Desc :
- Entire atmosphere layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Precipitation_rate_surface(time1, lat, lon)float32...
- long_name :
- Precipitation rate @ Ground or water surface
- units :
- kg.m-2.s-1
- abbreviation :
- PRATE
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-7_L1
- Grib2_Parameter :
- [0 1 7]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Precipitation rate
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Precipitation_rate_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Precipitation rate (Mixed_intervals Average) @ Ground or water surface
- units :
- kg.m-2.s-1
- abbreviation :
- PRATE
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-1-7_L1_Imixed_S0
- Grib2_Parameter :
- [0 1 7]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Precipitation rate
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Pressure_high_cloud_bottom_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Pressure (Mixed_intervals Average) @ High cloud bottom level
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-3-0_L232_Imixed_S0
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 232
- Grib2_Level_Desc :
- High cloud bottom level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Pressure_low_cloud_bottom_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Pressure (Mixed_intervals Average) @ Low cloud bottom level
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-3-0_L212_Imixed_S0
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 212
- Grib2_Level_Desc :
- Low cloud bottom level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Pressure_middle_cloud_bottom_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Pressure (Mixed_intervals Average) @ Middle cloud bottom level
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-3-0_L222_Imixed_S0
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 222
- Grib2_Level_Desc :
- Middle cloud bottom level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Pressure_low_cloud_top_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Pressure (Mixed_intervals Average) @ Low cloud top level
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-3-0_L213_Imixed_S0
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 213
- Grib2_Level_Desc :
- Low cloud top level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Pressure_high_cloud_top_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Pressure (Mixed_intervals Average) @ High cloud top level
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-3-0_L233_Imixed_S0
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 233
- Grib2_Level_Desc :
- High cloud top level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Pressure_middle_cloud_top_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Pressure (Mixed_intervals Average) @ Middle cloud top level
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-3-0_L223_Imixed_S0
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 223
- Grib2_Level_Desc :
- Middle cloud top level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Pressure_potential_vorticity_surface(time1, potential_vorticity_surface, lat, lon)float32...
- long_name :
- Pressure @ Potential vorticity surface
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-0_L109
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 109
- Grib2_Level_Desc :
- Potential vorticity surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[267865920 values with dtype=float32]
- Pressure_surface(time1, lat, lon)float32...
- long_name :
- Pressure @ Ground or water surface
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-0_L1
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Pressure_maximum_wind(time1, lat, lon)float32...
- long_name :
- Pressure @ Maximum wind level
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-0_L6
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 6
- Grib2_Level_Desc :
- Maximum wind level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Pressure_tropopause(time1, lat, lon)float32...
- long_name :
- Pressure @ Tropopause
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-0_L7
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 7
- Grib2_Level_Desc :
- Tropopause
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Pressure_height_above_ground(time1, height_above_ground, lat, lon)float32...
- long_name :
- Pressure @ Specified height level above ground
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-0_L103
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Pressure_convective_cloud_top(time3, lat, lon)float32...
- long_name :
- Pressure @ Convective cloud top level
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-0_L243
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 243
- Grib2_Level_Desc :
- Convective cloud top level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[132894720 values with dtype=float32]
- Pressure_convective_cloud_bottom(time3, lat, lon)float32...
- long_name :
- Pressure @ Convective cloud bottom level
- units :
- Pa
- abbreviation :
- PRES
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-0_L242
- Grib2_Parameter :
- [0 3 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure
- Grib2_Level_Type :
- 242
- Grib2_Level_Desc :
- Convective cloud bottom level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[132894720 values with dtype=float32]
- Pressure_reduced_to_MSL_msl(time1, lat, lon)float32...
- long_name :
- Pressure reduced to MSL @ Mean sea level
- units :
- Pa
- abbreviation :
- PRMSL
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-1_L101
- Grib2_Parameter :
- [0 3 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure reduced to MSL
- Grib2_Level_Type :
- 101
- Grib2_Level_Desc :
- Mean sea level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Rain_mixing_ratio_isobaric(time1, isobaric1, lat, lon)float32...
- long_name :
- Rain mixing ratio @ Isobaric surface
- units :
- kg/kg
- abbreviation :
- RWMR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-24_L100
- Grib2_Parameter :
- [ 0 1 24]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Rain mixing ratio
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[2946525120 values with dtype=float32]
- Rain_mixing_ratio_hybrid(time1, hybrid, lat, lon)float32...
- long_name :
- Rain mixing ratio @ Hybrid level
- units :
- kg/kg
- abbreviation :
- RWMR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-24_L105
- Grib2_Parameter :
- [ 0 1 24]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Rain mixing ratio
- Grib2_Level_Type :
- 105
- Grib2_Level_Desc :
- Hybrid level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Relative_humidity_sigma_layer(time1, sigma_layer, lat, lon)float32...
- long_name :
- Relative humidity @ Sigma level layer
- units :
- %
- abbreviation :
- RH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-1_L104_layer
- Grib2_Parameter :
- [0 1 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Relative humidity
- Grib2_Level_Type :
- 104
- Grib2_Level_Desc :
- Sigma level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[535731840 values with dtype=float32]
- Relative_humidity_pressure_difference_layer(time1, pressure_difference_layer2, lat, lon)float32...
- long_name :
- Relative humidity @ Level at specified pressure difference from ground to level layer
- units :
- %
- abbreviation :
- RH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-1_L108_layer
- Grib2_Parameter :
- [0 1 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Relative humidity
- Grib2_Level_Type :
- 108
- Grib2_Level_Desc :
- Level at specified pressure difference from ground to level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Relative_humidity_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- Relative humidity @ Isobaric surface
- units :
- %
- abbreviation :
- RH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-1_L100
- Grib2_Parameter :
- [0 1 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Relative humidity
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- Relative_humidity_zeroDegC_isotherm(time1, lat, lon)float32...
- long_name :
- Relative humidity @ Level of 0 °C isotherm
- units :
- %
- abbreviation :
- RH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-1_L4
- Grib2_Parameter :
- [0 1 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Relative humidity
- Grib2_Level_Type :
- 4
- Grib2_Level_Desc :
- Level of 0 °C isotherm
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Relative_humidity_height_above_ground(time1, height_above_ground4, lat, lon)float32...
- long_name :
- Relative humidity @ Specified height level above ground
- units :
- %
- abbreviation :
- RH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-1_L103
- Grib2_Parameter :
- [0 1 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Relative humidity
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Relative_humidity_sigma(time1, sigma, lat, lon)float32...
- long_name :
- Relative humidity @ Sigma level
- units :
- %
- abbreviation :
- RH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-1_L104
- Grib2_Parameter :
- [0 1 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Relative humidity
- Grib2_Level_Type :
- 104
- Grib2_Level_Desc :
- Sigma level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Relative_humidity_highest_tropospheric_freezing(time1, lat, lon)float32...
- long_name :
- Relative humidity @ Highest tropospheric freezing level
- units :
- %
- abbreviation :
- RH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-1_L204
- Grib2_Parameter :
- [0 1 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Relative humidity
- Grib2_Level_Type :
- 204
- Grib2_Level_Desc :
- Highest tropospheric freezing level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Relative_humidity_entire_atmosphere_single_layer(time1, lat, lon)float32...
- long_name :
- Relative humidity @ Entire atmosphere layer
- units :
- %
- abbreviation :
- RH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-1_L200
- Grib2_Parameter :
- [0 1 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Relative humidity
- Grib2_Level_Type :
- 200
- Grib2_Level_Desc :
- Entire atmosphere layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Sensible_heat_net_flux_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Sensible heat net flux (Mixed_intervals Average) @ Ground or water surface
- units :
- W.m-2
- abbreviation :
- SHTFL
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-0-11_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 0 11]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Sensible heat net flux
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Snow_depth_surface(time1, lat, lon)float32...
- long_name :
- Snow depth @ Ground or water surface
- units :
- m
- abbreviation :
- SNOD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-11_L1
- Grib2_Parameter :
- [ 0 1 11]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Snow depth
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Snow_mixing_ratio_isobaric(time1, isobaric1, lat, lon)float32...
- long_name :
- Snow mixing ratio @ Isobaric surface
- units :
- kg/kg
- abbreviation :
- SNMR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-25_L100
- Grib2_Parameter :
- [ 0 1 25]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Snow mixing ratio
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[2946525120 values with dtype=float32]
- Snow_mixing_ratio_hybrid(time1, hybrid, lat, lon)float32...
- long_name :
- Snow mixing ratio @ Hybrid level
- units :
- kg/kg
- abbreviation :
- SNMR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-25_L105
- Grib2_Parameter :
- [ 0 1 25]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Snow mixing ratio
- Grib2_Level_Type :
- 105
- Grib2_Level_Desc :
- Hybrid level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Soil_temperature_depth_below_surface_layer(time1, depth_below_surface_layer, lat, lon)float32...
- long_name :
- Soil temperature @ Depth below land surface layer
- units :
- K
- abbreviation :
- TSOIL
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-0-2_L106_layer
- Grib2_Parameter :
- [2 0 2]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Vegetation/Biomass
- Grib2_Parameter_Name :
- Soil temperature
- Grib2_Level_Type :
- 106
- Grib2_Level_Desc :
- Depth below land surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[535731840 values with dtype=float32]
- Soil_type_surface(time1, lat, lon)float32...
- long_name :
- Soil type @ Ground or water surface
- units :
- (Code table 4.213)
- abbreviation :
- SOTYP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-3-0_L1
- Grib2_Parameter :
- [2 3 0]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Soil Products
- Grib2_Parameter_Name :
- Soil type
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Specific_humidity_pressure_difference_layer(time1, pressure_difference_layer2, lat, lon)float32...
- long_name :
- Specific humidity @ Level at specified pressure difference from ground to level layer
- units :
- kg/kg
- abbreviation :
- SPFH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-0_L108_layer
- Grib2_Parameter :
- [0 1 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Specific humidity
- Grib2_Level_Type :
- 108
- Grib2_Level_Desc :
- Level at specified pressure difference from ground to level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Specific_humidity_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- Specific humidity @ Isobaric surface
- units :
- kg/kg
- abbreviation :
- SPFH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-0_L100
- Grib2_Parameter :
- [0 1 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Specific humidity
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- Specific_humidity_height_above_ground(time1, height_above_ground5, lat, lon)float32...
- long_name :
- Specific humidity @ Specified height level above ground
- units :
- kg/kg
- abbreviation :
- SPFH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-0_L103
- Grib2_Parameter :
- [0 1 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Specific humidity
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[267865920 values with dtype=float32]
- Storm_relative_helicity_height_above_ground_layer(time1, height_above_ground_layer, lat, lon)float32...
- long_name :
- Storm relative helicity @ Specified height level above ground layer
- units :
- J/kg
- abbreviation :
- HLCY
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-7-8_L103_layer
- Grib2_Parameter :
- [0 7 8]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Thermodynamic stability indices
- Grib2_Parameter_Name :
- Storm relative helicity
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Surface_roughness_surface(time1, lat, lon)float32...
- long_name :
- Surface roughness @ Ground or water surface
- units :
- m
- abbreviation :
- SFCR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-0-1_L1
- Grib2_Parameter :
- [2 0 1]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Vegetation/Biomass
- Grib2_Parameter_Name :
- Surface roughness
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Temperature_low_cloud_top_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Temperature (Mixed_intervals Average) @ Low cloud top level
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-0-0_L213_Imixed_S0
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 213
- Grib2_Level_Desc :
- Low cloud top level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Temperature_high_cloud_top_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Temperature (Mixed_intervals Average) @ High cloud top level
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-0-0_L233_Imixed_S0
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 233
- Grib2_Level_Desc :
- High cloud top level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Temperature_middle_cloud_top_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Temperature (Mixed_intervals Average) @ Middle cloud top level
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-0-0_L223_Imixed_S0
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 223
- Grib2_Level_Desc :
- Middle cloud top level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Temperature_potential_vorticity_surface(time1, potential_vorticity_surface, lat, lon)float32...
- long_name :
- Temperature @ Potential vorticity surface
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-0_L109
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 109
- Grib2_Level_Desc :
- Potential vorticity surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[267865920 values with dtype=float32]
- Temperature_surface(time1, lat, lon)float32...
- long_name :
- Temperature @ Ground or water surface
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-0_L1
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Temperature_pressure_difference_layer(time1, pressure_difference_layer2, lat, lon)float32...
- long_name :
- Temperature @ Level at specified pressure difference from ground to level layer
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-0_L108_layer
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 108
- Grib2_Level_Desc :
- Level at specified pressure difference from ground to level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Temperature_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- Temperature @ Isobaric surface
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-0_L100
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- Temperature_altitude_above_msl(time1, altitude_above_msl, lat, lon)float32...
- long_name :
- Temperature @ Specific altitude above mean sea level
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-0_L102
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 102
- Grib2_Level_Desc :
- Specific altitude above mean sea level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[401798880 values with dtype=float32]
- Temperature_maximum_wind(time1, lat, lon)float32...
- long_name :
- Temperature @ Maximum wind level
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-0_L6
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 6
- Grib2_Level_Desc :
- Maximum wind level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Temperature_height_above_ground(time1, height_above_ground3, lat, lon)float32...
- long_name :
- Temperature @ Specified height level above ground
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-0_L103
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[401798880 values with dtype=float32]
- Temperature_tropopause(time1, lat, lon)float32...
- long_name :
- Temperature @ Tropopause
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-0_L7
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 7
- Grib2_Level_Desc :
- Tropopause
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Temperature_sigma(time1, sigma, lat, lon)float32...
- long_name :
- Temperature @ Sigma level
- units :
- K
- abbreviation :
- TMP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-0-0_L104
- Grib2_Parameter :
- [0 0 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Temperature
- Grib2_Parameter_Name :
- Temperature
- Grib2_Level_Type :
- 104
- Grib2_Level_Desc :
- Sigma level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Total_cloud_cover_entire_atmosphere(time1, lat, lon)float32...
- long_name :
- Total cloud cover @ Entire atmosphere
- units :
- %
- abbreviation :
- TCDC
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-6-1_L10
- Grib2_Parameter :
- [0 6 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Total cloud cover
- Grib2_Level_Type :
- 10
- Grib2_Level_Desc :
- Entire atmosphere
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Total_cloud_cover_boundary_layer_cloud_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Total cloud cover (Mixed_intervals Average) @ Boundary layer cloud layer
- units :
- %
- abbreviation :
- TCDC
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-6-1_L211_Imixed_S0
- Grib2_Parameter :
- [0 6 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Total cloud cover
- Grib2_Level_Type :
- 211
- Grib2_Level_Desc :
- Boundary layer cloud layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Total_cloud_cover_isobaric(time1, isobaric1, lat, lon)float32...
- long_name :
- Total cloud cover @ Isobaric surface
- units :
- %
- abbreviation :
- TCDC
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-6-1_L100
- Grib2_Parameter :
- [0 6 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Total cloud cover
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[2946525120 values with dtype=float32]
- Total_cloud_cover_entire_atmosphere_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Total cloud cover (Mixed_intervals Average) @ Entire atmosphere
- units :
- %
- abbreviation :
- TCDC
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-6-1_L10_Imixed_S0
- Grib2_Parameter :
- [0 6 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Total cloud cover
- Grib2_Level_Type :
- 10
- Grib2_Level_Desc :
- Entire atmosphere
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Total_cloud_cover_convective_cloud(time3, lat, lon)float32...
- long_name :
- Total cloud cover @ Convective cloud layer
- units :
- %
- abbreviation :
- TCDC
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-6-1_L244
- Grib2_Parameter :
- [0 6 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Total cloud cover
- Grib2_Level_Type :
- 244
- Grib2_Level_Desc :
- Convective cloud layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[132894720 values with dtype=float32]
- Total_ozone_entire_atmosphere_single_layer(time1, lat, lon)float32...
- long_name :
- Total ozone @ Entire atmosphere layer
- units :
- DU
- abbreviation :
- TOZNE
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-14-0_L200
- Grib2_Parameter :
- [ 0 14 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Trace gases
- Grib2_Parameter_Name :
- Total ozone
- Grib2_Level_Type :
- 200
- Grib2_Level_Desc :
- Entire atmosphere layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Total_precipitation_surface_Mixed_intervals_Accumulation(time, lat, lon)float32...
- long_name :
- Total precipitation (Mixed_intervals Accumulation) @ Ground or water surface
- units :
- kg.m-2
- abbreviation :
- APCP
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Accumulation
- Grib_Variable_Id :
- VAR_0-1-8_L1_Imixed_S1
- Grib2_Parameter :
- [0 1 8]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Total precipitation
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Accumulation
[263712960 values with dtype=float32]
- Categorical_Rain_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Categorical Rain (Mixed_intervals Average) @ Ground or water surface
- units :
- Code table 4.222
- abbreviation :
- CRAIN
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-1-192_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 1 192]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Categorical Rain
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Categorical_Rain_surface(time1, lat, lon)float32...
- long_name :
- Categorical Rain @ Ground or water surface
- units :
- Code table 4.222
- abbreviation :
- CRAIN
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-192_L1
- Grib2_Parameter :
- [ 0 1 192]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Categorical Rain
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Categorical_Freezing_Rain_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Categorical Freezing Rain (Mixed_intervals Average) @ Ground or water surface
- units :
- Code table 4.222
- abbreviation :
- CFRZR
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-1-193_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 1 193]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Categorical Freezing Rain
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Categorical_Freezing_Rain_surface(time1, lat, lon)float32...
- long_name :
- Categorical Freezing Rain @ Ground or water surface
- units :
- Code table 4.222
- abbreviation :
- CFRZR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-193_L1
- Grib2_Parameter :
- [ 0 1 193]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Categorical Freezing Rain
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Categorical_Ice_Pellets_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Categorical Ice Pellets (Mixed_intervals Average) @ Ground or water surface
- units :
- Code table 4.222
- abbreviation :
- CICEP
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-1-194_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 1 194]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Categorical Ice Pellets
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Categorical_Ice_Pellets_surface(time1, lat, lon)float32...
- long_name :
- Categorical Ice Pellets @ Ground or water surface
- units :
- Code table 4.222
- abbreviation :
- CICEP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-194_L1
- Grib2_Parameter :
- [ 0 1 194]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Categorical Ice Pellets
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Categorical_Snow_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Categorical Snow (Mixed_intervals Average) @ Ground or water surface
- units :
- Code table 4.222
- abbreviation :
- CSNOW
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-1-195_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 1 195]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Categorical Snow
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Categorical_Snow_surface(time1, lat, lon)float32...
- long_name :
- Categorical Snow @ Ground or water surface
- units :
- Code table 4.222
- abbreviation :
- CSNOW
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-195_L1
- Grib2_Parameter :
- [ 0 1 195]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Categorical Snow
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Convective_Precipitation_Rate_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Convective Precipitation Rate (Mixed_intervals Average) @ Ground or water surface
- units :
- kg.m-2.s-1
- abbreviation :
- CPRAT
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-1-196_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 1 196]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Convective Precipitation Rate
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Potential_Evaporation_Rate_surface(time3, lat, lon)float32...
- long_name :
- Potential Evaporation Rate @ Ground or water surface
- units :
- W.m-2
- abbreviation :
- PEVPR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-200_L1
- Grib2_Parameter :
- [ 0 1 200]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Potential Evaporation Rate
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[132894720 values with dtype=float32]
- Ozone_Mixing_Ratio_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- Ozone Mixing Ratio @ Isobaric surface
- units :
- kg.kg-1
- abbreviation :
- O3MR
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-14-192_L100
- Grib2_Parameter :
- [ 0 14 192]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Trace gases
- Grib2_Parameter_Name :
- Ozone Mixing Ratio
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- Reflectivity_hybrid(time1, hybrid1, lat, lon)float32...
- long_name :
- Reflectivity @ Hybrid level
- units :
- dB
- abbreviation :
- REFD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-16-195_L105
- Grib2_Parameter :
- [ 0 16 195]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Forecast Radar Imagery
- Grib2_Parameter_Name :
- Reflectivity
- Grib2_Level_Type :
- 105
- Grib2_Level_Desc :
- Hybrid level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[267865920 values with dtype=float32]
- Reflectivity_height_above_ground(time1, height_above_ground1, lat, lon)float32...
- long_name :
- Reflectivity @ Specified height level above ground
- units :
- dB
- abbreviation :
- REFD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-16-195_L103
- Grib2_Parameter :
- [ 0 16 195]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Forecast Radar Imagery
- Grib2_Parameter_Name :
- Reflectivity
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[267865920 values with dtype=float32]
- Composite_reflectivity_entire_atmosphere(time1, lat, lon)float32...
- long_name :
- Composite reflectivity @ Entire atmosphere
- units :
- dB
- abbreviation :
- REFC
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-16-196_L10
- Grib2_Parameter :
- [ 0 16 196]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Forecast Radar Imagery
- Grib2_Parameter_Name :
- Composite reflectivity
- Grib2_Level_Type :
- 10
- Grib2_Level_Desc :
- Entire atmosphere
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Vertical_Speed_Shear_tropopause(time1, lat, lon)float32...
- long_name :
- Vertical Speed Shear @ Tropopause
- units :
- s-1
- abbreviation :
- VWSH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-192_L7
- Grib2_Parameter :
- [ 0 2 192]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Vertical Speed Shear
- Grib2_Level_Type :
- 7
- Grib2_Level_Desc :
- Tropopause
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Vertical_Speed_Shear_potential_vorticity_surface(time1, potential_vorticity_surface, lat, lon)float32...
- long_name :
- Vertical Speed Shear @ Potential vorticity surface
- units :
- s-1
- abbreviation :
- VWSH
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-192_L109
- Grib2_Parameter :
- [ 0 2 192]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Vertical Speed Shear
- Grib2_Level_Type :
- 109
- Grib2_Level_Desc :
- Potential vorticity surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[267865920 values with dtype=float32]
- U-Component_Storm_Motion_height_above_ground_layer(time1, height_above_ground_layer1, lat, lon)float32...
- long_name :
- U-Component Storm Motion @ Specified height level above ground layer
- units :
- m.s-1
- abbreviation :
- USTM
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-194_L103_layer
- Grib2_Parameter :
- [ 0 2 194]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- U-Component Storm Motion
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- V-Component_Storm_Motion_height_above_ground_layer(time1, height_above_ground_layer1, lat, lon)float32...
- long_name :
- V-Component Storm Motion @ Specified height level above ground layer
- units :
- m.s-1
- abbreviation :
- VSTM
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-195_L103_layer
- Grib2_Parameter :
- [ 0 2 195]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- V-Component Storm Motion
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Frictional_Velocity_surface(time1, lat, lon)float32...
- long_name :
- Frictional Velocity @ Ground or water surface
- units :
- m.s-1
- abbreviation :
- FRICV
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-197_L1
- Grib2_Parameter :
- [ 0 2 197]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Frictional Velocity
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Ventilation_Rate_planetary_boundary(time1, lat, lon)float32...
- long_name :
- Ventilation Rate @ Planetary Boundary Layer
- units :
- m2.s-1
- abbreviation :
- VRATE
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-224_L220
- Grib2_Parameter :
- [ 0 2 224]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Ventilation Rate
- Grib2_Level_Type :
- 220
- Grib2_Level_Desc :
- Planetary Boundary Layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- MSLP_Eta_model_reduction_msl(time1, lat, lon)float32...
- long_name :
- MSLP (Eta model reduction) @ Mean sea level
- units :
- Pa
- abbreviation :
- MSLET
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-192_L101
- Grib2_Parameter :
- [ 0 3 192]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- MSLP (Eta model reduction)
- Grib2_Level_Type :
- 101
- Grib2_Level_Desc :
- Mean sea level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Zonal_Flux_of_Gravity_Wave_Stress_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Zonal Flux of Gravity Wave Stress (Mixed_intervals Average) @ Ground or water surface
- units :
- N.m-2
- abbreviation :
- U-GWD
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-3-194_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 3 194]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Zonal Flux of Gravity Wave Stress
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Meridional_Flux_of_Gravity_Wave_Stress_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Meridional Flux of Gravity Wave Stress (Mixed_intervals Average) @ Ground or water surface
- units :
- N.m-2
- abbreviation :
- V-GWD
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-3-195_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 3 195]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Meridional Flux of Gravity Wave Stress
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Planetary_Boundary_Layer_Height_surface(time1, lat, lon)float32...
- long_name :
- Planetary Boundary Layer Height @ Ground or water surface
- units :
- m
- abbreviation :
- HPBL
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-196_L1
- Grib2_Parameter :
- [ 0 3 196]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Planetary Boundary Layer Height
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Pressure_of_level_from_which_parcel_was_lifted_pressure_difference_layer(time1, pressure_difference_layer, lat, lon)float32...
- long_name :
- Pressure of level from which parcel was lifted @ Level at specified pressure difference from ground to level layer
- units :
- Pa
- abbreviation :
- PLPL
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-3-200_L108_layer
- Grib2_Parameter :
- [ 0 3 200]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Mass
- Grib2_Parameter_Name :
- Pressure of level from which parcel was lifted
- Grib2_Level_Type :
- 108
- Grib2_Level_Desc :
- Level at specified pressure difference from ground to level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Downward_Short-Wave_Radiation_Flux_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Downward Short-Wave Radiation Flux (Mixed_intervals Average) @ Ground or water surface
- units :
- W.m-2
- abbreviation :
- DSWRF
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-4-192_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 4 192]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Short wave radiation
- Grib2_Parameter_Name :
- Downward Short-Wave Radiation Flux
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Upward_Short-Wave_Radiation_Flux_atmosphere_top_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Upward Short-Wave Radiation Flux (Mixed_intervals Average) @ Nominal top of the atmosphere
- units :
- W.m-2
- abbreviation :
- USWRF
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-4-193_L8_Imixed_S0
- Grib2_Parameter :
- [ 0 4 193]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Short wave radiation
- Grib2_Parameter_Name :
- Upward Short-Wave Radiation Flux
- Grib2_Level_Type :
- 8
- Grib2_Level_Desc :
- Nominal top of the atmosphere
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Upward_Short-Wave_Radiation_Flux_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Upward Short-Wave Radiation Flux (Mixed_intervals Average) @ Ground or water surface
- units :
- W.m-2
- abbreviation :
- USWRF
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-4-193_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 4 193]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Short wave radiation
- Grib2_Parameter_Name :
- Upward Short-Wave Radiation Flux
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Downward_Long-Wave_Radp_Flux_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Downward Long-Wave Rad. Flux (Mixed_intervals Average) @ Ground or water surface
- units :
- W.m-2
- abbreviation :
- DLWRF
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-5-192_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 5 192]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Long wave radiation
- Grib2_Parameter_Name :
- Downward Long-Wave Rad. Flux
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Upward_Long-Wave_Radp_Flux_atmosphere_top_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Upward Long-Wave Rad. Flux (Mixed_intervals Average) @ Nominal top of the atmosphere
- units :
- W.m-2
- abbreviation :
- ULWRF
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-5-193_L8_Imixed_S0
- Grib2_Parameter :
- [ 0 5 193]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Long wave radiation
- Grib2_Parameter_Name :
- Upward Long-Wave Rad. Flux
- Grib2_Level_Type :
- 8
- Grib2_Level_Desc :
- Nominal top of the atmosphere
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Upward_Long-Wave_Radp_Flux_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Upward Long-Wave Rad. Flux (Mixed_intervals Average) @ Ground or water surface
- units :
- W.m-2
- abbreviation :
- ULWRF
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-5-193_L1_Imixed_S0
- Grib2_Parameter :
- [ 0 5 193]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Long wave radiation
- Grib2_Parameter_Name :
- Upward Long-Wave Rad. Flux
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Cloud_Work_Function_entire_atmosphere_single_layer_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Cloud Work Function (Mixed_intervals Average) @ Entire atmosphere layer
- units :
- J.kg-1
- abbreviation :
- CWORK
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_0-6-193_L200_Imixed_S0
- Grib2_Parameter :
- [ 0 6 193]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Cloud Work Function
- Grib2_Level_Type :
- 200
- Grib2_Level_Desc :
- Entire atmosphere layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Sunshine_Duration_surface(time1, lat, lon)float32...
- long_name :
- Sunshine Duration @ Ground or water surface
- units :
- s
- abbreviation :
- SUNSD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-6-201_L1
- Grib2_Parameter :
- [ 0 6 201]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Sunshine Duration
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Surface_Lifted_Index_surface(time1, lat, lon)float32...
- long_name :
- Surface Lifted Index @ Ground or water surface
- units :
- K
- abbreviation :
- LFT X
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-7-192_L1
- Grib2_Parameter :
- [ 0 7 192]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Thermodynamic stability indices
- Grib2_Parameter_Name :
- Surface Lifted Index
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Best_4_layer_Lifted_Index_surface(time1, lat, lon)float32...
- long_name :
- Best (4 layer) Lifted Index @ Ground or water surface
- units :
- K
- abbreviation :
- 4LFTX
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-7-193_L1
- Grib2_Parameter :
- [ 0 7 193]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Thermodynamic stability indices
- Grib2_Parameter_Name :
- Best (4 layer) Lifted Index
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Volumetric_Soil_Moisture_Content_depth_below_surface_layer(time1, depth_below_surface_layer, lat, lon)float32...
- long_name :
- Volumetric Soil Moisture Content @ Depth below land surface layer
- units :
- Fraction
- abbreviation :
- SOILW
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-0-192_L106_layer
- Grib2_Parameter :
- [ 2 0 192]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Vegetation/Biomass
- Grib2_Parameter_Name :
- Volumetric Soil Moisture Content
- Grib2_Level_Type :
- 106
- Grib2_Level_Desc :
- Depth below land surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[535731840 values with dtype=float32]
- Ground_Heat_Flux_surface_Mixed_intervals_Average(time2, lat, lon)float32...
- long_name :
- Ground Heat Flux (Mixed_intervals Average) @ Ground or water surface
- units :
- W.m-2
- abbreviation :
- GFLUX
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Average
- Grib_Variable_Id :
- VAR_2-0-193_L1_Imixed_S0
- Grib2_Parameter :
- [ 2 0 193]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Vegetation/Biomass
- Grib2_Parameter_Name :
- Ground Heat Flux
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Average
[132894720 values with dtype=float32]
- Plant_Canopy_Surface_Water_surface(time1, lat, lon)float32...
- long_name :
- Plant Canopy Surface Water @ Ground or water surface
- units :
- kg.m-2
- abbreviation :
- CNWAT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-0-196_L1
- Grib2_Parameter :
- [ 2 0 196]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Vegetation/Biomass
- Grib2_Parameter_Name :
- Plant Canopy Surface Water
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Wilting_Point_surface(time1, lat, lon)float32...
- long_name :
- Wilting Point @ Ground or water surface
- units :
- Fraction
- abbreviation :
- WILT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-0-201_L1
- Grib2_Parameter :
- [ 2 0 201]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Vegetation/Biomass
- Grib2_Parameter_Name :
- Wilting Point
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Liquid_Volumetric_Soil_Moisture_non_Frozen_depth_below_surface_layer(time1, depth_below_surface_layer, lat, lon)float32...
- long_name :
- Liquid Volumetric Soil Moisture (non Frozen) @ Depth below land surface layer
- units :
- abbreviation :
- SOILL
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-3-192_L106_layer
- Grib2_Parameter :
- [ 2 3 192]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Soil Products
- Grib2_Parameter_Name :
- Liquid Volumetric Soil Moisture (non Frozen)
- Grib2_Level_Type :
- 106
- Grib2_Level_Desc :
- Depth below land surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[535731840 values with dtype=float32]
- Field_Capacity_surface(time1, lat, lon)float32...
- long_name :
- Field Capacity @ Ground or water surface
- units :
- Fraction
- abbreviation :
- FLDCP
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-3-203_L1
- Grib2_Parameter :
- [ 2 3 203]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Soil Products
- Grib2_Parameter_Name :
- Field Capacity
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Vegetation_surface(time1, lat, lon)float32...
- long_name :
- Vegetation @ Ground or water surface
- units :
- %
- abbreviation :
- VEG
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_2-0-4_L1
- Grib2_Parameter :
- [2 0 4]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Vegetation/Biomass
- Grib2_Parameter_Name :
- Vegetation
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Vertical_velocity_geometric_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- Vertical velocity (geometric) @ Isobaric surface
- units :
- m/s
- abbreviation :
- DZDT
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-9_L100
- Grib2_Parameter :
- [0 2 9]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Vertical velocity (geometric)
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- Vertical_velocity_pressure_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- Vertical velocity (pressure) @ Isobaric surface
- units :
- Pa/s
- abbreviation :
- VVEL
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-8_L100
- Grib2_Parameter :
- [0 2 8]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Vertical velocity (pressure)
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- Vertical_velocity_pressure_sigma(time1, sigma, lat, lon)float32...
- long_name :
- Vertical velocity (pressure) @ Sigma level
- units :
- Pa/s
- abbreviation :
- VVEL
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-8_L104
- Grib2_Parameter :
- [0 2 8]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Vertical velocity (pressure)
- Grib2_Level_Type :
- 104
- Grib2_Level_Desc :
- Sigma level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Visibility_surface(time1, lat, lon)float32...
- long_name :
- Visibility @ Ground or water surface
- units :
- m
- abbreviation :
- VIS
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-19-0_L1
- Grib2_Parameter :
- [ 0 19 0]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Physical atmospheric Properties
- Grib2_Parameter_Name :
- Visibility
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Water_equivalent_of_accumulated_snow_depth_surface(time1, lat, lon)float32...
- long_name :
- Water equivalent of accumulated snow depth @ Ground or water surface
- units :
- kg.m-2
- abbreviation :
- WEASD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-1-13_L1
- Grib2_Parameter :
- [ 0 1 13]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Moisture
- Grib2_Parameter_Name :
- Water equivalent of accumulated snow depth
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- Water_runoff_surface_Mixed_intervals_Accumulation(time2, lat, lon)float32...
- long_name :
- Water runoff (Mixed_intervals Accumulation) @ Ground or water surface
- units :
- kg.m-2
- abbreviation :
- WATR
- grid_mapping :
- LatLon_Projection
- Grib_Statistical_Interval_Type :
- Accumulation
- Grib_Variable_Id :
- VAR_2-0-5_L1_Imixed_S1
- Grib2_Parameter :
- [2 0 5]
- Grib2_Parameter_Discipline :
- Land surface products
- Grib2_Parameter_Category :
- Vegetation/Biomass
- Grib2_Parameter_Name :
- Water runoff
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- Accumulation
[132894720 values with dtype=float32]
- Wind_speed_gust_surface(time1, lat, lon)float32...
- long_name :
- Wind speed (gust) @ Ground or water surface
- units :
- m/s
- abbreviation :
- GUST
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-22_L1
- Grib2_Parameter :
- [ 0 2 22]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- Wind speed (gust)
- Grib2_Level_Type :
- 1
- Grib2_Level_Desc :
- Ground or water surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- u-component_of_wind_potential_vorticity_surface(time1, potential_vorticity_surface, lat, lon)float32...
- long_name :
- u-component of wind @ Potential vorticity surface
- units :
- m/s
- abbreviation :
- UGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-2_L109
- Grib2_Parameter :
- [0 2 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- u-component of wind
- Grib2_Level_Type :
- 109
- Grib2_Level_Desc :
- Potential vorticity surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[267865920 values with dtype=float32]
- u-component_of_wind_pressure_difference_layer(time1, pressure_difference_layer2, lat, lon)float32...
- long_name :
- u-component of wind @ Level at specified pressure difference from ground to level layer
- units :
- m/s
- abbreviation :
- UGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-2_L108_layer
- Grib2_Parameter :
- [0 2 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- u-component of wind
- Grib2_Level_Type :
- 108
- Grib2_Level_Desc :
- Level at specified pressure difference from ground to level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- u-component_of_wind_planetary_boundary(time1, lat, lon)float32...
- long_name :
- u-component of wind @ Planetary Boundary Layer
- units :
- m/s
- abbreviation :
- UGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-2_L220
- Grib2_Parameter :
- [0 2 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- u-component of wind
- Grib2_Level_Type :
- 220
- Grib2_Level_Desc :
- Planetary Boundary Layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- u-component_of_wind_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- u-component of wind @ Isobaric surface
- units :
- m/s
- abbreviation :
- UGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-2_L100
- Grib2_Parameter :
- [0 2 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- u-component of wind
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- u-component_of_wind_maximum_wind(time1, lat, lon)float32...
- long_name :
- u-component of wind @ Maximum wind level
- units :
- m/s
- abbreviation :
- UGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-2_L6
- Grib2_Parameter :
- [0 2 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- u-component of wind
- Grib2_Level_Type :
- 6
- Grib2_Level_Desc :
- Maximum wind level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- u-component_of_wind_altitude_above_msl(time1, altitude_above_msl, lat, lon)float32...
- long_name :
- u-component of wind @ Specific altitude above mean sea level
- units :
- m/s
- abbreviation :
- UGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-2_L102
- Grib2_Parameter :
- [0 2 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- u-component of wind
- Grib2_Level_Type :
- 102
- Grib2_Level_Desc :
- Specific altitude above mean sea level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[401798880 values with dtype=float32]
- u-component_of_wind_height_above_ground(time1, height_above_ground2, lat, lon)float32...
- long_name :
- u-component of wind @ Specified height level above ground
- units :
- m/s
- abbreviation :
- UGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-2_L103
- Grib2_Parameter :
- [0 2 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- u-component of wind
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[937530720 values with dtype=float32]
- u-component_of_wind_tropopause(time1, lat, lon)float32...
- long_name :
- u-component of wind @ Tropopause
- units :
- m/s
- abbreviation :
- UGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-2_L7
- Grib2_Parameter :
- [0 2 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- u-component of wind
- Grib2_Level_Type :
- 7
- Grib2_Level_Desc :
- Tropopause
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- u-component_of_wind_sigma(time1, sigma, lat, lon)float32...
- long_name :
- u-component of wind @ Sigma level
- units :
- m/s
- abbreviation :
- UGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-2_L104
- Grib2_Parameter :
- [0 2 2]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- u-component of wind
- Grib2_Level_Type :
- 104
- Grib2_Level_Desc :
- Sigma level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- v-component_of_wind_potential_vorticity_surface(time1, potential_vorticity_surface, lat, lon)float32...
- long_name :
- v-component of wind @ Potential vorticity surface
- units :
- m/s
- abbreviation :
- VGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-3_L109
- Grib2_Parameter :
- [0 2 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- v-component of wind
- Grib2_Level_Type :
- 109
- Grib2_Level_Desc :
- Potential vorticity surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[267865920 values with dtype=float32]
- v-component_of_wind_pressure_difference_layer(time1, pressure_difference_layer2, lat, lon)float32...
- long_name :
- v-component of wind @ Level at specified pressure difference from ground to level layer
- units :
- m/s
- abbreviation :
- VGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-3_L108_layer
- Grib2_Parameter :
- [0 2 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- v-component of wind
- Grib2_Level_Type :
- 108
- Grib2_Level_Desc :
- Level at specified pressure difference from ground to level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- v-component_of_wind_isobaric(time1, isobaric, lat, lon)float32...
- long_name :
- v-component of wind @ Isobaric surface
- units :
- m/s
- abbreviation :
- VGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-3_L100
- Grib2_Parameter :
- [0 2 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- v-component of wind
- Grib2_Level_Type :
- 100
- Grib2_Level_Desc :
- Isobaric surface
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[5491251360 values with dtype=float32]
- v-component_of_wind_planetary_boundary(time1, lat, lon)float32...
- long_name :
- v-component of wind @ Planetary Boundary Layer
- units :
- m/s
- abbreviation :
- VGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-3_L220
- Grib2_Parameter :
- [0 2 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- v-component of wind
- Grib2_Level_Type :
- 220
- Grib2_Level_Desc :
- Planetary Boundary Layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- v-component_of_wind_altitude_above_msl(time1, altitude_above_msl, lat, lon)float32...
- long_name :
- v-component of wind @ Specific altitude above mean sea level
- units :
- m/s
- abbreviation :
- VGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-3_L102
- Grib2_Parameter :
- [0 2 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- v-component of wind
- Grib2_Level_Type :
- 102
- Grib2_Level_Desc :
- Specific altitude above mean sea level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[401798880 values with dtype=float32]
- v-component_of_wind_maximum_wind(time1, lat, lon)float32...
- long_name :
- v-component of wind @ Maximum wind level
- units :
- m/s
- abbreviation :
- VGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-3_L6
- Grib2_Parameter :
- [0 2 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- v-component of wind
- Grib2_Level_Type :
- 6
- Grib2_Level_Desc :
- Maximum wind level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- v-component_of_wind_tropopause(time1, lat, lon)float32...
- long_name :
- v-component of wind @ Tropopause
- units :
- m/s
- abbreviation :
- VGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-3_L7
- Grib2_Parameter :
- [0 2 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- v-component of wind
- Grib2_Level_Type :
- 7
- Grib2_Level_Desc :
- Tropopause
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- v-component_of_wind_height_above_ground(time1, height_above_ground2, lat, lon)float32...
- long_name :
- v-component of wind @ Specified height level above ground
- units :
- m/s
- abbreviation :
- VGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-3_L103
- Grib2_Parameter :
- [0 2 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- v-component of wind
- Grib2_Level_Type :
- 103
- Grib2_Level_Desc :
- Specified height level above ground
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[937530720 values with dtype=float32]
- v-component_of_wind_sigma(time1, sigma, lat, lon)float32...
- long_name :
- v-component of wind @ Sigma level
- units :
- m/s
- abbreviation :
- VGRD
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-2-3_L104
- Grib2_Parameter :
- [0 2 3]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Momentum
- Grib2_Parameter_Name :
- v-component of wind
- Grib2_Level_Type :
- 104
- Grib2_Level_Desc :
- Sigma level
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
[133932960 values with dtype=float32]
- timePandasIndex
PandasIndex(DatetimeIndex(['2024-04-29 21:00:00', '2024-04-30 00:00:00', '2024-04-30 01:30:00', '2024-04-30 03:00:00', '2024-04-30 04:30:00', '2024-04-30 06:00:00', '2024-04-30 07:30:00', '2024-04-30 09:00:00', '2024-04-30 10:30:00', '2024-04-30 12:00:00', ... '2024-05-15 04:30:00', '2024-05-15 06:00:00', '2024-05-15 07:30:00', '2024-05-15 09:00:00', '2024-05-15 10:30:00', '2024-05-15 12:00:00', '2024-05-15 13:30:00', '2024-05-15 15:00:00', '2024-05-15 16:30:00', '2024-05-15 18:00:00'], dtype='datetime64[ns]', name='time', length=254, freq=None))
- time2PandasIndex
PandasIndex(DatetimeIndex(['2024-04-29 21:00:00', '2024-04-30 00:00:00', '2024-04-30 03:00:00', '2024-04-30 06:00:00', '2024-04-30 09:00:00', '2024-04-30 12:00:00', '2024-04-30 15:00:00', '2024-04-30 18:00:00', '2024-04-30 21:00:00', '2024-05-01 00:00:00', ... '2024-05-14 15:00:00', '2024-05-14 18:00:00', '2024-05-14 21:00:00', '2024-05-15 00:00:00', '2024-05-15 03:00:00', '2024-05-15 06:00:00', '2024-05-15 09:00:00', '2024-05-15 12:00:00', '2024-05-15 15:00:00', '2024-05-15 18:00:00'], dtype='datetime64[ns]', name='time2', length=128, freq=None))
- pressure_difference_layerPandasIndex
PandasIndex(Index([12750.0], dtype='float32', name='pressure_difference_layer'))
- height_above_ground_layerPandasIndex
PandasIndex(Index([1500.0], dtype='float32', name='height_above_ground_layer'))
- height_above_ground_layer1PandasIndex
PandasIndex(Index([3000.0], dtype='float32', name='height_above_ground_layer1'))
- pressure_difference_layer1PandasIndex
PandasIndex(Index([4500.0, 9000.0, 12750.0], dtype='float32', name='pressure_difference_layer1'))
- pressure_difference_layer2PandasIndex
PandasIndex(Index([1500.0], dtype='float32', name='pressure_difference_layer2'))
- sigma_layerPandasIndex
PandasIndex(Index([0.5800000429153442, 0.6650000214576721, 0.7200000286102295, 0.8300000429153442], dtype='float32', name='sigma_layer'))
- depth_below_surface_layerPandasIndex
PandasIndex(Index([0.05000000074505806, 0.25, 0.699999988079071, 1.5], dtype='float32', name='depth_below_surface_layer'))
- latPandasIndex
PandasIndex(Index([ 90.0, 89.75, 89.5, 89.25, 89.0, 88.75, 88.5, 88.25, 88.0, 87.75, ... -87.75, -88.0, -88.25, -88.5, -88.75, -89.0, -89.25, -89.5, -89.75, -90.0], dtype='float32', name='lat', length=721))
- lonPandasIndex
PandasIndex(Index([ 0.0, 0.25, 0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0, 2.25, ... 357.5, 357.75, 358.0, 358.25, 358.5, 358.75, 359.0, 359.25, 359.5, 359.75], dtype='float32', name='lon', length=1440))
- time1PandasIndex
PandasIndex(DatetimeIndex(['2024-04-29 18:00:00', '2024-04-29 21:00:00', '2024-04-30 00:00:00', '2024-04-30 03:00:00', '2024-04-30 06:00:00', '2024-04-30 09:00:00', '2024-04-30 12:00:00', '2024-04-30 15:00:00', '2024-04-30 18:00:00', '2024-04-30 21:00:00', ... '2024-05-14 15:00:00', '2024-05-14 18:00:00', '2024-05-14 21:00:00', '2024-05-15 00:00:00', '2024-05-15 03:00:00', '2024-05-15 06:00:00', '2024-05-15 09:00:00', '2024-05-15 12:00:00', '2024-05-15 15:00:00', '2024-05-15 18:00:00'], dtype='datetime64[ns]', name='time1', length=129, freq=None))
- isobaricPandasIndex
PandasIndex(Index([ 1.0, 2.0, 4.0, 7.0, 10.0, 20.0, 40.0, 70.0, 100.0, 200.0, 300.0, 500.0, 700.0, 1000.0, 1500.0, 2000.0, 3000.0, 4000.0, 5000.0, 7000.0, 10000.0, 15000.0, 20000.0, 25000.0, 30000.0, 35000.0, 40000.0, 45000.0, 50000.0, 55000.0, 60000.0, 65000.0, 70000.0, 75000.0, 80000.0, 85000.0, 90000.0, 92500.0, 95000.0, 97500.0, 100000.0], dtype='float32', name='isobaric'))
- height_above_ground4PandasIndex
PandasIndex(Index([2.0], dtype='float32', name='height_above_ground4'))
- isobaric1PandasIndex
PandasIndex(Index([ 5000.0, 10000.0, 15000.0, 20000.0, 25000.0, 30000.0, 35000.0, 40000.0, 45000.0, 50000.0, 55000.0, 60000.0, 65000.0, 70000.0, 75000.0, 80000.0, 85000.0, 90000.0, 92500.0, 95000.0, 97500.0, 100000.0], dtype='float32', name='isobaric1'))
- hybridPandasIndex
PandasIndex(Index([1.0], dtype='float32', name='hybrid'))
- time3PandasIndex
PandasIndex(DatetimeIndex(['2024-04-29 21:00:00', '2024-04-30 00:00:00', '2024-04-30 03:00:00', '2024-04-30 06:00:00', '2024-04-30 09:00:00', '2024-04-30 12:00:00', '2024-04-30 15:00:00', '2024-04-30 18:00:00', '2024-04-30 21:00:00', '2024-05-01 00:00:00', ... '2024-05-14 15:00:00', '2024-05-14 18:00:00', '2024-05-14 21:00:00', '2024-05-15 00:00:00', '2024-05-15 03:00:00', '2024-05-15 06:00:00', '2024-05-15 09:00:00', '2024-05-15 12:00:00', '2024-05-15 15:00:00', '2024-05-15 18:00:00'], dtype='datetime64[ns]', name='time3', length=128, freq=None))
- potential_vorticity_surfacePandasIndex
PandasIndex(Index([-2e-06, 2e-06], dtype='float32', name='potential_vorticity_surface'))
- altitude_above_msl1PandasIndex
PandasIndex(Index([10.0], dtype='float32', name='altitude_above_msl1'))
- sigmaPandasIndex
PandasIndex(Index([0.995], dtype='float32', name='sigma'))
- height_above_groundPandasIndex
PandasIndex(Index([80.0], dtype='float32', name='height_above_ground'))
- height_above_ground5PandasIndex
PandasIndex(Index([2.0, 80.0], dtype='float32', name='height_above_ground5'))
- altitude_above_mslPandasIndex
PandasIndex(Index([1829.0, 2743.0, 3658.0], dtype='float32', name='altitude_above_msl'))
- height_above_ground3PandasIndex
PandasIndex(Index([2.0, 80.0, 100.0], dtype='float32', name='height_above_ground3'))
- hybrid1PandasIndex
PandasIndex(Index([1.0, 2.0], dtype='float32', name='hybrid1'))
- height_above_ground1PandasIndex
PandasIndex(Index([1000.0, 4000.0], dtype='float32', name='height_above_ground1'))
- height_above_ground2PandasIndex
PandasIndex(Index([10.0, 20.0, 30.0, 40.0, 50.0, 80.0, 100.0], dtype='float32', name='height_above_ground2'))
- Originating_or_generating_Center :
- US National Weather Service, National Centres for Environmental Prediction (NCEP)
- Originating_or_generating_Subcenter :
- 0
- GRIB_table_version :
- 2,1
- Type_of_generating_process :
- Forecast
- Analysis_or_forecast_generating_process_identifier_defined_by_originating_centre :
- Analysis from GFS (Global Forecast System)
- file_format :
- GRIB-2
- Conventions :
- CF-1.6
- history :
- Read using CDM IOSP GribCollection v3
- featureType :
- GRID
- _CoordSysBuilder :
- ucar.nc2.internal.dataset.conv.CF1Convention
Note that there now exists a metpy_crs
coordinate variable, which we’ll soon use to determine and use the Dataset
’s map projection.
Select some of the variables from the Dataset
; in this case, we’ll choose those relating to cloud cover.
varTotal = ds.Total_cloud_cover_entire_atmosphere
varLow = ds.Low_cloud_cover_low_cloud
varMed = ds.Medium_cloud_cover_middle_cloud
varHigh = ds.High_cloud_cover_high_cloud
Examine one of the grids
varTotal
<xarray.DataArray 'Total_cloud_cover_entire_atmosphere' (time1: 129, lat: 721, lon: 1440)> [133932960 values with dtype=float32] Coordinates: reftime datetime64[ns] 2024-04-29T18:00:00 * lat (lat) float32 90.0 89.75 89.5 89.25 ... -89.25 -89.5 -89.75 -90.0 * lon (lon) float32 0.0 0.25 0.5 0.75 1.0 ... 359.0 359.2 359.5 359.8 * time1 (time1) datetime64[ns] 2024-04-29T18:00:00 ... 2024-05-15T18:0... metpy_crs object Projection: latitude_longitude Attributes: (12/13) long_name: Total cloud cover @ Entire atmosphere units: % abbreviation: TCDC grid_mapping: LatLon_Projection Grib_Variable_Id: VAR_0-6-1_L10 Grib2_Parameter: [0 6 1] ... ... Grib2_Parameter_Category: Cloud Grib2_Parameter_Name: Total cloud cover Grib2_Level_Type: 10 Grib2_Level_Desc: Entire atmosphere Grib2_Generating_Process_Type: Forecast Grib2_Statistical_Process_Type: UnknownStatType--1
- time1: 129
- lat: 721
- lon: 1440
- ...
[133932960 values with dtype=float32]
- reftime()datetime64[ns]2024-04-29T18:00:00
- standard_name :
- forecast_reference_time
- long_name :
- GRIB reference time
- _CoordinateAxisType :
- RunTime
array('2024-04-29T18:00:00.000000000', dtype='datetime64[ns]')
- lat(lat)float3290.0 89.75 89.5 ... -89.75 -90.0
- units :
- degrees_north
- _CoordinateAxisType :
- Lat
array([ 90. , 89.75, 89.5 , ..., -89.5 , -89.75, -90. ], dtype=float32)
- lon(lon)float320.0 0.25 0.5 ... 359.2 359.5 359.8
- units :
- degrees_east
- _CoordinateAxisType :
- Lon
array([0.0000e+00, 2.5000e-01, 5.0000e-01, ..., 3.5925e+02, 3.5950e+02, 3.5975e+02], dtype=float32)
- time1(time1)datetime64[ns]2024-04-29T18:00:00 ... 2024-05-...
- standard_name :
- time
- long_name :
- GRIB forecast or observation time
- _CoordinateAxisType :
- Time
array(['2024-04-29T18:00:00.000000000', '2024-04-29T21:00:00.000000000', '2024-04-30T00:00:00.000000000', '2024-04-30T03:00:00.000000000', '2024-04-30T06:00:00.000000000', '2024-04-30T09:00:00.000000000', '2024-04-30T12:00:00.000000000', '2024-04-30T15:00:00.000000000', '2024-04-30T18:00:00.000000000', '2024-04-30T21:00:00.000000000', '2024-05-01T00:00:00.000000000', '2024-05-01T03:00:00.000000000', '2024-05-01T06:00:00.000000000', '2024-05-01T09:00:00.000000000', '2024-05-01T12:00:00.000000000', '2024-05-01T15:00:00.000000000', '2024-05-01T18:00:00.000000000', '2024-05-01T21:00:00.000000000', '2024-05-02T00:00:00.000000000', '2024-05-02T03:00:00.000000000', '2024-05-02T06:00:00.000000000', '2024-05-02T09:00:00.000000000', '2024-05-02T12:00:00.000000000', '2024-05-02T15:00:00.000000000', '2024-05-02T18:00:00.000000000', '2024-05-02T21:00:00.000000000', '2024-05-03T00:00:00.000000000', '2024-05-03T03:00:00.000000000', '2024-05-03T06:00:00.000000000', '2024-05-03T09:00:00.000000000', '2024-05-03T12:00:00.000000000', '2024-05-03T15:00:00.000000000', '2024-05-03T18:00:00.000000000', '2024-05-03T21:00:00.000000000', '2024-05-04T00:00:00.000000000', '2024-05-04T03:00:00.000000000', '2024-05-04T06:00:00.000000000', '2024-05-04T09:00:00.000000000', '2024-05-04T12:00:00.000000000', '2024-05-04T15:00:00.000000000', '2024-05-04T18:00:00.000000000', '2024-05-04T21:00:00.000000000', '2024-05-05T00:00:00.000000000', '2024-05-05T03:00:00.000000000', '2024-05-05T06:00:00.000000000', '2024-05-05T09:00:00.000000000', '2024-05-05T12:00:00.000000000', '2024-05-05T15:00:00.000000000', '2024-05-05T18:00:00.000000000', '2024-05-05T21:00:00.000000000', '2024-05-06T00:00:00.000000000', '2024-05-06T03:00:00.000000000', '2024-05-06T06:00:00.000000000', '2024-05-06T09:00:00.000000000', '2024-05-06T12:00:00.000000000', '2024-05-06T15:00:00.000000000', '2024-05-06T18:00:00.000000000', '2024-05-06T21:00:00.000000000', '2024-05-07T00:00:00.000000000', '2024-05-07T03:00:00.000000000', '2024-05-07T06:00:00.000000000', '2024-05-07T09:00:00.000000000', '2024-05-07T12:00:00.000000000', '2024-05-07T15:00:00.000000000', '2024-05-07T18:00:00.000000000', '2024-05-07T21:00:00.000000000', '2024-05-08T00:00:00.000000000', '2024-05-08T03:00:00.000000000', '2024-05-08T06:00:00.000000000', '2024-05-08T09:00:00.000000000', '2024-05-08T12:00:00.000000000', '2024-05-08T15:00:00.000000000', '2024-05-08T18:00:00.000000000', '2024-05-08T21:00:00.000000000', '2024-05-09T00:00:00.000000000', '2024-05-09T03:00:00.000000000', '2024-05-09T06:00:00.000000000', '2024-05-09T09:00:00.000000000', '2024-05-09T12:00:00.000000000', '2024-05-09T15:00:00.000000000', '2024-05-09T18:00:00.000000000', '2024-05-09T21:00:00.000000000', '2024-05-10T00:00:00.000000000', '2024-05-10T03:00:00.000000000', '2024-05-10T06:00:00.000000000', '2024-05-10T09:00:00.000000000', '2024-05-10T12:00:00.000000000', '2024-05-10T15:00:00.000000000', '2024-05-10T18:00:00.000000000', '2024-05-10T21:00:00.000000000', '2024-05-11T00:00:00.000000000', '2024-05-11T03:00:00.000000000', '2024-05-11T06:00:00.000000000', '2024-05-11T09:00:00.000000000', '2024-05-11T12:00:00.000000000', '2024-05-11T15:00:00.000000000', '2024-05-11T18:00:00.000000000', '2024-05-11T21:00:00.000000000', '2024-05-12T00:00:00.000000000', '2024-05-12T03:00:00.000000000', '2024-05-12T06:00:00.000000000', '2024-05-12T09:00:00.000000000', '2024-05-12T12:00:00.000000000', '2024-05-12T15:00:00.000000000', '2024-05-12T18:00:00.000000000', '2024-05-12T21:00:00.000000000', '2024-05-13T00:00:00.000000000', '2024-05-13T03:00:00.000000000', '2024-05-13T06:00:00.000000000', '2024-05-13T09:00:00.000000000', '2024-05-13T12:00:00.000000000', '2024-05-13T15:00:00.000000000', '2024-05-13T18:00:00.000000000', '2024-05-13T21:00:00.000000000', '2024-05-14T00:00:00.000000000', '2024-05-14T03:00:00.000000000', '2024-05-14T06:00:00.000000000', '2024-05-14T09:00:00.000000000', '2024-05-14T12:00:00.000000000', '2024-05-14T15:00:00.000000000', '2024-05-14T18:00:00.000000000', '2024-05-14T21:00:00.000000000', '2024-05-15T00:00:00.000000000', '2024-05-15T03:00:00.000000000', '2024-05-15T06:00:00.000000000', '2024-05-15T09:00:00.000000000', '2024-05-15T12:00:00.000000000', '2024-05-15T15:00:00.000000000', '2024-05-15T18:00:00.000000000'], dtype='datetime64[ns]')
- metpy_crs()objectProjection: latitude_longitude
array(<metpy.plots.mapping.CFProjection object at 0x1468e54963d0>, dtype=object)
- latPandasIndex
PandasIndex(Index([ 90.0, 89.75, 89.5, 89.25, 89.0, 88.75, 88.5, 88.25, 88.0, 87.75, ... -87.75, -88.0, -88.25, -88.5, -88.75, -89.0, -89.25, -89.5, -89.75, -90.0], dtype='float32', name='lat', length=721))
- lonPandasIndex
PandasIndex(Index([ 0.0, 0.25, 0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0, 2.25, ... 357.5, 357.75, 358.0, 358.25, 358.5, 358.75, 359.0, 359.25, 359.5, 359.75], dtype='float32', name='lon', length=1440))
- time1PandasIndex
PandasIndex(DatetimeIndex(['2024-04-29 18:00:00', '2024-04-29 21:00:00', '2024-04-30 00:00:00', '2024-04-30 03:00:00', '2024-04-30 06:00:00', '2024-04-30 09:00:00', '2024-04-30 12:00:00', '2024-04-30 15:00:00', '2024-04-30 18:00:00', '2024-04-30 21:00:00', ... '2024-05-14 15:00:00', '2024-05-14 18:00:00', '2024-05-14 21:00:00', '2024-05-15 00:00:00', '2024-05-15 03:00:00', '2024-05-15 06:00:00', '2024-05-15 09:00:00', '2024-05-15 12:00:00', '2024-05-15 15:00:00', '2024-05-15 18:00:00'], dtype='datetime64[ns]', name='time1', length=129, freq=None))
- long_name :
- Total cloud cover @ Entire atmosphere
- units :
- %
- abbreviation :
- TCDC
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-6-1_L10
- Grib2_Parameter :
- [0 6 1]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- Total cloud cover
- Grib2_Level_Type :
- 10
- Grib2_Level_Desc :
- Entire atmosphere
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
GRIB files that are served by THREDDS are automatically converted into NetCDF. A quirk in this translation can result in certain dimensions (typically those that are time or vertically-based) varying from run-to-run. For example, the time coordinate dimension for a given variable might be time
in one run, but time1
(or time2
, time3
, etc.) in another run. This poses a challenge any time we want to subset a DataArray
. For example, if a particular dataset had vertical levels in units of hPa, the dimension name for the geopotential height grid might be isobaric
. If we wanted to select only the 500 and 700 hPa levels, we might write the following line of code:
Z = ds.sel(isobaric=[500, 700])
This would fail if we pointed to model output from a different time, and the vertical coordinate name for geopotential height was instead isobaric1
.
Via strategic use of Python dictionaries
, we can programmatically deal with this!
First, let’s use some MetPy accessors that determine the dimension names for times and vertical levels:
timeDim= varTotal.metpy.time.name
timeDim
'time1'
We next construct dictionaries
corresponding to each desired subset of the relevant dimensions. Here, we specify a desired date and time:
verifTime = [datetime(2024, 4, 8, 18), datetime(2024, 4, 8, 21)]
timeDict = {timeDim: verifTime}
timeDict
{'time1': [datetime.datetime(2024, 4, 8, 18, 0),
datetime.datetime(2024, 4, 8, 21, 0)]}
Get the map projection from one of the DataArray
s. They will be the same across the Dataset
.
proj_data = varTotal.metpy.cartopy_crs
proj_data
<cartopy.crs.PlateCarree object at 0x1468e540ac90>
Create DataArray
objects for the horizontal coordinate dimensions. In this case, the model is output on global cylindrical equidistant (PlateCarree) projection, which means the horizontal dimensions are named lon and lat and represent grid point locations in degrees.
x, y = ds.lon, ds.lat
x
<xarray.DataArray 'lon' (lon: 1440)> array([0.0000e+00, 2.5000e-01, 5.0000e-01, ..., 3.5925e+02, 3.5950e+02, 3.5975e+02], dtype=float32) Coordinates: reftime datetime64[ns] 2024-04-29T18:00:00 * lon (lon) float32 0.0 0.25 0.5 0.75 1.0 ... 359.0 359.2 359.5 359.8 metpy_crs object Projection: latitude_longitude Attributes: units: degrees_east _CoordinateAxisType: Lon _metpy_axis: x,longitude
- lon: 1440
- 0.0 0.25 0.5 0.75 1.0 1.25 1.5 ... 358.5 358.8 359.0 359.2 359.5 359.8
array([0.0000e+00, 2.5000e-01, 5.0000e-01, ..., 3.5925e+02, 3.5950e+02, 3.5975e+02], dtype=float32)
- reftime()datetime64[ns]2024-04-29T18:00:00
- standard_name :
- forecast_reference_time
- long_name :
- GRIB reference time
- _CoordinateAxisType :
- RunTime
array('2024-04-29T18:00:00.000000000', dtype='datetime64[ns]')
- lon(lon)float320.0 0.25 0.5 ... 359.2 359.5 359.8
- units :
- degrees_east
- _CoordinateAxisType :
- Lon
- _metpy_axis :
- x,longitude
array([0.0000e+00, 2.5000e-01, 5.0000e-01, ..., 3.5925e+02, 3.5950e+02, 3.5975e+02], dtype=float32)
- metpy_crs()objectProjection: latitude_longitude
array(<metpy.plots.mapping.CFProjection object at 0x1468e54963d0>, dtype=object)
- lonPandasIndex
PandasIndex(Index([ 0.0, 0.25, 0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0, 2.25, ... 357.5, 357.75, 358.0, 358.25, 358.5, 358.75, 359.0, 359.25, 359.5, 359.75], dtype='float32', name='lon', length=1440))
- units :
- degrees_east
- _CoordinateAxisType :
- Lon
- _metpy_axis :
- x,longitude
Subset the dataset to a smaller region¶
The longitudes range from 0 to 359.75 degrees East. For the purposes of selecting ranges which include points in the western hemisphere, express these values as positive numbers. The latitudes go from north to south … i.e., in decreasing order.
lonW, lonE, latS, latN = [-80 + 360, -71+360, 40, 45]
mapExtent = lonW, lonE, latS, latN
We can directly select latitude and longitude values to perform regional subset selections; no need to use the Pyproj library.¶
Determine the grid spacing
delX, delY = ( (x[1] - x[0]), (y[1] - y[0]) )
In order for the data region to fill the plotted region, pad the longitude and latitude ranges (trial and error, depends on the subregion)
xPad = 4
yPad = 4
xRange = np.arange(lonW - xPad, lonE + xPad, delX)
yRange = np.arange(latN + yPad, latS - yPad, delY)
Read in the subsetted data and coordinate variables.
dsSub = ds.sel(lon = xRange, lat = yRange)
xSub, ySub = dsSub.lon, dsSub.lat
TotalSub = dsSub.Total_cloud_cover_entire_atmosphere
LowSub = dsSub.Low_cloud_cover_low_cloud
MedSub = dsSub.Medium_cloud_cover_middle_cloud
HighSub = dsSub.High_cloud_cover_high_cloud
TotalSub = TotalSub.sel(timeDict)
LowSub = LowSub.sel(timeDict)
MedSub = MedSub.sel(timeDict)
HighSub = HighSub.sel(timeDict)
---------------------------------------------------------------------------
KeyError Traceback (most recent call last)
Cell In[18], line 8
6 MedSub = dsSub.Medium_cloud_cover_middle_cloud
7 HighSub = dsSub.High_cloud_cover_high_cloud
----> 8 TotalSub = TotalSub.sel(timeDict)
9 LowSub = LowSub.sel(timeDict)
10 MedSub = MedSub.sel(timeDict)
File /knight/mamba_aug23/envs/jan24_env/lib/python3.11/site-packages/xarray/core/dataarray.py:1622, in DataArray.sel(self, indexers, method, tolerance, drop, **indexers_kwargs)
1506 def sel(
1507 self,
1508 indexers: Mapping[Any, Any] | None = None,
(...)
1512 **indexers_kwargs: Any,
1513 ) -> Self:
1514 """Return a new DataArray whose data is given by selecting index
1515 labels along the specified dimension(s).
1516
(...)
1620 Dimensions without coordinates: points
1621 """
-> 1622 ds = self._to_temp_dataset().sel(
1623 indexers=indexers,
1624 drop=drop,
1625 method=method,
1626 tolerance=tolerance,
1627 **indexers_kwargs,
1628 )
1629 return self._from_temp_dataset(ds)
File /knight/mamba_aug23/envs/jan24_env/lib/python3.11/site-packages/xarray/core/dataset.py:3105, in Dataset.sel(self, indexers, method, tolerance, drop, **indexers_kwargs)
3037 """Returns a new dataset with each array indexed by tick labels
3038 along the specified dimension(s).
3039
(...)
3102
3103 """
3104 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "sel")
-> 3105 query_results = map_index_queries(
3106 self, indexers=indexers, method=method, tolerance=tolerance
3107 )
3109 if drop:
3110 no_scalar_variables = {}
File /knight/mamba_aug23/envs/jan24_env/lib/python3.11/site-packages/xarray/core/indexing.py:193, in map_index_queries(obj, indexers, method, tolerance, **indexers_kwargs)
191 results.append(IndexSelResult(labels))
192 else:
--> 193 results.append(index.sel(labels, **options))
195 merged = merge_sel_results(results)
197 # drop dimension coordinates found in dimension indexers
198 # (also drop multi-index if any)
199 # (.sel() already ensures alignment)
File /knight/mamba_aug23/envs/jan24_env/lib/python3.11/site-packages/xarray/core/indexes.py:784, in PandasIndex.sel(self, labels, method, tolerance)
782 indexer = get_indexer_nd(self.index, label_array, method, tolerance)
783 if np.any(indexer < 0):
--> 784 raise KeyError(f"not all values found in index {coord_name!r}")
786 # attach dimension names and/or coordinates to positional indexer
787 if isinstance(label, Variable):
KeyError: "not all values found in index 'time1'"
Examine one of the DataArray
s.
HighSub
<xarray.DataArray 'High_cloud_cover_high_cloud' (time1: 129, lat: 52, lon: 68)> [456144 values with dtype=float32] Coordinates: reftime datetime64[ns] 2024-04-29T18:00:00 * lat (lat) float32 49.0 48.75 48.5 48.25 ... 37.0 36.75 36.5 36.25 * lon (lon) float32 276.0 276.2 276.5 276.8 ... 292.0 292.2 292.5 292.8 * time1 (time1) datetime64[ns] 2024-04-29T18:00:00 ... 2024-05-15T18:0... metpy_crs object Projection: latitude_longitude Attributes: (12/13) long_name: High cloud cover @ High cloud layer units: % abbreviation: HCDC grid_mapping: LatLon_Projection Grib_Variable_Id: VAR_0-6-5_L234 Grib2_Parameter: [0 6 5] ... ... Grib2_Parameter_Category: Cloud Grib2_Parameter_Name: High cloud cover Grib2_Level_Type: 234 Grib2_Level_Desc: High cloud layer Grib2_Generating_Process_Type: Forecast Grib2_Statistical_Process_Type: UnknownStatType--1
- time1: 129
- lat: 52
- lon: 68
- ...
[456144 values with dtype=float32]
- reftime()datetime64[ns]2024-04-29T18:00:00
- standard_name :
- forecast_reference_time
- long_name :
- GRIB reference time
- _CoordinateAxisType :
- RunTime
array('2024-04-29T18:00:00.000000000', dtype='datetime64[ns]')
- lat(lat)float3249.0 48.75 48.5 ... 36.5 36.25
- units :
- degrees_north
- _CoordinateAxisType :
- Lat
- _metpy_axis :
- y,latitude
array([49. , 48.75, 48.5 , 48.25, 48. , 47.75, 47.5 , 47.25, 47. , 46.75, 46.5 , 46.25, 46. , 45.75, 45.5 , 45.25, 45. , 44.75, 44.5 , 44.25, 44. , 43.75, 43.5 , 43.25, 43. , 42.75, 42.5 , 42.25, 42. , 41.75, 41.5 , 41.25, 41. , 40.75, 40.5 , 40.25, 40. , 39.75, 39.5 , 39.25, 39. , 38.75, 38.5 , 38.25, 38. , 37.75, 37.5 , 37.25, 37. , 36.75, 36.5 , 36.25], dtype=float32)
- lon(lon)float32276.0 276.2 276.5 ... 292.5 292.8
- units :
- degrees_east
- _CoordinateAxisType :
- Lon
- _metpy_axis :
- x,longitude
array([276. , 276.25, 276.5 , 276.75, 277. , 277.25, 277.5 , 277.75, 278. , 278.25, 278.5 , 278.75, 279. , 279.25, 279.5 , 279.75, 280. , 280.25, 280.5 , 280.75, 281. , 281.25, 281.5 , 281.75, 282. , 282.25, 282.5 , 282.75, 283. , 283.25, 283.5 , 283.75, 284. , 284.25, 284.5 , 284.75, 285. , 285.25, 285.5 , 285.75, 286. , 286.25, 286.5 , 286.75, 287. , 287.25, 287.5 , 287.75, 288. , 288.25, 288.5 , 288.75, 289. , 289.25, 289.5 , 289.75, 290. , 290.25, 290.5 , 290.75, 291. , 291.25, 291.5 , 291.75, 292. , 292.25, 292.5 , 292.75], dtype=float32)
- time1(time1)datetime64[ns]2024-04-29T18:00:00 ... 2024-05-...
- standard_name :
- time
- long_name :
- GRIB forecast or observation time
- _CoordinateAxisType :
- Time
- _metpy_axis :
- time
array(['2024-04-29T18:00:00.000000000', '2024-04-29T21:00:00.000000000', '2024-04-30T00:00:00.000000000', '2024-04-30T03:00:00.000000000', '2024-04-30T06:00:00.000000000', '2024-04-30T09:00:00.000000000', '2024-04-30T12:00:00.000000000', '2024-04-30T15:00:00.000000000', '2024-04-30T18:00:00.000000000', '2024-04-30T21:00:00.000000000', '2024-05-01T00:00:00.000000000', '2024-05-01T03:00:00.000000000', '2024-05-01T06:00:00.000000000', '2024-05-01T09:00:00.000000000', '2024-05-01T12:00:00.000000000', '2024-05-01T15:00:00.000000000', '2024-05-01T18:00:00.000000000', '2024-05-01T21:00:00.000000000', '2024-05-02T00:00:00.000000000', '2024-05-02T03:00:00.000000000', '2024-05-02T06:00:00.000000000', '2024-05-02T09:00:00.000000000', '2024-05-02T12:00:00.000000000', '2024-05-02T15:00:00.000000000', '2024-05-02T18:00:00.000000000', '2024-05-02T21:00:00.000000000', '2024-05-03T00:00:00.000000000', '2024-05-03T03:00:00.000000000', '2024-05-03T06:00:00.000000000', '2024-05-03T09:00:00.000000000', '2024-05-03T12:00:00.000000000', '2024-05-03T15:00:00.000000000', '2024-05-03T18:00:00.000000000', '2024-05-03T21:00:00.000000000', '2024-05-04T00:00:00.000000000', '2024-05-04T03:00:00.000000000', '2024-05-04T06:00:00.000000000', '2024-05-04T09:00:00.000000000', '2024-05-04T12:00:00.000000000', '2024-05-04T15:00:00.000000000', '2024-05-04T18:00:00.000000000', '2024-05-04T21:00:00.000000000', '2024-05-05T00:00:00.000000000', '2024-05-05T03:00:00.000000000', '2024-05-05T06:00:00.000000000', '2024-05-05T09:00:00.000000000', '2024-05-05T12:00:00.000000000', '2024-05-05T15:00:00.000000000', '2024-05-05T18:00:00.000000000', '2024-05-05T21:00:00.000000000', '2024-05-06T00:00:00.000000000', '2024-05-06T03:00:00.000000000', '2024-05-06T06:00:00.000000000', '2024-05-06T09:00:00.000000000', '2024-05-06T12:00:00.000000000', '2024-05-06T15:00:00.000000000', '2024-05-06T18:00:00.000000000', '2024-05-06T21:00:00.000000000', '2024-05-07T00:00:00.000000000', '2024-05-07T03:00:00.000000000', '2024-05-07T06:00:00.000000000', '2024-05-07T09:00:00.000000000', '2024-05-07T12:00:00.000000000', '2024-05-07T15:00:00.000000000', '2024-05-07T18:00:00.000000000', '2024-05-07T21:00:00.000000000', '2024-05-08T00:00:00.000000000', '2024-05-08T03:00:00.000000000', '2024-05-08T06:00:00.000000000', '2024-05-08T09:00:00.000000000', '2024-05-08T12:00:00.000000000', '2024-05-08T15:00:00.000000000', '2024-05-08T18:00:00.000000000', '2024-05-08T21:00:00.000000000', '2024-05-09T00:00:00.000000000', '2024-05-09T03:00:00.000000000', '2024-05-09T06:00:00.000000000', '2024-05-09T09:00:00.000000000', '2024-05-09T12:00:00.000000000', '2024-05-09T15:00:00.000000000', '2024-05-09T18:00:00.000000000', '2024-05-09T21:00:00.000000000', '2024-05-10T00:00:00.000000000', '2024-05-10T03:00:00.000000000', '2024-05-10T06:00:00.000000000', '2024-05-10T09:00:00.000000000', '2024-05-10T12:00:00.000000000', '2024-05-10T15:00:00.000000000', '2024-05-10T18:00:00.000000000', '2024-05-10T21:00:00.000000000', '2024-05-11T00:00:00.000000000', '2024-05-11T03:00:00.000000000', '2024-05-11T06:00:00.000000000', '2024-05-11T09:00:00.000000000', '2024-05-11T12:00:00.000000000', '2024-05-11T15:00:00.000000000', '2024-05-11T18:00:00.000000000', '2024-05-11T21:00:00.000000000', '2024-05-12T00:00:00.000000000', '2024-05-12T03:00:00.000000000', '2024-05-12T06:00:00.000000000', '2024-05-12T09:00:00.000000000', '2024-05-12T12:00:00.000000000', '2024-05-12T15:00:00.000000000', '2024-05-12T18:00:00.000000000', '2024-05-12T21:00:00.000000000', '2024-05-13T00:00:00.000000000', '2024-05-13T03:00:00.000000000', '2024-05-13T06:00:00.000000000', '2024-05-13T09:00:00.000000000', '2024-05-13T12:00:00.000000000', '2024-05-13T15:00:00.000000000', '2024-05-13T18:00:00.000000000', '2024-05-13T21:00:00.000000000', '2024-05-14T00:00:00.000000000', '2024-05-14T03:00:00.000000000', '2024-05-14T06:00:00.000000000', '2024-05-14T09:00:00.000000000', '2024-05-14T12:00:00.000000000', '2024-05-14T15:00:00.000000000', '2024-05-14T18:00:00.000000000', '2024-05-14T21:00:00.000000000', '2024-05-15T00:00:00.000000000', '2024-05-15T03:00:00.000000000', '2024-05-15T06:00:00.000000000', '2024-05-15T09:00:00.000000000', '2024-05-15T12:00:00.000000000', '2024-05-15T15:00:00.000000000', '2024-05-15T18:00:00.000000000'], dtype='datetime64[ns]')
- metpy_crs()objectProjection: latitude_longitude
array(<metpy.plots.mapping.CFProjection object at 0x1468e54963d0>, dtype=object)
- latPandasIndex
PandasIndex(Index([ 49.0, 48.75, 48.5, 48.25, 48.0, 47.75, 47.5, 47.25, 47.0, 46.75, 46.5, 46.25, 46.0, 45.75, 45.5, 45.25, 45.0, 44.75, 44.5, 44.25, 44.0, 43.75, 43.5, 43.25, 43.0, 42.75, 42.5, 42.25, 42.0, 41.75, 41.5, 41.25, 41.0, 40.75, 40.5, 40.25, 40.0, 39.75, 39.5, 39.25, 39.0, 38.75, 38.5, 38.25, 38.0, 37.75, 37.5, 37.25, 37.0, 36.75, 36.5, 36.25], dtype='float32', name='lat'))
- lonPandasIndex
PandasIndex(Index([ 276.0, 276.25, 276.5, 276.75, 277.0, 277.25, 277.5, 277.75, 278.0, 278.25, 278.5, 278.75, 279.0, 279.25, 279.5, 279.75, 280.0, 280.25, 280.5, 280.75, 281.0, 281.25, 281.5, 281.75, 282.0, 282.25, 282.5, 282.75, 283.0, 283.25, 283.5, 283.75, 284.0, 284.25, 284.5, 284.75, 285.0, 285.25, 285.5, 285.75, 286.0, 286.25, 286.5, 286.75, 287.0, 287.25, 287.5, 287.75, 288.0, 288.25, 288.5, 288.75, 289.0, 289.25, 289.5, 289.75, 290.0, 290.25, 290.5, 290.75, 291.0, 291.25, 291.5, 291.75, 292.0, 292.25, 292.5, 292.75], dtype='float32', name='lon'))
- time1PandasIndex
PandasIndex(DatetimeIndex(['2024-04-29 18:00:00', '2024-04-29 21:00:00', '2024-04-30 00:00:00', '2024-04-30 03:00:00', '2024-04-30 06:00:00', '2024-04-30 09:00:00', '2024-04-30 12:00:00', '2024-04-30 15:00:00', '2024-04-30 18:00:00', '2024-04-30 21:00:00', ... '2024-05-14 15:00:00', '2024-05-14 18:00:00', '2024-05-14 21:00:00', '2024-05-15 00:00:00', '2024-05-15 03:00:00', '2024-05-15 06:00:00', '2024-05-15 09:00:00', '2024-05-15 12:00:00', '2024-05-15 15:00:00', '2024-05-15 18:00:00'], dtype='datetime64[ns]', name='time1', length=129, freq=None))
- long_name :
- High cloud cover @ High cloud layer
- units :
- %
- abbreviation :
- HCDC
- grid_mapping :
- LatLon_Projection
- Grib_Variable_Id :
- VAR_0-6-5_L234
- Grib2_Parameter :
- [0 6 5]
- Grib2_Parameter_Discipline :
- Meteorological products
- Grib2_Parameter_Category :
- Cloud
- Grib2_Parameter_Name :
- High cloud cover
- Grib2_Level_Type :
- 234
- Grib2_Level_Desc :
- High cloud layer
- Grib2_Generating_Process_Type :
- Forecast
- Grib2_Statistical_Process_Type :
- UnknownStatType--1
Specify the output map projection (Lambert Conformal, centered on New York State)
lon1 = -75
lat1 = 42.5
slat = 42.5
proj_map= ccrs.LambertConformal(central_longitude=lon1,
central_latitude=lat1,
standard_parallels=[slat,slat])
contourLevels = np.arange(0,101,10)
Create titles for the plots.
Create a 2x2 figure for each of the four cloud cover variables. Omit plotting the land/water features since they tend to obscure the nuances of the temperature field. This also speeds up the creation of the figure.
for times in [0,1]:
#validTime = varTotal.sel(timeDict)[timeDim].values # Returns validTime as a NumPy Datetime 64 object
validTime = TotalSub[timeDim][times].values # Returns validTime as a NumPy Datetime 64 object
validTime = pd.Timestamp(validTime) # Converts validTime to a Pandas Timestamp object
timeStr = validTime.strftime("%Y-%m-%d %H%M UTC") # We can now use Datetime's strftime method to create a time string.
tlT1 = f"GFS Total Cloud Cover (%)"
tlL1 = f"GFS Low Cloud Cover (%)"
tlM1 = f"GFS Medium Cloud Cover (%)"
tlH1 = f"GFS High Cloud Cover (%)"
tl2 = str(f'Valid at: {timeStr}')
title_line_total = (tlT1 + '\n' + tl2 + '\n')
title_line_low = (tlL1 + '\n' + tl2 + '\n')
title_line_med = (tlM1 + '\n' + tl2 + '\n')
title_line_high = (tlH1 + '\n' + tl2 + '\n')
res = '10m'
fig = plt.figure(figsize=(18,12))
ax1 = fig.add_subplot(2,2,1,projection=proj_map)
ax1.set_extent (mapExtent, crs=ccrs.PlateCarree())
ax1.add_feature (cfeature.COASTLINE.with_scale(res))
ax1.add_feature (cfeature.STATES.with_scale(res))
ax1.add_feature (USCOUNTIES,edgecolor='blue', linewidth=1 );
CF = ax1.contourf (xSub,ySub,TotalSub[times], levels = contourLevels, cmap='Greys_r',alpha=0.5,transform=proj_data)
cbar = fig.colorbar (CF, ax = ax1, fraction=0.046, pad=0.03,shrink=0.8)
title = ax1.set_title(title_line_total,fontsize=16)
ax2 = fig.add_subplot(2,2,2,projection=proj_map)
ax2.set_extent (mapExtent, crs=ccrs.PlateCarree())
ax2.add_feature (cfeature.COASTLINE.with_scale(res))
ax2.add_feature (cfeature.STATES.with_scale(res))
ax2.add_feature (USCOUNTIES,edgecolor='blue', linewidth=1 );
CF = ax2.contourf (xSub,ySub,HighSub[times], levels = contourLevels, cmap='Greys_r',alpha=0.5,transform=proj_data)
cbar = fig.colorbar (CF, ax = ax2, fraction=0.046, pad=0.03,shrink=0.8)
title = ax2.set_title(title_line_high,fontsize=16)
ax3 = fig.add_subplot(2,2,3,projection=proj_map)
ax3.set_extent (mapExtent, crs=ccrs.PlateCarree())
ax3.add_feature (cfeature.COASTLINE.with_scale(res))
ax3.add_feature (cfeature.STATES.with_scale(res))
ax3.add_feature (USCOUNTIES,edgecolor='blue', linewidth=1 );
CF = ax3.contourf (xSub,ySub,MedSub[times], levels = contourLevels, cmap='Greys_r',alpha=0.5,transform=proj_data)
cbar = fig.colorbar (CF, ax = ax3, fraction=0.046, pad=0.03,shrink=0.8)
title = ax3.set_title(title_line_med,fontsize=16)
ax4 = fig.add_subplot(2,2,4,projection=proj_map)
ax4.set_extent (mapExtent, crs=ccrs.PlateCarree())
ax4.add_feature (cfeature.COASTLINE.with_scale(res))
ax4.add_feature (cfeature.STATES.with_scale(res))
ax4.add_feature (USCOUNTIES,edgecolor='blue', linewidth=1 );
CF = ax4.contourf (xSub,ySub,LowSub[times], levels = contourLevels, cmap='Greys_r',alpha=0.5,transform=proj_data)
cbar = fig.colorbar (CF, ax = ax4, fraction=0.046, pad=0.03,shrink=0.8)
title = ax4.set_title(title_line_low,fontsize=16);
fig.tight_layout()
plt.show()

