Interactive plots with Ipyleaflet
Contents
Interactive plots with Ipyleaflet¶
Overview:¶
Interactively display images from remote map servers with ipyleaflet
Overlay gridded data on the interactive map
Imports¶
from datetime import datetime
from ipyleaflet import Map, TileLayer, basemaps, basemap_to_tiles
from ipyleaflet.velocity import Velocity
import xarray as xr
Interactively display images from remote map servers with ipyleaflet¶
While we’ve made some nice looking maps so far in the course, they are all static images … i.e., they can only be viewed … not interacted with. Most of us have browsed interactive map-based websites, such as Google Maps, where we can use our mouse or touch-enabled screen to move around, zoom in or out, or otherwise intereact with the plot. The Javascript programming language is what makes this interactivity possible. Here, we will use a Python package, ipyleaflet, as a “bridge” to Javascript.
First, create an ipyleaflet Map
object with default options. Zoom out with the “-” tool button several times until you see some geographic features. Then, interactively pan around with your mouse/touchpad . At what lat-lon coordinate do you think the map is initially centered?
m = Map(zoom=10)
m
Use a satellite composite as the base image.¶
Now, specify an image tile server and product, using the same sources as those provided by Contextily. Center the map and specify a zoom level.
Create time strings¶
We’ll need to select a date and time, and then pass in date/time objects or strings to various functions below; their format will be function-specific.
timeObj = datetime(2022,9,28,18)
timeStr1 = timeObj.strftime("%Y-%m-%d")
timeStr2 = timeObj.strftime("%Y%m%d_%H%M")
timeStr2
'20220928_1800'
m = Map(
basemap=basemap_to_tiles(basemaps.NASAGIBS.ModisTerraTrueColorCR, timeStr1),
center=(28.5, -85),
zoom=4
)
m
Add a background cartographic layer.¶
We’ll use ipyleaflet’s add_layer
method. We simply add another remote tile server. The default opacity
is 1.0, so reduce that a bit so we still see the satellite layer.
basemapLayer = basemap_to_tiles(basemaps.CartoDB.Positron,opacity=0.5)
m.add_layer(basemapLayer)
# After executing this cell, note that the map has been updated with this layer.
Interact with the dynamic map¶
Zoom in and out with the +/- buttons to see both layers dynamically update.
Overlay gridded data on the interactive map¶
We will display an animated wind velocity flow field, a la https://earth.nullschool.net or https://www.windy.com/.
DataArray
objects so we will exploit that here.
Read in a dataset based on the 0.5-degree resolution GFS on a given date and time.
ds = xr.open_dataset('/spare11/atm533/data/2022092818_gfs.nc')
Examine the dataset
ds
<xarray.Dataset> Dimensions: ( lat: 361, lon: 720, time: 1, height_above_ground: 1, pressure_difference_layer: 1, ... height_above_ground4: 1, height_above_ground5: 2, potential_vorticity_surface: 2, sigma: 1, hybrid: 1, hybrid1: 2) Coordinates: (12/25) * lat (lat) float32 ... * lon (lon) float32 ... reftime datetime64[ns] ... * time (time) datetime64[ns] ... * height_above_ground (height_above_ground) float32 ... * pressure_difference_layer (pressure_difference_layer) float32 ... ... ... * 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: anon0, anon1, anon2, anon3, anon4, anon5, anon6 Data variables: (12/133) LatLon_Projection int32 ... pressure_difference_layer_bounds (pressure_difference_layer, anon0) float32 ... height_above_ground_layer_bounds (height_above_ground_layer, anon1) float32 ... height_above_ground_layer1_bounds (height_above_ground_layer1, anon2) float32 ... pressure_difference_layer1_bounds (pressure_difference_layer1, anon3) float32 ... pressure_difference_layer2_bounds (pressure_difference_layer2, anon4) float32 ... ... ... v-component_of_wind_isobaric (time, isobaric, lat, lon) float32 ... v-component_of_wind_altitude_above_msl (time, altitude_above_msl, lat, lon) float32 ... v-component_of_wind_maximum_wind (time, lat, lon) float32 ... v-component_of_wind_height_above_ground (time, height_above_ground2, lat, lon) float32 ... v-component_of_wind_tropopause (time, lat, lon) float32 ... v-component_of_wind_sigma (time, 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: ...
- lat: 361
- lon: 720
- time: 1
- height_above_ground: 1
- pressure_difference_layer: 1
- anon0: 2
- height_above_ground1: 2
- altitude_above_msl: 3
- altitude_above_msl1: 1
- isobaric: 41
- height_above_ground_layer: 1
- anon1: 2
- height_above_ground_layer1: 1
- anon2: 2
- pressure_difference_layer1: 3
- anon3: 2
- pressure_difference_layer2: 1
- anon4: 2
- height_above_ground2: 7
- sigma_layer: 4
- anon5: 2
- depth_below_surface_layer: 4
- anon6: 2
- height_above_ground3: 3
- isobaric1: 22
- height_above_ground4: 1
- height_above_ground5: 2
- potential_vorticity_surface: 2
- sigma: 1
- hybrid: 1
- hybrid1: 2
- lat(lat)float3290.0 89.5 89.0 ... -89.5 -90.0
- units :
- degrees_north
array([ 90. , 89.5, 89. , ..., -89. , -89.5, -90. ], dtype=float32)
- lon(lon)float320.0 0.5 1.0 ... 358.5 359.0 359.5
- units :
- degrees_east
array([ 0. , 0.5, 1. , ..., 358.5, 359. , 359.5], dtype=float32)
- reftime()datetime64[ns]...
- standard_name :
- forecast_reference_time
- long_name :
- GRIB reference time
array('2022-09-28T18:00:00.000000000', dtype='datetime64[ns]')
- time(time)datetime64[ns]2022-09-28T18:00:00
- standard_name :
- time
- long_name :
- GRIB forecast or observation time
array(['2022-09-28T18: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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
array([0.995], dtype=float32)
- hybrid(hybrid)float321.0
- units :
- sigma
- long_name :
- Hybrid level
- positive :
- down
- Grib_level_type :
- 105
array([1.], dtype=float32)
- hybrid1(hybrid1)float321.0 2.0
- units :
- sigma
- long_name :
- Hybrid level
- positive :
- down
- Grib_level_type :
- 105
array([1., 2.], dtype=float32)
- LatLon_Projection()int32...
- grid_mapping_name :
- latitude_longitude
- earth_radius :
- 6371229.0
array(0, dtype=int32)
- pressure_difference_layer_bounds(pressure_difference_layer, anon0)float32...
- units :
- Pa
- long_name :
- bounds for pressure_difference_layer
array([[25500., 0.]], dtype=float32)
- height_above_ground_layer_bounds(height_above_ground_layer, anon1)float32...
- units :
- m
- long_name :
- bounds for height_above_ground_layer
array([[3000., 0.]], dtype=float32)
- height_above_ground_layer1_bounds(height_above_ground_layer1, anon2)float32...
- units :
- m
- long_name :
- bounds for height_above_ground_layer1
array([[6000., 0.]], dtype=float32)
- pressure_difference_layer1_bounds(pressure_difference_layer1, anon3)float32...
- units :
- Pa
- long_name :
- bounds for pressure_difference_layer1
array([[ 9000., 0.], [18000., 0.], [25500., 0.]], dtype=float32)
- pressure_difference_layer2_bounds(pressure_difference_layer2, anon4)float32...
- units :
- Pa
- long_name :
- bounds for pressure_difference_layer2
array([[3000., 0.]], dtype=float32)
- sigma_layer_bounds(sigma_layer, anon5)float32...
- units :
- sigma
- long_name :
- bounds for sigma_layer
array([[0.44, 0.72], [0.33, 1. ], [0.44, 1. ], [0.72, 0.94]], dtype=float32)
- depth_below_surface_layer_bounds(depth_below_surface_layer, anon6)float32...
- units :
- m
- long_name :
- bounds for depth_below_surface_layer
array([[0. , 0.1], [0.1, 0.4], [0.4, 1. ], [1. , 2. ]], dtype=float32)
- Absolute_vorticity_isobaric(time, 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
[10656720 values with dtype=float32]
- Apparent_temperature_height_above_ground(time, 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
[259920 values with dtype=float32]
- Cloud_mixing_ratio_hybrid(time, 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
[259920 values with dtype=float32]
- Cloud_mixing_ratio_isobaric(time, 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
[5718240 values with dtype=float32]
- Cloud_water_entire_atmosphere_single_layer(time, 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
[259920 values with dtype=float32]
- Convective_available_potential_energy_pressure_difference_layer(time, 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
[779760 values with dtype=float32]
- Convective_available_potential_energy_surface(time, 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
[259920 values with dtype=float32]
- Convective_inhibition_pressure_difference_layer(time, 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
[779760 values with dtype=float32]
- Convective_inhibition_surface(time, 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
[259920 values with dtype=float32]
- Dewpoint_temperature_height_above_ground(time, 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
[259920 values with dtype=float32]
- Geopotential_height_potential_vorticity_surface(time, 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
[519840 values with dtype=float32]
- Geopotential_height_surface(time, 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
[259920 values with dtype=float32]
- Geopotential_height_isobaric(time, 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
[10656720 values with dtype=float32]
- Geopotential_height_zeroDegC_isotherm(time, 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
[259920 values with dtype=float32]
- Geopotential_height_maximum_wind(time, 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
[259920 values with dtype=float32]
- Geopotential_height_tropopause(time, 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
[259920 values with dtype=float32]
- Geopotential_height_highest_tropospheric_freezing(time, 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
[259920 values with dtype=float32]
- Geopotential_height_cloud_ceiling(time, 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
[259920 values with dtype=float32]
- Graupel_snow_pellets_hybrid(time, 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
[259920 values with dtype=float32]
- Graupel_snow_pellets_isobaric(time, 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
[5718240 values with dtype=float32]
- Haines_index_surface(time, 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
[259920 values with dtype=float32]
- High_cloud_cover_high_cloud(time, 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
[259920 values with dtype=float32]
- ICAO_Standard_Atmosphere_Reference_Height_maximum_wind(time, 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
[259920 values with dtype=float32]
- ICAO_Standard_Atmosphere_Reference_Height_tropopause(time, 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
[259920 values with dtype=float32]
- Ice_cover_surface(time, 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
[259920 values with dtype=float32]
- Ice_growth_rate_altitude_above_msl(time, 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
[259920 values with dtype=float32]
- Ice_temperature_surface(time, 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
[259920 values with dtype=float32]
- Ice_thickness_surface(time, 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
[259920 values with dtype=float32]
- Ice_water_mixing_ratio_hybrid(time, 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
[259920 values with dtype=float32]
- Ice_water_mixing_ratio_isobaric(time, 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
[5718240 values with dtype=float32]
- Land_cover_0__sea_1__land_surface(time, 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
[259920 values with dtype=float32]
- Low_cloud_cover_low_cloud(time, 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
[259920 values with dtype=float32]
- Medium_cloud_cover_middle_cloud(time, 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
[259920 values with dtype=float32]
- Per_cent_frozen_precipitation_surface(time, 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
[259920 values with dtype=float32]
- Potential_temperature_sigma(time, 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
[259920 values with dtype=float32]
- Precipitable_water_entire_atmosphere_single_layer(time, 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
[259920 values with dtype=float32]
- Precipitation_rate_surface(time, 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
[259920 values with dtype=float32]
- Pressure_potential_vorticity_surface(time, 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
[519840 values with dtype=float32]
- Pressure_surface(time, 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
[259920 values with dtype=float32]
- Pressure_maximum_wind(time, 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
[259920 values with dtype=float32]
- Pressure_height_above_ground(time, 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
[259920 values with dtype=float32]
- Pressure_tropopause(time, 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
[259920 values with dtype=float32]
- Pressure_reduced_to_MSL_msl(time, 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
[259920 values with dtype=float32]
- Rain_mixing_ratio_hybrid(time, 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
[259920 values with dtype=float32]
- Rain_mixing_ratio_isobaric(time, 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
[5718240 values with dtype=float32]
- Relative_humidity_highest_tropospheric_freezing(time, 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
[259920 values with dtype=float32]
- Relative_humidity_entire_atmosphere_single_layer(time, 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
[259920 values with dtype=float32]
- Relative_humidity_pressure_difference_layer(time, 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
[259920 values with dtype=float32]
- Relative_humidity_sigma_layer(time, 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
[1039680 values with dtype=float32]
- Relative_humidity_isobaric(time, 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
[10656720 values with dtype=float32]
- Relative_humidity_zeroDegC_isotherm(time, 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
[259920 values with dtype=float32]
- Relative_humidity_height_above_ground(time, 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
[259920 values with dtype=float32]
- Relative_humidity_sigma(time, 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
[259920 values with dtype=float32]
- Snow_depth_surface(time, 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
[259920 values with dtype=float32]
- Snow_mixing_ratio_hybrid(time, 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
[259920 values with dtype=float32]
- Snow_mixing_ratio_isobaric(time, 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
[5718240 values with dtype=float32]
- Soil_temperature_depth_below_surface_layer(time, 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
[1039680 values with dtype=float32]
- Soil_type_surface(time, 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
[259920 values with dtype=float32]
- Specific_humidity_pressure_difference_layer(time, 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
[259920 values with dtype=float32]
- Specific_humidity_isobaric(time, 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
[10656720 values with dtype=float32]
- Specific_humidity_height_above_ground(time, 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
[519840 values with dtype=float32]
- Storm_relative_helicity_height_above_ground_layer(time, 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
[259920 values with dtype=float32]
- Surface_roughness_surface(time, 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
[259920 values with dtype=float32]
- Temperature_potential_vorticity_surface(time, 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
[519840 values with dtype=float32]
- Temperature_pressure_difference_layer(time, 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
[259920 values with dtype=float32]
- Temperature_surface(time, 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
[259920 values with dtype=float32]
- Temperature_isobaric(time, 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
[10656720 values with dtype=float32]
- Temperature_altitude_above_msl(time, 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
[779760 values with dtype=float32]
- Temperature_maximum_wind(time, 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
[259920 values with dtype=float32]
- Temperature_tropopause(time, 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
[259920 values with dtype=float32]
- Temperature_height_above_ground(time, 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
[779760 values with dtype=float32]
- Temperature_sigma(time, 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
[259920 values with dtype=float32]
- Total_cloud_cover_entire_atmosphere(time, 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
[259920 values with dtype=float32]
- Total_cloud_cover_isobaric(time, 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
[5718240 values with dtype=float32]
- Total_ozone_entire_atmosphere_single_layer(time, 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
[259920 values with dtype=float32]
- Categorical_Rain_surface(time, 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
[259920 values with dtype=float32]
- Categorical_Freezing_Rain_surface(time, 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
[259920 values with dtype=float32]
- Categorical_Ice_Pellets_surface(time, 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
[259920 values with dtype=float32]
- Categorical_Snow_surface(time, 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
[259920 values with dtype=float32]
- Ozone_Mixing_Ratio_isobaric(time, 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
[10656720 values with dtype=float32]
- Reflectivity_height_above_ground(time, 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
[519840 values with dtype=float32]
- Reflectivity_hybrid(time, 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
[519840 values with dtype=float32]
- Composite_reflectivity_entire_atmosphere(time, 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
[259920 values with dtype=float32]
- Vertical_Speed_Shear_potential_vorticity_surface(time, 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
[519840 values with dtype=float32]
- Vertical_Speed_Shear_tropopause(time, 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
[259920 values with dtype=float32]
- U-Component_Storm_Motion_height_above_ground_layer(time, 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
[259920 values with dtype=float32]
- V-Component_Storm_Motion_height_above_ground_layer(time, 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
[259920 values with dtype=float32]
- Frictional_Velocity_surface(time, 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
[259920 values with dtype=float32]
- Ventilation_Rate_planetary_boundary(time, 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
[259920 values with dtype=float32]
- MSLP_Eta_model_reduction_msl(time, 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
[259920 values with dtype=float32]
- Planetary_Boundary_Layer_Height_surface(time, 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
[259920 values with dtype=float32]
- Pressure_of_level_from_which_parcel_was_lifted_pressure_difference_layer(time, 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
[259920 values with dtype=float32]
- Sunshine_Duration_surface(time, 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
[259920 values with dtype=float32]
- Surface_Lifted_Index_surface(time, 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
[259920 values with dtype=float32]
- Best_4_layer_Lifted_Index_surface(time, 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
[259920 values with dtype=float32]
- Volumetric_Soil_Moisture_Content_depth_below_surface_layer(time, 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
[1039680 values with dtype=float32]
- Plant_Canopy_Surface_Water_surface(time, 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
[259920 values with dtype=float32]
- Wilting_Point_surface(time, 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
[259920 values with dtype=float32]
- Liquid_Volumetric_Soil_Moisture_non_Frozen_depth_below_surface_layer(time, 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
[1039680 values with dtype=float32]
- Field_Capacity_surface(time, 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
[259920 values with dtype=float32]
- Vegetation_surface(time, 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
[259920 values with dtype=float32]
- Vertical_velocity_geometric_isobaric(time, 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
[10656720 values with dtype=float32]
- Vertical_velocity_pressure_isobaric(time, 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
[10656720 values with dtype=float32]
- Vertical_velocity_pressure_sigma(time, 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
[259920 values with dtype=float32]
- Visibility_surface(time, 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
[259920 values with dtype=float32]
- Water_equivalent_of_accumulated_snow_depth_surface(time, 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
[259920 values with dtype=float32]
- Wind_speed_gust_surface(time, 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
[259920 values with dtype=float32]
- u-component_of_wind_planetary_boundary(time, 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
[259920 values with dtype=float32]
- u-component_of_wind_potential_vorticity_surface(time, 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
[519840 values with dtype=float32]
- u-component_of_wind_pressure_difference_layer(time, 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
[259920 values with dtype=float32]
- u-component_of_wind_isobaric(time, 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
[10656720 values with dtype=float32]
- u-component_of_wind_maximum_wind(time, 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
[259920 values with dtype=float32]
- u-component_of_wind_altitude_above_msl(time, 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
[779760 values with dtype=float32]
- u-component_of_wind_tropopause(time, 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
[259920 values with dtype=float32]
- u-component_of_wind_height_above_ground(time, 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
[1819440 values with dtype=float32]
- u-component_of_wind_sigma(time, 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
[259920 values with dtype=float32]
- v-component_of_wind_planetary_boundary(time, 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
[259920 values with dtype=float32]
- v-component_of_wind_potential_vorticity_surface(time, 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
[519840 values with dtype=float32]
- v-component_of_wind_pressure_difference_layer(time, 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
[259920 values with dtype=float32]
- v-component_of_wind_isobaric(time, 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
[10656720 values with dtype=float32]
- v-component_of_wind_altitude_above_msl(time, 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
[779760 values with dtype=float32]
- v-component_of_wind_maximum_wind(time, 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
[259920 values with dtype=float32]
- v-component_of_wind_height_above_ground(time, 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
[1819440 values with dtype=float32]
- v-component_of_wind_tropopause(time, 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
[259920 values with dtype=float32]
- v-component_of_wind_sigma(time, 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
[259920 values with dtype=float32]
- 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
Specify an analysis time, and then create DataArray
objects that are subset for the specified time and the 20m AGL level (this is the lowest level in the dataset)
u = ds['u-component_of_wind_height_above_ground'].sel(time=timeObj,height_above_ground2=20)
v = ds['v-component_of_wind_height_above_ground'].sel(time=timeObj,height_above_ground2=20)
Create a Dataset that contains just the wind components¶
ipyleaflet’s Velocity
method produces an animated streamline effect. It accepts an Xarray dataset that contains just two arrays … specifically, the u- and v- components of the wind vector we have chosen for visualization.
(Perhaps there is a more efficient way of doing this, but the following cell will create a new Xarray Dataset that consists of just two arrays … u and v.)
# First create the Dataset out of the 'u' Dataarray
dsWind = u.to_dataset()
# Append v to the Dataset
dsWind['v'] = v
# Rename the u DataArray to 'u'
name_dict = {'u-component_of_wind_height_above_ground':'u'}
dsWind = dsWind.rename_vars(name_dict)
# Verify that the Dataset looks ok
dsWind
<xarray.Dataset> Dimensions: (lat: 361, lon: 720) Coordinates: * lat (lat) float32 90.0 89.5 89.0 ... -89.0 -89.5 -90.0 * lon (lon) float32 0.0 0.5 1.0 1.5 ... 358.5 359.0 359.5 reftime datetime64[ns] 2022-09-28T18:00:00 time datetime64[ns] 2022-09-28T18:00:00 height_above_ground2 float32 20.0 Data variables: u (lat, lon) float32 ... v (lat, lon) float32 ...
- lat: 361
- lon: 720
- lat(lat)float3290.0 89.5 89.0 ... -89.5 -90.0
- units :
- degrees_north
array([ 90. , 89.5, 89. , ..., -89. , -89.5, -90. ], dtype=float32)
- lon(lon)float320.0 0.5 1.0 ... 358.5 359.0 359.5
- units :
- degrees_east
array([ 0. , 0.5, 1. , ..., 358.5, 359. , 359.5], dtype=float32)
- reftime()datetime64[ns]2022-09-28T18:00:00
- standard_name :
- forecast_reference_time
- long_name :
- GRIB reference time
array('2022-09-28T18:00:00.000000000', dtype='datetime64[ns]')
- time()datetime64[ns]2022-09-28T18:00:00
- standard_name :
- time
- long_name :
- GRIB forecast or observation time
array('2022-09-28T18:00:00.000000000', dtype='datetime64[ns]')
- height_above_ground2()float3220.0
- units :
- m
- long_name :
- Specified height level above ground
- positive :
- up
- Grib_level_type :
- 103
- datum :
- ground
array(20., dtype=float32)
- u(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
[259920 values with dtype=float32]
- v(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
[259920 values with dtype=float32]
Create the animation¶
Center it, specify a zoom level, and select a background map; create and add a velocity layer from the Dataset that contains u and v.
center = (27.0, -85.0)
zoom = 6
m = Map(center=center, zoom=zoom, interpolation='nearest', basemap=basemaps.CartoDB.DarkMatter)
display_options = {
'velocityType': 'Global Wind',
'displayPosition': 'bottomleft',
'displayEmptyString': 'No wind data'
}
wind = Velocity(data=dsWind,
zonal_speed='u',
meridional_speed='v',
latitude_dimension='lat',
longitude_dimension='lon',
velocity_scale=0.01,
max_velocity=120,
display_options=display_options)
m.add_layer(wind)
Display the map.¶
m
If you move your mouse/touchpad, you will see direction and speed at the nearest gridpoint displayed at the bottom left of the frame.
- Create a velocity map using gridded data from another source ... such as RDA or another datasource from the Unidata THREDDS Server.
- Make this notebook dynamic in terms of date so it will always provide a recent (e.g. one day ago) visualization.
Summary¶
Ipyleaflet provides Javascript-enabled interactivity in a Jupyter notebook.
Ipyleaflet’s
Velocity
function creates a flow-vector field that can be layered onto a basemap.The
Velocity
function accepts an Xarray dataset that contains the u- and v- wind components.
What’s Next?¶
We’ll continue to explore interactive visualizations, next with the Holoviz suite of packages.