DMI uses and codevelops the weather model HARMONIE. The weather model produces forecast data for e.g. temperature, dew point temperature, cloud cover, wind, pressure and several others parameters. DMI’s weather model HARMONIE covers the geographical area Northwestern Europe (NEA). ´he weather model uses a grid resolution of 2.5 km. DMI’s HARMONIE model runs cycle 43 for NEA (https://journals.ametsoc.org/view/journals/mwre/145/5/mwr-d-16-0417.1.xml) with boundary conditions from the global weather model ECMWF.
The model focuses on events that take place on small scale but can have serious outcomes, e.g. extreme precipitation like cloudburst (convective precipitation) and rapidly changing storm low.
HARMONIE is an abbreviation of Hirlam Aladin Research towards Mesoscale Operational NWP in Europe and is developed through an international collaboration. Hirlam and Aladin are the names of two groups of meteorological institutions in Europe, therefore HARMONIE has a broad European foundation.
DMI’s HARMONIE model also creates start input for DMI’s downstream ocean models (Wave Model WAM and Storm Surge model DKSS).
DMI’s HARMONIE model runs every hour on our supercomputer located in Iceland. DMI only collects the deterministic run every third hour (00z, 03z, 06z, 09z, 12z, 15z, 18z and 21z). Every run produces a forecast of the atmospheres 3-dimensional condition for the next days.
The forecast range for HARMONIE varies based on what time the model run begins. In the table below, you can see the forecast range for the different model run times:
DMI-HARMONIE model runs - length of forecast in hours | ||||||||
Analysis | 00z | 03z | 06z | 09z | 12z | 15z | 18z | 21z |
Forecast range NEA | 54 | 54 | 54 | 54 | 54 | 54 | 54 | 54 |
Forcing | ECMWF |
HARMONIE has one geographical area: NEA that covers Northwestern Europe. IGB has been replaced with the IG model.
DMI-HARMONIE model areas | |
Model | NEA |
Grid/spatial resolution (in the source file) | 1/40° (ca. 2.5 km) |
Longitude | 28W-37E |
Latitude | 44N-73N |
Open boundaries | ECMWF GLM |
The weather model has three types of model output:
The surface files consist of a combination of the model’s surface scheme and interpolation from the model layers. The surface files therefore consists of parameters that are defined by the surface (e.g. soil temperature, 2 m temperature, 10 m wind). The surface files also contain parameters that are integrated across layers through the entire atmosphere (e.g. precipitation and cloud cover). It is in the surface level files, that you will find the most common parameters.
Please also see the parameter list.
The first raw output data from the model are model levels. NEA has 65 layers that all describe the atmosphere. The layers are placed close together at the surface and gradually move further apart up through the atmosphere. Close by the earth’s surface the layers follow the surface’s topography. Further up in the atmosphere the layers follow the pressure levels.
Please also see the parameter list.
The model levels are recalculated to relevant pressure levels (see pressure levels below) and selected parameters are interpolated to these pressure levels.
The pressure levels are: 1000, 950, 925, 900, 850, 800, 700, 600, 500, 400, 300, 250, 200, 150, 100, and 50hPa.
The calculated parameters are: vertical speed, wind components u and v, temperature, geopotential, relative humidity, geometrical vertical speed, pseudoadiabatic potential temperature, potential vorticity.
Please also see the parameter list.
The data in the HARMONIE grib files are given in rotated latitude and longitude coordinates in order to minimize the files size. Therefore the coordinates in the grib files have to be rotated correctly before they can be used. If this is not done, the coordinates are not correct (located in a grid around the equator and prime meridian ie. lat/lon 0,0.)
E.g., the extends in the grib file HARMONIE_NEA is -22.761,-0.631 : 3.397,22.887, which should be -28.620508,44.3829 : 37.007052,72.876.
Some programs like GDAL based tools (QGIS for example) understand this rotation and can do this automatically. Some tools do not.
DMI's HARMONIE model uses a rotated pole coordinate reference system. For the NEA model (North East Atlantic, ie. Denmark) its south pole is at 26.5°,-40°.
All coordinates in the HARMONIE model are defined in these coordinate systems. In order to convert the coordinates to a "regular" coordinate system (something using the equator as 0 parallel and prime meridian as 0 meridian e.g. WGS84), you have to rotate the earth sphere on which the coordinate sits. You perform the same rotation the south pole of the coordinate system has gone through, so in the case of the NEA model you would rotate 50 degrees north (from -90° to -40°) and 26.5 degrees east (from 0° to 26.5°). The reverse process is applicable if you have coordinate that you need to find in the model coordinate system.
Conversion by rotation is easier said than done, so DMI recommends using either the PROJ projection software (see PROJ section below) or copying/translating the provided code below (see "Using Code" section below).
If you are using wind data, be advised that wind direction is defined in its native rotated pole coordinate reference system, and must also be rotated if you transform the coordinates into a geodetic coordinate system (ie. latitude/longitude). For more on this, see the "Rotating parameter values" section.
A rotated pole coordinate system is a latitude/longitude grid that is rotated so its south pole aligns with a given coordinate. As an example, the south pole of HARMONIE NEA must be rotated to longitude 26.5° and latitude -40°. The animation below illustrates how this rotation works. The end result is the coordinate system of the coordinates in the HARMONIE NEA model. This is where rotated pole gets its name from.
In the animation the black lines are reference latitude/longitude lines. The red points are sample points in the HARMONIE model, and of course stay the same in physical space regardless of which coordinate system is used. The yellow point is where the south pole of the coordinate system must be rotated to.
A cylindrical map projection of this new coordinate system with its new 0 parallel and meridian (ie. an oblique mercator projection) yields a map like this:
Notice how the HARMONIE NEA model area (ie. the blue/red square showing temperature) is perfectly square. The underlying coordinates for the data points are in a grid, where all rows share latitude, and all columns share longitude. Having the coordinates in a grid structure makes model data easier to work with.
There are great advantages in using this coordinate system, and the main ones are:
The coordinate system locates the HARMONIE model domain close to the 0 parallel (ie. its "new" equator), so the deviation of distance and area is relatively low in the model domain. If you find the deviation negligible, the coordinate system can be treated as a Cartesian coordinate system.
The coordinate system gives the model domain nice local coordinates, ie. coordinates are situated around the coordinate (0,0)
When combined with an oblique mercator projection like the one shown above, a map of weather phenomenons will pretty accurately show features like shape, distance and area within the model area
PROJ is a generic coordinate transformation software that transforms geospatial coordinates from one coordinate reference system (CRS) to another.
The coordinate reference system used by either HARMONIE model is not in the public EPSG registry, meaning it's a non-standard coordinate reference system. Therefore, this custom proj-string must be used to transform coordinates to a geodetic coordinate system (ie. latitude/longitude).
For HARMONIE NEA the proj string is:
+proj=ob_tran +o_proj=longlat +o_lon_p=0 +o_lat_p=40 +lon_0=26.5 +R=6367470 +no_defs |
The proj-string describes an oblique transformation. Proj only supports rotation of a north pole, but rotating based on either south pole or north pole is 2 sides of the same coin, as long as the parameters are correct.
To rotate the coordinates in the grib files to the correct location the following C-code can be used:
void rot2reg(double rot_lat, double rot_lon,
double *reg_lat, double *reg_lon,
float southpole_lat, float southpole_lon)
/* Convert from rotated latitude-longitude to regular latitude-longitude
with the transformation defined by the southpole coordinates.
Coordinates are given in degrees N (negative for S) and degrees E
(negative for W). */
{
double to_rad, to_deg, sin_y_cen, cos_y_cen;
double lon_rad, sin_lon_rad, cos_lon_rad, sin_y_reg, cos_y_reg,
sin_y_rot, cos_y_rot, cos_x_rot, sin_x_rot;
to_rad = M_PI/180.0;
to_deg = 1.0/to_rad;
sin_y_cen = sin(to_rad*(southpole_lat + 90.0));
cos_y_cen = cos(to_rad*(southpole_lat + 90.0));
sin_x_rot = sin(to_rad*rot_lon);
cos_x_rot = cos(to_rad*rot_lon);
sin_y_rot = sin(to_rad*rot_lat);
cos_y_rot = cos(to_rad*rot_lat);
sin_y_reg = cos_y_cen*sin_y_rot + sin_y_cen*cos_y_rot*cos_x_rot;
if (sin_y_reg < -1.0) sin_y_reg = -1.0;
if (sin_y_reg > 1.0) sin_y_reg = 1.0;
*reg_lat = (float) to_deg*asin(sin_y_reg);
cos_y_reg = cos(*reg_lat*to_rad);
cos_lon_rad = (cos_y_cen*cos_y_rot*cos_x_rot - sin_y_cen*sin_y_rot)/cos_y_reg;
if (cos_lon_rad < -1.0) cos_lon_rad = -1.0;
if (cos_lon_rad > 1.0) cos_lon_rad = 1.0;
sin_lon_rad = cos_y_rot*sin_x_rot/cos_y_reg;
lon_rad = acos(cos_lon_rad);
if (sin_lon_rad < 0.0) lon_rad = -lon_rad;
*reg_lon = to_deg*lon_rad + southpole_lon;
}
WDIR should not be rotated, but wind u/v values have to be rotated to match the rotated coordinates. This can be done with the following C-code:
void rotate_wind(double *rot_lat, double *rot_lon,
double *reg_lat, double *reg_lon,
double u_in, double v_in,
double *u_out, double *v_out,
double *strength, double *direction,
float southpole_lat, float southpole_lon)
/* Given either a point in the regular grid (set `*rot_lat' <= -999.0)
* or a point in the rotated grid, calculate the corresponding point
* in the opposite grid, change the (u, v)-vector from rotated to
* regular grid and calculate the wind force (`*strength') and the
* wind direction in the regular grid. `southpole_lat' and
* `southpole_lon' defines the coordinate of the southpole in
* the roated grid */
{
double rot_lat2, rot_lon2, reg_lat2, reg_lon2, clat, direc, dx;
/* Find the missing point, whether is is the rotated or the regular */
if (*rot_lat <= -999.0) reg2rot(*reg_lat, *reg_lon,
rot_lat, rot_lon,
southpole_lat, southpole_lon);
else rot2reg(*rot_lat, *rot_lon, reg_lat, reg_lon,
southpole_lat, southpole_lon);
/* Calculate the wind strength */
*strength = sqrt(u_in*u_in + v_in*v_in);
/* Add a small distance in the direction of the wind to the rotated
* grid point, changing the distance into degrees */
rot_lat2 = (*rot_lat) + 0.1*v_in/(*strength);
clat = cos((*rot_lat)*M_PI/180.0);
if (0.0001 > clat && clat > -0.0001) {
fprintf(stderr, "Internal error: Too close to pole to calculate rotated wind\n");
return;
}
rot_lon2 = (*rot_lon) + 0.1*u_in/(*strength * clat);
/* Translate new rotated grid point to regular grid */
rot2reg(rot_lat2, rot_lon2, ®_lat2, ®_lon2,
southpole_lat, southpole_lon);
/* Transform offset in lat-lon to offset in x-y */
clat = cos((*reg_lat)*M_PI/180.0);
dx = clat*(reg_lon2 - *reg_lon);
/* Calculate the direction of the wind vector in the regular grid */
direc = atan2(reg_lat2 - *reg_lat, dx);
/* Regular direction in degrees */
*direction = 630.0 - direc*180.0 / M_PI;
while (*direction > 360.0) *direction -= 360.0;
*u_out = cos(direc) * (*strength);
*v_out = sin(direc) * (*strength);
}
void reg2rot(double reg_lat, double reg_lon,
double *rot_lat, double *rot_lon,
float southpole_lat, float southpole_lon)
/* Convert from regular latitude-longitude to rotated latitude-longitude
with the transformation defined by the southpole coordinates.
Coordinates are given in degrees N (negative for S) and degrees E
(negative for W). */
{
double to_rad, to_deg, sin_y_cen, cos_y_cen;
double lon_rad, sin_lon_rad, cos_lon_rad, sin_y_reg, cos_y_reg,
sin_y_rot, cos_y_rot, cos_x_rot, sin_x_rot;
to_rad = M_PI/180.0;
to_deg = 1.0/to_rad;
sin_y_cen = sin(to_rad*(southpole_lat + 90.0));
cos_y_cen = cos(to_rad*(southpole_lat + 90.0));
lon_rad = to_rad*(reg_lon - southpole_lon);
sin_lon_rad = sin(lon_rad);
cos_lon_rad = cos(lon_rad);
sin_y_reg = sin(to_rad*reg_lat);
cos_y_reg = cos(to_rad*reg_lat);
sin_y_rot = cos_y_cen*sin_y_reg - sin_y_cen*cos_y_reg*cos_lon_rad;
if (sin_y_rot < -1.0) sin_y_rot = -1.0;
if (sin_y_rot > 1.0) sin_y_rot = 1.0;
*rot_lat = (float) asin(sin_y_rot)*to_deg;
cos_y_rot = cos(*rot_lat*to_rad);
cos_x_rot = (cos_y_cen*cos_y_reg*cos_lon_rad + sin_y_cen*sin_y_reg)/cos_y_rot;
if (cos_x_rot < -1.0) cos_x_rot = -1.0;
if (cos_x_rot > 1.0) cos_x_rot = 1.0;
sin_x_rot = cos_y_reg*sin_lon_rad/cos_y_rot;
*rot_lon = (float) acos(cos_x_rot)*to_deg;
if (sin_x_rot < 0.0) *rot_lon = -(*rot_lon);
}
The indicatorOfParameter and paramId are mostly internal values and it is therefore important to use a local definition file - see instructions here.
With local definitions in place it is possible via shortname and name to determine what the parameter is for.
levelType = 103 means mean sea level. So level = 0, levelType = 103 means 0 meters over mean sea level.
levelType = sfc means ground surface. So level = 2, levelType = sfc means 2 meters above ground surface.
typeOfLevel = hybrid is a combination of height and pressure levels and cannot be used as either height in meters or pressure levels. This is for advanced use-cases and can be used for additional details in case Surface or Pressure Level files are not enough.
Number | editionNumber | indicatorOfParameter | paramId | level | levelType | typeOfLevel | shortName | name | gridType | units |
1 | 1 | 1 | 94253001 | 0 | 103 | heightAboveSea | pres | Pressure | rotated_ll | Pa |
2 | 1 | 54 | 94253054 | 0 | sfc | entireAtmosphere | wvint | Total column integral water vapour | rotated_ll | kg m**-2 |
3 | 1 | 71 | 94253071 | 0 | sfc | heightAboveGround | tcc | Total cloud cover | rotated_ll | 0-1 |
4 | 1 | 160 | 94253160 | 0 | sfc | heightAboveGround | cape | Convective Available Potential Energy | rotated_ll | J kg**-1 |
5 | 1 | 165 | 94253165 | 0 | sfc | heightAboveGround | cin | Convective inhibition | rotated_ll | J kg**-1 |
6 | 1 | 167 | 94253167 | 0 | sfc | heightAboveGround | lcl | Lifting condensation level | rotated_ll | m |
7 | 1 | 168 | 94253168 | 0 | sfc | heightAboveGround | lfc | Level of free convection | rotated_ll | m |
8 | 1 | 169 | 94253169 | 0 | sfc | heightAboveGround | lnb | Level of neutral buoyancy | rotated_ll | m |
9 | 1 | 111 | 94253111 | 0 | sfc | heightAboveGround | nswrs | Net shortwave radiation flux (surface) | rotated_ll | J m**-2 |
10 | 1 | 112 | 94253112 | 0 | sfc | heightAboveGround | nlwrs | Net longwave radiation flux (surface) | rotated_ll | J m**-2 |
11 | 1 | 113 | 94253113 | 0 | sfc | nominalTop | nswrt | Net shortwave radiation flux(atmosph.top) | rotated_ll | J m**-2 |
12 | 1 | 114 | 94253114 | 0 | sfc | nominalTop | nlwrt | Net longwave radiation flux(atmosph.top) | rotated_ll | J m**-2 |
13 | 1 | 115 | 94253115 | 0 | sfc | heightAboveGround | lwavr | Longwave radiation flux | rotated_ll | J m**-2 |
14 | 1 | 117 | 94253117 | 0 | sfc | heightAboveGround | grad | Global radiation flux | rotated_ll | J m**-2 |
15 | 1 | 122 | 94253122 | 0 | sfc | heightAboveGround | shf | Sensible heat flux | rotated_ll | J m**-2 |
16 | 1 | 124 | 94253124 | 0 | sfc | heightAboveGround | uflx | Momentum flux, u-component | rotated_ll | N m**-2 |
17 | 1 | 125 | 94253125 | 0 | sfc | heightAboveGround | vflx | Momentum flux, v-component | rotated_ll | N m**-2 |
18 | 1 | 132 | 94253132 | 0 | sfc | heightAboveGround | lhe | Latent heat flux through evaporation | rotated_ll | J m**-2 |
19 | 1 | 33 | 94253033 | 50 | sfc | heightAboveGround | u | u-component of wind | rotated_ll | m s**-1 |
20 | 1 | 34 | 94253034 | 50 | sfc | heightAboveGround | v | v-component of wind | rotated_ll | m s**-1 |
21 | 1 | 33 | 94253033 | 100 | sfc | heightAboveGround | u | u-component of wind | rotated_ll | m s**-1 |
22 | 1 | 34 | 94253034 | 100 | sfc | heightAboveGround | v | v-component of wind | rotated_ll | m s**-1 |
23 | 1 | 33 | 94253033 | 150 | sfc | heightAboveGround | u | u-component of wind | rotated_ll | m s**-1 |
24 | 1 | 34 | 94253034 | 150 | sfc | heightAboveGround | v | v-component of wind | rotated_ll | m s**-1 |
25 | 1 | 33 | 94253033 | 250 | sfc | heightAboveGround | u | u-component of wind | rotated_ll | m s**-1 |
26 | 1 | 34 | 94253034 | 250 | sfc | heightAboveGround | v | v-component of wind | rotated_ll | m s**-1 |
27 | 1 | 11 | 94253011 | 50 | sfc | heightAboveGround | t | Temperature | rotated_ll | K |
28 | 1 | 11 | 94253011 | 100 | sfc | heightAboveGround | t | Temperature | rotated_ll | K |
29 | 1 | 11 | 94253011 | 150 | sfc | heightAboveGround | t | Temperature | rotated_ll | K |
30 | 1 | 11 | 94253011 | 250 | sfc | heightAboveGround | t | Temperature | rotated_ll | K |
31 | 1 | 52 | 94253052 | 50 | sfc | heightAboveGround | r | Relative humidity | rotated_ll | 0-1 |
32 | 1 | 52 | 94253052 | 100 | sfc | heightAboveGround | r | Relative humidity | rotated_ll | 0-1 |
33 | 1 | 52 | 94253052 | 150 | sfc | heightAboveGround | r | Relative humidity | rotated_ll | 0-1 |
34 | 1 | 52 | 94253052 | 250 | sfc | heightAboveGround | r | Relative humidity | rotated_ll | 0-1 |
35 | 1 | 8 | 94253008 | 0 | sfc | isothermZero | h | Geometrical height | rotated_ll | m |
36 | 1 | 8 | 94253008 | 26315 | isth | isothermal | h | Geometrical height | rotated_ll | m |
37 | 1 | 1 | 94253001 | 50 | sfc | heightAboveGround | pres | Pressure | rotated_ll | Pa |
38 | 1 | 1 | 94253001 | 100 | sfc | heightAboveGround | pres | Pressure | rotated_ll | Pa |
39 | 1 | 1 | 94253001 | 150 | sfc | heightAboveGround | pres | Pressure | rotated_ll | Pa |
40 | 1 | 1 | 94253001 | 250 | sfc | heightAboveGround | pres | Pressure | rotated_ll | Pa |
41 | 1 | 67 | 94253067 | 0 | sfc | heightAboveGround | mld | Mixed layer depth | rotated_ll | m |
42 | 1 | 181 | 942531810 | 0 | sfc | heightAboveGround | rain | Rain | rotated_ll | kg m**-2 |
43 | 1 | 184 | 942531840 | 0 | sfc | heightAboveGround | snow | Total snowfall rate water equivalent | rotated_ll | kg m**-2 |
44 | 1 | 201 | 942532010 | 0 | sfc | heightAboveGround | grpl | Graupel precipitation rate | rotated_ll | kg m**-2 s**-1 |
45 | 1 | 244 | 94253244 | 0 | sfc | heightAboveGround | lhsub | Latent Heat Sublimation | rotated_ll | J kg**-1 |
46 | 1 | 89 | 94253089 | 50 | sfc | heightAboveGround | den | Density | rotated_ll | kg m**-3 |
47 | 1 | 89 | 94253089 | 100 | sfc | heightAboveGround | den | Density | rotated_ll | kg m**-3 |
48 | 1 | 89 | 94253089 | 150 | sfc | heightAboveGround | den | Density | rotated_ll | kg m**-3 |
49 | 1 | 89 | 94253089 | 250 | sfc | heightAboveGround | den | Density | rotated_ll | kg m**-3 |
50 | 1 | 1 | 94253001 | 0 | sfc | heightAboveGround | pres | Pressure | rotated_ll | Pa |
51 | 1 | 6 | 94253006 | 0 | sfc | heightAboveGround | z | Geopotential | rotated_ll | m**2 s**-2 |
52 | 1 | 11 | 94253011 | 2 | sfc | heightAboveGround | t | Temperature | rotated_ll | K |
53 | 1 | 11 | 94253011 | 0 | sfc | heightAboveGround | t | Temperature | rotated_ll | K |
54 | 1 | 15 | 94253015 | 2 | sfc | heightAboveGround | tmax | Maximum temperature | rotated_ll | K |
55 | 1 | 16 | 94253016 | 2 | sfc | heightAboveGround | tmin | Minimum temperature | rotated_ll | K |
56 | 1 | 17 | 94253017 | 2 | sfc | heightAboveGround | td | Dew point temperature | rotated_ll | K |
57 | 1 | 20 | 94253020 | 0 | sfc | heightAboveGround | vis | Visibility | rotated_ll | m |
58 | 1 | 33 | 94253033 | 10 | sfc | heightAboveGround | u | u-component of wind | rotated_ll | m s**-1 |
59 | 1 | 34 | 94253034 | 10 | sfc | heightAboveGround | v | v-component of wind | rotated_ll | m s**-1 |
60 | 1 | 51 | 94253051 | 2 | sfc | heightAboveGround | q | Specific humidity | rotated_ll | kg kg**-1 |
61 | 1 | 52 | 94253052 | 2 | sfc | heightAboveGround | r | Relative humidity | rotated_ll | 0-1 |
62 | 1 | 58 | 942530580 | 0 | sfc | entireAtmosphere | ciwc | Cloud ice water content | rotated_ll | kg m**-2 |
63 | 1 | 61 | 94253061 | 0 | sfc | heightAboveGround | tp | Total precipitation | rotated_ll | kg m**-2 |
64 | 1 | 65 | 94253065 | 0 | sfc | heightAboveGround | sdwe | Snow depth water equivalent | rotated_ll | kg m**-2 |
65 | 1 | 71 | 94253071 | 2 | sfc | heightAboveGround | tcc | Total cloud cover | rotated_ll | 0-1 |
66 | 1 | 73 | 94253073 | 0 | sfc | heightAboveGround | lcc | Low cloud cover | rotated_ll | 0-1 |
67 | 1 | 74 | 94253074 | 0 | sfc | heightAboveGround | mcc | Medium cloud cover | rotated_ll | 0-1 |
68 | 1 | 75 | 94253075 | 0 | sfc | heightAboveGround | hcc | High cloud cover | rotated_ll | 0-1 |
69 | 1 | 76 | 94253076 | 0 | sfc | entireAtmosphere | cwat_cond | Specific cloud liquid water content | rotated_ll | kg kg**-1 |
70 | 1 | 116 | 94253116 | 0 | sfc | heightAboveGround | swavr | Shortwave radiation flux | rotated_ll | J m**-2 |
71 | 1 | 133 | 94253133 | 0 | sfc | entireAtmosphere | msca | Mask of significant cloud amount | rotated_ll | 0-1 |
72 | 1 | 135 | 94253135 | 0 | sfc | heightAboveGround | icei | Icing index | rotated_ll | - |
73 | 1 | 136 | 94253136 | 0 | sfc | heightAboveGround | psct | Pseudo satellite image: cloud top temperature (infrared) | rotated_ll | K |
74 | 1 | 137 | 94253137 | 0 | sfc | heightAboveGround | pstb | Pseudo satellite image: water vapour Tb | rotated_ll | K |
75 | 1 | 138 | 94253138 | 0 | sfc | heightAboveGround | pstbc | Pseudo satellite image: water vapour Tb + correction for clouds | rotated_ll | K |
76 | 1 | 139 | 94253139 | 0 | sfc | heightAboveGround | pscw | Pseudo satellite image: cloud water reflectivity (visible) | rotated_ll | - |
77 | 1 | 161 | 94253161 | 0 | sfc | heightAboveGround | xhail | AROME hail diagnostic | rotated_ll | kg m**-2 |
78 | 1 | 162 | 94253162 | 10 | sfc | heightAboveGround | ugst | Gust, u-component | rotated_ll | m s**-1 |
79 | 1 | 163 | 94253163 | 10 | sfc | heightAboveGround | vgst | Gust, v-component | rotated_ll | m s**-1 |
80 | 1 | 185 | 94253185 | 0 | sfc | heightAboveGround | tpsolid | Total solid precipitation | rotated_ll | kg m**-2 |
81 | 1 | 186 | 94253186 | 0 | sfc | entireAtmosphere | cb | Cloud base | rotated_ll | m |
82 | 1 | 187 | 94253187 | 0 | sfc | entireAtmosphere | ct | Cloud top | rotated_ll | m |
83 | 1 | 201 | 942532010 | 0 | sfc | entireAtmosphere | grpl | Graupel precipitation rate | rotated_ll | kg m**-2 s**-1 |
84 | 1 | 209 | 94253209 | 0 | sfc | entireAtmosphere | lgt | Lightning | rotated_ll | flash h**-1 |
85 | 1 | 228 | 94253228 | 10 | sfc | heightAboveGround | fg | Gust wind speed | rotated_ll | m s**-1 |
86 | 1 | 81 | 94253081 | 0 | sfc | heightAboveGround | lsm | Land-sea mask | rotated_ll | 0-1 |
87 | 1 | 11 | 94253011 | 65 | ml | hybrid | t | Temperature | rotated_ll | K |
88 | 1 | 33 | 94253033 | 65 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
89 | 1 | 34 | 94253034 | 65 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
90 | 1 | 31 | 94253031 | 10 | sfc | heightAboveGround | wdir | Wind direction | rotated_ll | Degree true |
91 | 1 | 32 | 94253032 | 10 | sfc | heightAboveGround | ws | Wind speed | rotated_ll | m s**-1 |
92 | 1 | 144 | 94253144 | 0 | sfc | heightAboveGround | prtp | Precipitation Type | rotated_ll | code |
93 | 1 | 148 | 94253148 | 0 | sfc | heightAboveGround | hti | Helicopter Triggered ligthning Index | rotated_ll | - |
94 | 1 | 11 | 94253011 | 2 | 103 | heightAboveSea | t | Temperature | rotated_ll | K |
95 | 1 | 51 | 94253051 | 2 | 103 | heightAboveSea | q | Specific humidity | rotated_ll | kg kg**-1 |
96 | 1 | 33 | 94253033 | 10 | 103 | heightAboveSea | u | u-component of wind | rotated_ll | m s**-1 |
97 | 1 | 34 | 94253034 | 10 | 103 | heightAboveSea | v | v-component of wind | rotated_ll | m s**-1 |
98 | 1 | 1 | 54 | 300 | sfc | heightAboveGround | pres | Pressure | rotated_ll | Pa |
99 | 1 | 11 | 130 | 0 | sfc | meanSea | t | Temperature | rotated_ll | K |
100 | 1 | 11 | 130 | 760 | sfc | heightAboveGround | t | Temperature | rotated_ll | K |
101 | 1 | 11 | 130 | 772 | sfc | heightAboveGround | t | Temperature | rotated_ll | K |
102 | 1 | 11 | 130 | 802 | sfc | heightAboveGround | t | Temperature | rotated_ll | K |
103 | 1 | 11 | 130 | 950 | sfc | heightAboveGround | t | Temperature | rotated_ll | K |
104 | 1 | 12 | 300012 | 830 | sfc | heightAboveGround | vtmp | Canopy Water (bladfugt) | rotated_ll | Kg * m**-2 |
105 | 1 | 16 | 3016 | 300 | sfc | heightAboveGround | tmin | Minimum temperature | rotated_ll | K |
106 | 1 | 33 | 131 | 760 | sfc | heightAboveGround | u | U component of wind | rotated_ll | m s**-1 |
107 | 1 | 34 | 132 | 760 | sfc | heightAboveGround | v | V component of wind | rotated_ll | m s**-1 |
108 | 1 | 33 | 131 | 770 | sfc | heightAboveGround | u | U component of wind | rotated_ll | m s**-1 |
109 | 1 | 34 | 132 | 770 | sfc | heightAboveGround | v | V component of wind | rotated_ll | m s**-1 |
110 | 1 | 33 | 131 | 800 | sfc | heightAboveGround | u | U component of wind | rotated_ll | m s**-1 |
111 | 1 | 34 | 132 | 800 | sfc | heightAboveGround | v | V component of wind | rotated_ll | m s**-1 |
112 | 1 | 33 | 131 | 950 | sfc | heightAboveGround | u | U component of wind | rotated_ll | m s**-1 |
113 | 1 | 34 | 132 | 950 | sfc | heightAboveGround | v | V component of wind | rotated_ll | m s**-1 |
114 | 1 | 51 | 133 | 760 | sfc | heightAboveGround | q | Specific humidity | rotated_ll | kg kg**-1 |
115 | 1 | 52 | 157 | 760 | sfc | heightAboveGround | r | Relative humidity | rotated_ll | % |
116 | 1 | 52 | 157 | 772 | sfc | heightAboveGround | r | Relative humidity | rotated_ll | % |
117 | 1 | 52 | 157 | 802 | sfc | heightAboveGround | r | Relative humidity | rotated_ll | % |
118 | 1 | 52 | 157 | 950 | sfc | heightAboveGround | r | Relative humidity | rotated_ll | % |
119 | 1 | 83 | 173 | 760 | sfc | heightAboveGround | sr | Surface roughness | rotated_ll | m |
120 | 1 | 84 | 260509 | 800 | sfc | heightAboveGround | al | Albedo | rotated_ll | % |
121 | 1 | 121 | 3121 | 0 | sfc | heightAboveGround | lhf | Latent heat flux | rotated_ll | W m**-2 |
122 | 1 | 122 | 3122 | 0 | sfc | heightAboveGround | shf | Sensible heat flux | rotated_ll | W m**-2 |
123 | 1 | 124 | 3124 | 0 | sfc | heightAboveGround | uflx | Momentum flux, u-component | rotated_ll | N m**-2 |
124 | 1 | 125 | 3125 | 0 | sfc | heightAboveGround | vflx | Momentum flux, v-component | rotated_ll | N m**-2 |
Number | editionNumber | indicatorOfParameter | paramId | level | levelType | typeOfLevel | shortName | name | gridType | units |
1 | 1 | 40 | 94253040 | 8 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
2 | 1 | 40 | 94253040 | 9 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
3 | 1 | 40 | 94253040 | 10 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
4 | 1 | 40 | 94253040 | 11 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
5 | 1 | 40 | 94253040 | 12 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
6 | 1 | 40 | 94253040 | 13 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
7 | 1 | 40 | 94253040 | 14 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
8 | 1 | 40 | 94253040 | 15 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
9 | 1 | 40 | 94253040 | 16 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
10 | 1 | 40 | 94253040 | 17 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
11 | 1 | 40 | 94253040 | 18 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
12 | 1 | 40 | 94253040 | 19 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
13 | 1 | 40 | 94253040 | 20 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
14 | 1 | 40 | 94253040 | 21 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
15 | 1 | 40 | 94253040 | 22 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
16 | 1 | 40 | 94253040 | 23 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
17 | 1 | 40 | 94253040 | 24 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
18 | 1 | 40 | 94253040 | 25 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
19 | 1 | 40 | 94253040 | 26 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
20 | 1 | 40 | 94253040 | 27 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
21 | 1 | 40 | 94253040 | 28 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
22 | 1 | 40 | 94253040 | 29 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
23 | 1 | 40 | 94253040 | 30 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
24 | 1 | 40 | 94253040 | 31 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
25 | 1 | 40 | 94253040 | 32 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
26 | 1 | 40 | 94253040 | 33 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
27 | 1 | 40 | 94253040 | 34 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
28 | 1 | 40 | 94253040 | 35 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
29 | 1 | 40 | 94253040 | 36 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
30 | 1 | 40 | 94253040 | 37 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
31 | 1 | 40 | 94253040 | 38 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
32 | 1 | 40 | 94253040 | 39 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
33 | 1 | 40 | 94253040 | 40 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
34 | 1 | 40 | 94253040 | 41 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
35 | 1 | 40 | 94253040 | 42 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
36 | 1 | 40 | 94253040 | 43 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
37 | 1 | 40 | 94253040 | 44 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
38 | 1 | 40 | 94253040 | 45 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
39 | 1 | 40 | 94253040 | 46 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
40 | 1 | 40 | 94253040 | 47 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
41 | 1 | 40 | 94253040 | 48 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
42 | 1 | 40 | 94253040 | 49 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
43 | 1 | 40 | 94253040 | 50 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
44 | 1 | 40 | 94253040 | 51 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
45 | 1 | 40 | 94253040 | 52 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
46 | 1 | 40 | 94253040 | 53 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
47 | 1 | 40 | 94253040 | 54 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
48 | 1 | 40 | 94253040 | 55 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
49 | 1 | 40 | 94253040 | 56 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
50 | 1 | 40 | 94253040 | 57 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
51 | 1 | 40 | 94253040 | 58 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
52 | 1 | 40 | 94253040 | 59 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
53 | 1 | 40 | 94253040 | 60 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
54 | 1 | 40 | 94253040 | 61 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
55 | 1 | 40 | 94253040 | 62 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
56 | 1 | 40 | 94253040 | 63 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
57 | 1 | 40 | 94253040 | 64 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
58 | 1 | 40 | 94253040 | 65 | ml | hybrid | w | Geometrical vertical velocity | rotated_ll | m s**-1 |
59 | 1 | 11 | 94253011 | 8 | ml | hybrid | t | Temperature | rotated_ll | K |
60 | 1 | 11 | 94253011 | 9 | ml | hybrid | t | Temperature | rotated_ll | K |
61 | 1 | 11 | 94253011 | 10 | ml | hybrid | t | Temperature | rotated_ll | K |
62 | 1 | 11 | 94253011 | 11 | ml | hybrid | t | Temperature | rotated_ll | K |
63 | 1 | 11 | 94253011 | 12 | ml | hybrid | t | Temperature | rotated_ll | K |
64 | 1 | 11 | 94253011 | 13 | ml | hybrid | t | Temperature | rotated_ll | K |
65 | 1 | 11 | 94253011 | 14 | ml | hybrid | t | Temperature | rotated_ll | K |
66 | 1 | 11 | 94253011 | 15 | ml | hybrid | t | Temperature | rotated_ll | K |
67 | 1 | 11 | 94253011 | 16 | ml | hybrid | t | Temperature | rotated_ll | K |
68 | 1 | 11 | 94253011 | 17 | ml | hybrid | t | Temperature | rotated_ll | K |
69 | 1 | 11 | 94253011 | 18 | ml | hybrid | t | Temperature | rotated_ll | K |
70 | 1 | 11 | 94253011 | 19 | ml | hybrid | t | Temperature | rotated_ll | K |
71 | 1 | 11 | 94253011 | 20 | ml | hybrid | t | Temperature | rotated_ll | K |
72 | 1 | 11 | 94253011 | 21 | ml | hybrid | t | Temperature | rotated_ll | K |
73 | 1 | 11 | 94253011 | 22 | ml | hybrid | t | Temperature | rotated_ll | K |
74 | 1 | 11 | 94253011 | 23 | ml | hybrid | t | Temperature | rotated_ll | K |
75 | 1 | 11 | 94253011 | 24 | ml | hybrid | t | Temperature | rotated_ll | K |
76 | 1 | 11 | 94253011 | 25 | ml | hybrid | t | Temperature | rotated_ll | K |
77 | 1 | 11 | 94253011 | 26 | ml | hybrid | t | Temperature | rotated_ll | K |
78 | 1 | 11 | 94253011 | 27 | ml | hybrid | t | Temperature | rotated_ll | K |
79 | 1 | 11 | 94253011 | 28 | ml | hybrid | t | Temperature | rotated_ll | K |
80 | 1 | 11 | 94253011 | 29 | ml | hybrid | t | Temperature | rotated_ll | K |
81 | 1 | 11 | 94253011 | 30 | ml | hybrid | t | Temperature | rotated_ll | K |
82 | 1 | 11 | 94253011 | 31 | ml | hybrid | t | Temperature | rotated_ll | K |
83 | 1 | 11 | 94253011 | 32 | ml | hybrid | t | Temperature | rotated_ll | K |
84 | 1 | 11 | 94253011 | 33 | ml | hybrid | t | Temperature | rotated_ll | K |
85 | 1 | 11 | 94253011 | 34 | ml | hybrid | t | Temperature | rotated_ll | K |
86 | 1 | 11 | 94253011 | 35 | ml | hybrid | t | Temperature | rotated_ll | K |
87 | 1 | 11 | 94253011 | 36 | ml | hybrid | t | Temperature | rotated_ll | K |
88 | 1 | 11 | 94253011 | 37 | ml | hybrid | t | Temperature | rotated_ll | K |
89 | 1 | 11 | 94253011 | 38 | ml | hybrid | t | Temperature | rotated_ll | K |
90 | 1 | 11 | 94253011 | 39 | ml | hybrid | t | Temperature | rotated_ll | K |
91 | 1 | 11 | 94253011 | 40 | ml | hybrid | t | Temperature | rotated_ll | K |
92 | 1 | 11 | 94253011 | 41 | ml | hybrid | t | Temperature | rotated_ll | K |
93 | 1 | 11 | 94253011 | 42 | ml | hybrid | t | Temperature | rotated_ll | K |
94 | 1 | 11 | 94253011 | 43 | ml | hybrid | t | Temperature | rotated_ll | K |
95 | 1 | 11 | 94253011 | 44 | ml | hybrid | t | Temperature | rotated_ll | K |
96 | 1 | 11 | 94253011 | 45 | ml | hybrid | t | Temperature | rotated_ll | K |
97 | 1 | 11 | 94253011 | 46 | ml | hybrid | t | Temperature | rotated_ll | K |
98 | 1 | 11 | 94253011 | 47 | ml | hybrid | t | Temperature | rotated_ll | K |
99 | 1 | 11 | 94253011 | 48 | ml | hybrid | t | Temperature | rotated_ll | K |
100 | 1 | 11 | 94253011 | 49 | ml | hybrid | t | Temperature | rotated_ll | K |
101 | 1 | 11 | 94253011 | 50 | ml | hybrid | t | Temperature | rotated_ll | K |
102 | 1 | 11 | 94253011 | 51 | ml | hybrid | t | Temperature | rotated_ll | K |
103 | 1 | 11 | 94253011 | 52 | ml | hybrid | t | Temperature | rotated_ll | K |
104 | 1 | 11 | 94253011 | 53 | ml | hybrid | t | Temperature | rotated_ll | K |
105 | 1 | 11 | 94253011 | 54 | ml | hybrid | t | Temperature | rotated_ll | K |
106 | 1 | 11 | 94253011 | 55 | ml | hybrid | t | Temperature | rotated_ll | K |
107 | 1 | 11 | 94253011 | 56 | ml | hybrid | t | Temperature | rotated_ll | K |
108 | 1 | 11 | 94253011 | 57 | ml | hybrid | t | Temperature | rotated_ll | K |
109 | 1 | 11 | 94253011 | 58 | ml | hybrid | t | Temperature | rotated_ll | K |
110 | 1 | 11 | 94253011 | 59 | ml | hybrid | t | Temperature | rotated_ll | K |
111 | 1 | 11 | 94253011 | 60 | ml | hybrid | t | Temperature | rotated_ll | K |
112 | 1 | 11 | 94253011 | 61 | ml | hybrid | t | Temperature | rotated_ll | K |
113 | 1 | 11 | 94253011 | 62 | ml | hybrid | t | Temperature | rotated_ll | K |
114 | 1 | 11 | 94253011 | 63 | ml | hybrid | t | Temperature | rotated_ll | K |
115 | 1 | 11 | 94253011 | 64 | ml | hybrid | t | Temperature | rotated_ll | K |
116 | 1 | 11 | 94253011 | 65 | ml | hybrid | t | Temperature | rotated_ll | K |
117 | 1 | 33 | 94253033 | 8 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
118 | 1 | 34 | 94253034 | 8 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
119 | 1 | 33 | 94253033 | 9 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
120 | 1 | 34 | 94253034 | 9 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
121 | 1 | 33 | 94253033 | 10 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
122 | 1 | 34 | 94253034 | 10 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
123 | 1 | 33 | 94253033 | 11 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
124 | 1 | 34 | 94253034 | 11 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
125 | 1 | 33 | 94253033 | 12 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
126 | 1 | 34 | 94253034 | 12 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
127 | 1 | 33 | 94253033 | 13 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
128 | 1 | 34 | 94253034 | 13 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
129 | 1 | 33 | 94253033 | 14 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
130 | 1 | 34 | 94253034 | 14 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
131 | 1 | 33 | 94253033 | 15 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
132 | 1 | 34 | 94253034 | 15 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
133 | 1 | 33 | 94253033 | 16 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
134 | 1 | 34 | 94253034 | 16 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
135 | 1 | 33 | 94253033 | 17 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
136 | 1 | 34 | 94253034 | 17 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
137 | 1 | 33 | 94253033 | 18 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
138 | 1 | 34 | 94253034 | 18 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
139 | 1 | 33 | 94253033 | 19 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
140 | 1 | 34 | 94253034 | 19 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
141 | 1 | 33 | 94253033 | 20 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
142 | 1 | 34 | 94253034 | 20 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
143 | 1 | 33 | 94253033 | 21 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
144 | 1 | 34 | 94253034 | 21 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
145 | 1 | 33 | 94253033 | 22 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
146 | 1 | 34 | 94253034 | 22 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
147 | 1 | 33 | 94253033 | 23 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
148 | 1 | 34 | 94253034 | 23 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
149 | 1 | 33 | 94253033 | 24 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
150 | 1 | 34 | 94253034 | 24 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
151 | 1 | 33 | 94253033 | 25 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
152 | 1 | 34 | 94253034 | 25 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
153 | 1 | 33 | 94253033 | 26 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
154 | 1 | 34 | 94253034 | 26 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
155 | 1 | 33 | 94253033 | 27 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
156 | 1 | 34 | 94253034 | 27 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
157 | 1 | 33 | 94253033 | 28 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
158 | 1 | 34 | 94253034 | 28 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
159 | 1 | 33 | 94253033 | 29 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
160 | 1 | 34 | 94253034 | 29 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
161 | 1 | 33 | 94253033 | 30 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
162 | 1 | 34 | 94253034 | 30 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
163 | 1 | 33 | 94253033 | 31 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
164 | 1 | 34 | 94253034 | 31 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
165 | 1 | 33 | 94253033 | 32 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
166 | 1 | 34 | 94253034 | 32 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
167 | 1 | 33 | 94253033 | 33 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
168 | 1 | 34 | 94253034 | 33 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
169 | 1 | 33 | 94253033 | 34 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
170 | 1 | 34 | 94253034 | 34 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
171 | 1 | 33 | 94253033 | 35 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
172 | 1 | 34 | 94253034 | 35 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
173 | 1 | 33 | 94253033 | 36 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
174 | 1 | 34 | 94253034 | 36 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
175 | 1 | 33 | 94253033 | 37 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
176 | 1 | 34 | 94253034 | 37 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
177 | 1 | 33 | 94253033 | 38 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
178 | 1 | 34 | 94253034 | 38 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
179 | 1 | 33 | 94253033 | 39 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
180 | 1 | 34 | 94253034 | 39 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
181 | 1 | 33 | 94253033 | 40 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
182 | 1 | 34 | 94253034 | 40 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
183 | 1 | 33 | 94253033 | 41 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
184 | 1 | 34 | 94253034 | 41 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
185 | 1 | 33 | 94253033 | 42 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
186 | 1 | 34 | 94253034 | 42 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
187 | 1 | 33 | 94253033 | 43 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
188 | 1 | 34 | 94253034 | 43 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
189 | 1 | 33 | 94253033 | 44 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
190 | 1 | 34 | 94253034 | 44 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
191 | 1 | 33 | 94253033 | 45 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
192 | 1 | 34 | 94253034 | 45 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
193 | 1 | 33 | 94253033 | 46 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
194 | 1 | 34 | 94253034 | 46 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
195 | 1 | 33 | 94253033 | 47 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
196 | 1 | 34 | 94253034 | 47 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
197 | 1 | 33 | 94253033 | 48 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
198 | 1 | 34 | 94253034 | 48 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
199 | 1 | 33 | 94253033 | 49 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
200 | 1 | 34 | 94253034 | 49 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
201 | 1 | 33 | 94253033 | 50 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
202 | 1 | 34 | 94253034 | 50 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
203 | 1 | 33 | 94253033 | 51 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
204 | 1 | 34 | 94253034 | 51 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
205 | 1 | 33 | 94253033 | 52 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
206 | 1 | 34 | 94253034 | 52 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
207 | 1 | 33 | 94253033 | 53 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
208 | 1 | 34 | 94253034 | 53 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
209 | 1 | 33 | 94253033 | 54 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
210 | 1 | 34 | 94253034 | 54 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
211 | 1 | 33 | 94253033 | 55 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
212 | 1 | 34 | 94253034 | 55 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
213 | 1 | 33 | 94253033 | 56 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
214 | 1 | 34 | 94253034 | 56 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
215 | 1 | 33 | 94253033 | 57 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
216 | 1 | 34 | 94253034 | 57 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
217 | 1 | 33 | 94253033 | 58 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
218 | 1 | 34 | 94253034 | 58 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
219 | 1 | 33 | 94253033 | 59 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
220 | 1 | 34 | 94253034 | 59 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
221 | 1 | 33 | 94253033 | 60 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
222 | 1 | 34 | 94253034 | 60 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
223 | 1 | 33 | 94253033 | 61 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
224 | 1 | 34 | 94253034 | 61 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
225 | 1 | 33 | 94253033 | 62 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
226 | 1 | 34 | 94253034 | 62 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
227 | 1 | 33 | 94253033 | 63 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
228 | 1 | 34 | 94253034 | 63 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
229 | 1 | 33 | 94253033 | 64 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
230 | 1 | 34 | 94253034 | 64 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
231 | 1 | 33 | 94253033 | 65 | ml | hybrid | u | u-component of wind | rotated_ll | m s**-1 |
232 | 1 | 34 | 94253034 | 65 | ml | hybrid | v | v-component of wind | rotated_ll | m s**-1 |
233 | 1 | 51 | 94253051 | 52 | ml | hybrid | q | Specific humidity | rotated_ll | kg kg**-1 |
234 | 1 | 51 | 94253051 | 53 | ml | hybrid | q | Specific humidity | rotated_ll | kg kg**-1 |
235 | 1 | 51 | 94253051 | 54 | ml | hybrid | q | Specific humidity | rotated_ll | kg kg**-1 |
236 | 1 | 51 | 94253051 | 55 | ml | hybrid | q | Specific humidity | rotated_ll | kg kg**-1 |
237 | 1 | 51 | 94253051 | 56 | ml | hybrid | q | Specific humidity | rotated_ll | kg kg**-1 |
238 | 1 | 51 | 94253051 | 57 | ml | hybrid | q | Specific humidity | rotated_ll | kg kg**-1 |
239 | 1 | 51 | 94253051 | 58 | ml | hybrid | q | Specific humidity | rotated_ll | kg kg**-1 |
240 | 1 | 51 | 94253051 | 59 | ml | hybrid | q | Specific humidity | rotated_ll | kg kg**-1 |
241 | 1 | 51 | 94253051 | 60 | ml | hybrid | q | Specific humidity | rotated_ll | kg kg**-1 |
242 | 1 | 51 | 94253051 | 61 | ml | hybrid | q | Specific humidity | rotated_ll | kg kg**-1 |
243 | 1 | 51 | 94253051 | 62 | ml | hybrid | q | Specific humidity | rotated_ll | kg kg**-1 |
244 | 1 | 51 | 94253051 | 63 | ml | hybrid | q | Specific humidity | rotated_ll | kg kg**-1 |
245 | 1 | 51 | 94253051 | 64 | ml | hybrid | q | Specific humidity | rotated_ll | kg kg**-1 |
246 | 1 | 51 | 94253051 | 65 | ml | hybrid | q | Specific humidity | rotated_ll | kg kg**-1 |
247 | 1 | 71 | 94253071 | 8 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
248 | 1 | 71 | 94253071 | 9 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
249 | 1 | 71 | 94253071 | 10 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
250 | 1 | 71 | 94253071 | 11 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
251 | 1 | 71 | 94253071 | 12 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
252 | 1 | 71 | 94253071 | 13 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
253 | 1 | 71 | 94253071 | 14 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
254 | 1 | 71 | 94253071 | 15 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
255 | 1 | 71 | 94253071 | 16 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
256 | 1 | 71 | 94253071 | 17 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
257 | 1 | 71 | 94253071 | 18 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
258 | 1 | 71 | 94253071 | 19 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
259 | 1 | 71 | 94253071 | 20 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
260 | 1 | 71 | 94253071 | 21 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
261 | 1 | 71 | 94253071 | 22 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
262 | 1 | 71 | 94253071 | 23 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
263 | 1 | 71 | 94253071 | 24 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
264 | 1 | 71 | 94253071 | 25 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
265 | 1 | 71 | 94253071 | 26 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
266 | 1 | 71 | 94253071 | 27 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
267 | 1 | 71 | 94253071 | 28 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
268 | 1 | 71 | 94253071 | 29 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
269 | 1 | 71 | 94253071 | 30 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
270 | 1 | 71 | 94253071 | 31 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
271 | 1 | 71 | 94253071 | 32 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
272 | 1 | 71 | 94253071 | 33 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
273 | 1 | 71 | 94253071 | 34 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
274 | 1 | 71 | 94253071 | 35 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
275 | 1 | 71 | 94253071 | 36 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
276 | 1 | 71 | 94253071 | 37 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
277 | 1 | 71 | 94253071 | 38 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
278 | 1 | 71 | 94253071 | 39 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
279 | 1 | 71 | 94253071 | 40 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
280 | 1 | 71 | 94253071 | 41 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
281 | 1 | 71 | 94253071 | 42 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
282 | 1 | 71 | 94253071 | 43 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
283 | 1 | 71 | 94253071 | 44 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
284 | 1 | 71 | 94253071 | 45 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
285 | 1 | 71 | 94253071 | 46 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
286 | 1 | 71 | 94253071 | 47 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
287 | 1 | 71 | 94253071 | 48 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
288 | 1 | 71 | 94253071 | 49 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
289 | 1 | 71 | 94253071 | 50 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
290 | 1 | 71 | 94253071 | 51 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
291 | 1 | 71 | 94253071 | 52 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
292 | 1 | 71 | 94253071 | 53 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
293 | 1 | 71 | 94253071 | 54 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
294 | 1 | 71 | 94253071 | 55 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
295 | 1 | 71 | 94253071 | 56 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
296 | 1 | 71 | 94253071 | 57 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
297 | 1 | 71 | 94253071 | 58 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
298 | 1 | 71 | 94253071 | 59 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
299 | 1 | 71 | 94253071 | 60 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
300 | 1 | 71 | 94253071 | 61 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
301 | 1 | 71 | 94253071 | 62 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
302 | 1 | 71 | 94253071 | 63 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
303 | 1 | 71 | 94253071 | 64 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
304 | 1 | 71 | 94253071 | 65 | ml | hybrid | tcc | Total cloud cover | rotated_ll | 0-1 |
305 | 1 | 76 | 94253076 | 52 | ml | hybrid | cwat_cond | Specific cloud liquid water content | rotated_ll | kg kg**-1 |
306 | 1 | 76 | 94253076 | 53 | ml | hybrid | cwat_cond | Specific cloud liquid water content | rotated_ll | kg kg**-1 |
307 | 1 | 76 | 94253076 | 54 | ml | hybrid | cwat_cond | Specific cloud liquid water content | rotated_ll | kg kg**-1 |
308 | 1 | 76 | 94253076 | 55 | ml | hybrid | cwat_cond | Specific cloud liquid water content | rotated_ll | kg kg**-1 |
309 | 1 | 76 | 94253076 | 56 | ml | hybrid | cwat_cond | Specific cloud liquid water content | rotated_ll | kg kg**-1 |
310 | 1 | 76 | 94253076 | 57 | ml | hybrid | cwat_cond | Specific cloud liquid water content | rotated_ll | kg kg**-1 |
311 | 1 | 76 | 94253076 | 58 | ml | hybrid | cwat_cond | Specific cloud liquid water content | rotated_ll | kg kg**-1 |
312 | 1 | 76 | 94253076 | 59 | ml | hybrid | cwat_cond | Specific cloud liquid water content | rotated_ll | kg kg**-1 |
313 | 1 | 76 | 94253076 | 60 | ml | hybrid | cwat_cond | Specific cloud liquid water content | rotated_ll | kg kg**-1 |
314 | 1 | 76 | 94253076 | 61 | ml | hybrid | cwat_cond | Specific cloud liquid water content | rotated_ll | kg kg**-1 |
315 | 1 | 76 | 94253076 | 62 | ml | hybrid | cwat_cond | Specific cloud liquid water content | rotated_ll | kg kg**-1 |
316 | 1 | 76 | 94253076 | 63 | ml | hybrid | cwat_cond | Specific cloud liquid water content | rotated_ll | kg kg**-1 |
317 | 1 | 76 | 94253076 | 64 | ml | hybrid | cwat_cond | Specific cloud liquid water content | rotated_ll | kg kg**-1 |
318 | 1 | 76 | 94253076 | 65 | ml | hybrid | cwat_cond | Specific cloud liquid water content | rotated_ll | kg kg**-1 |
319 | 1 | 181 | 942531811 | 40 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
320 | 1 | 181 | 942531811 | 41 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
321 | 1 | 181 | 942531811 | 42 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
322 | 1 | 181 | 942531811 | 43 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
323 | 1 | 181 | 942531811 | 44 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
324 | 1 | 181 | 942531811 | 45 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
325 | 1 | 181 | 942531811 | 46 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
326 | 1 | 181 | 942531811 | 47 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
327 | 1 | 181 | 942531811 | 48 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
328 | 1 | 181 | 942531811 | 49 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
329 | 1 | 181 | 942531811 | 50 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
330 | 1 | 181 | 942531811 | 51 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
331 | 1 | 181 | 942531811 | 52 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
332 | 1 | 181 | 942531811 | 53 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
333 | 1 | 181 | 942531811 | 54 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
334 | 1 | 181 | 942531811 | 55 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
335 | 1 | 181 | 942531811 | 56 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
336 | 1 | 181 | 942531811 | 57 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
337 | 1 | 181 | 942531811 | 58 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
338 | 1 | 181 | 942531811 | 59 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
339 | 1 | 181 | 942531811 | 60 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
340 | 1 | 181 | 942531811 | 61 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
341 | 1 | 181 | 942531811 | 62 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
342 | 1 | 181 | 942531811 | 63 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
343 | 1 | 181 | 942531811 | 64 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
344 | 1 | 181 | 942531811 | 65 | ml | hybrid | rain_cond | Specific rain water content | rotated_ll | kg kg**-1 |
345 | 1 | 184 | 942531841 | 40 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
346 | 1 | 184 | 942531841 | 41 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
347 | 1 | 184 | 942531841 | 42 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
348 | 1 | 184 | 942531841 | 43 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
349 | 1 | 184 | 942531841 | 44 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
350 | 1 | 184 | 942531841 | 45 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
351 | 1 | 184 | 942531841 | 46 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
352 | 1 | 184 | 942531841 | 47 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
353 | 1 | 184 | 942531841 | 48 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
354 | 1 | 184 | 942531841 | 49 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
355 | 1 | 184 | 942531841 | 50 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
356 | 1 | 184 | 942531841 | 51 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
357 | 1 | 184 | 942531841 | 52 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
358 | 1 | 184 | 942531841 | 53 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
359 | 1 | 184 | 942531841 | 54 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
360 | 1 | 184 | 942531841 | 55 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
361 | 1 | 184 | 942531841 | 56 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
362 | 1 | 184 | 942531841 | 57 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
363 | 1 | 184 | 942531841 | 58 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
364 | 1 | 184 | 942531841 | 59 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
365 | 1 | 184 | 942531841 | 60 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
366 | 1 | 184 | 942531841 | 61 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
367 | 1 | 184 | 942531841 | 62 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
368 | 1 | 184 | 942531841 | 63 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
369 | 1 | 184 | 942531841 | 64 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
370 | 1 | 184 | 942531841 | 65 | ml | hybrid | snow_cond | Specific snow water content | rotated_ll | kg kg**-1 |
371 | 1 | 200 | 94001200 | 8 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
372 | 1 | 200 | 94001200 | 9 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
373 | 1 | 200 | 94001200 | 10 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
374 | 1 | 200 | 94001200 | 11 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
375 | 1 | 200 | 94001200 | 12 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
376 | 1 | 200 | 94001200 | 13 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
377 | 1 | 200 | 94001200 | 14 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
378 | 1 | 200 | 94001200 | 15 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
379 | 1 | 200 | 94001200 | 16 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
380 | 1 | 200 | 94001200 | 17 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
381 | 1 | 200 | 94001200 | 18 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
382 | 1 | 200 | 94001200 | 19 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
383 | 1 | 200 | 94001200 | 20 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
384 | 1 | 200 | 94001200 | 21 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
385 | 1 | 200 | 94001200 | 22 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
386 | 1 | 200 | 94001200 | 23 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
387 | 1 | 200 | 94001200 | 24 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
388 | 1 | 200 | 94001200 | 25 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
389 | 1 | 200 | 94001200 | 26 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
390 | 1 | 200 | 94001200 | 27 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
391 | 1 | 200 | 94001200 | 28 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
392 | 1 | 200 | 94001200 | 29 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
393 | 1 | 200 | 94001200 | 30 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
394 | 1 | 200 | 94001200 | 31 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
395 | 1 | 200 | 94001200 | 32 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
396 | 1 | 200 | 94001200 | 33 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
397 | 1 | 200 | 94001200 | 34 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
398 | 1 | 200 | 94001200 | 35 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
399 | 1 | 200 | 94001200 | 36 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
400 | 1 | 200 | 94001200 | 37 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
401 | 1 | 200 | 94001200 | 38 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
402 | 1 | 200 | 94001200 | 39 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
403 | 1 | 200 | 94001200 | 40 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
404 | 1 | 200 | 94001200 | 41 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
405 | 1 | 200 | 94001200 | 42 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
406 | 1 | 200 | 94001200 | 43 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
407 | 1 | 200 | 94001200 | 44 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
408 | 1 | 200 | 94001200 | 45 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
409 | 1 | 200 | 94001200 | 46 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
410 | 1 | 200 | 94001200 | 47 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
411 | 1 | 200 | 94001200 | 48 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
412 | 1 | 200 | 94001200 | 49 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
413 | 1 | 200 | 94001200 | 50 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
414 | 1 | 200 | 94001200 | 51 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
415 | 1 | 200 | 94001200 | 52 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
416 | 1 | 200 | 94001200 | 53 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
417 | 1 | 200 | 94001200 | 54 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
418 | 1 | 200 | 94001200 | 55 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
419 | 1 | 200 | 94001200 | 56 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
420 | 1 | 200 | 94001200 | 57 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
421 | 1 | 200 | 94001200 | 58 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
422 | 1 | 200 | 94001200 | 59 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
423 | 1 | 200 | 94001200 | 60 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
424 | 1 | 200 | 94001200 | 61 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
425 | 1 | 200 | 94001200 | 62 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
426 | 1 | 200 | 94001200 | 63 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
427 | 1 | 200 | 94001200 | 64 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
428 | 1 | 200 | 94001200 | 65 | ml | hybrid | tke | Turbulent Kinetic Energy | rotated_ll | J kg**-1 |
429 | 1 | 201 | 942532011 | 40 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
430 | 1 | 201 | 942532011 | 41 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
431 | 1 | 201 | 942532011 | 42 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
432 | 1 | 201 | 942532011 | 43 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
433 | 1 | 201 | 942532011 | 44 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
434 | 1 | 201 | 942532011 | 45 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
435 | 1 | 201 | 942532011 | 46 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
436 | 1 | 201 | 942532011 | 47 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
437 | 1 | 201 | 942532011 | 48 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
438 | 1 | 201 | 942532011 | 49 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
439 | 1 | 201 | 942532011 | 50 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
440 | 1 | 201 | 942532011 | 51 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
441 | 1 | 201 | 942532011 | 52 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
442 | 1 | 201 | 942532011 | 53 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
443 | 1 | 201 | 942532011 | 54 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
444 | 1 | 201 | 942532011 | 55 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
445 | 1 | 201 | 942532011 | 56 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
446 | 1 | 201 | 942532011 | 57 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
447 | 1 | 201 | 942532011 | 58 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
448 | 1 | 201 | 942532011 | 59 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
449 | 1 | 201 | 942532011 | 60 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
450 | 1 | 201 | 942532011 | 61 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
451 | 1 | 201 | 942532011 | 62 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
452 | 1 | 201 | 942532011 | 63 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
453 | 1 | 201 | 942532011 | 64 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
454 | 1 | 201 | 942532011 | 65 | ml | hybrid | grpl_cond | Specific graupel | rotated_ll | kg kg**-1 |
Number | editionNumber | indicatorOfParameter | paramId | level | levelType | typeOfLevel | shortName | name | gridType | units |
1 | 1 | 14 | 94253014 | 50 | pl | isobaricInhPa | papt | Pseudo-adiabatic potential temperature | rotated_ll | K |
2 | 1 | 52 | 94253052 | 50 | pl | isobaricInhPa | r | Relative humidity | rotated_ll | 0-1 |
3 | 1 | 6 | 94253006 | 50 | pl | isobaricInhPa | z | Geopotential | rotated_ll | m**2 s**-2 |
4 | 1 | 11 | 94253011 | 50 | pl | isobaricInhPa | t | Temperature | rotated_ll | K |
5 | 1 | 33 | 94253033 | 50 | pl | isobaricInhPa | u | u-component of wind | rotated_ll | m s**-1 |
6 | 1 | 34 | 94253034 | 50 | pl | isobaricInhPa | v | v-component of wind | rotated_ll | m s**-1 |
7 | 1 | 14 | 94253014 | 100 | pl | isobaricInhPa | papt | Pseudo-adiabatic potential temperature | rotated_ll | K |
8 | 1 | 52 | 94253052 | 100 | pl | isobaricInhPa | r | Relative humidity | rotated_ll | 0-1 |
9 | 1 | 6 | 94253006 | 100 | pl | isobaricInhPa | z | Geopotential | rotated_ll | m**2 s**-2 |
10 | 1 | 11 | 94253011 | 100 | pl | isobaricInhPa | t | Temperature | rotated_ll | K |
11 | 1 | 33 | 94253033 | 100 | pl | isobaricInhPa | u | u-component of wind | rotated_ll | m s**-1 |
12 | 1 | 34 | 94253034 | 100 | pl | isobaricInhPa | v | v-component of wind | rotated_ll | m s**-1 |
13 | 1 | 14 | 94253014 | 150 | pl | isobaricInhPa | papt | Pseudo-adiabatic potential temperature | rotated_ll | K |
14 | 1 | 52 | 94253052 | 150 | pl | isobaricInhPa | r | Relative humidity | rotated_ll | 0-1 |
15 | 1 | 6 | 94253006 | 150 | pl | isobaricInhPa | z | Geopotential | rotated_ll | m**2 s**-2 |
16 | 1 | 11 | 94253011 | 150 | pl | isobaricInhPa | t | Temperature | rotated_ll | K |
17 | 1 | 33 | 94253033 | 150 | pl | isobaricInhPa | u | u-component of wind | rotated_ll | m s**-1 |
18 | 1 | 34 | 94253034 | 150 | pl | isobaricInhPa | v | v-component of wind | rotated_ll | m s**-1 |
19 | 1 | 14 | 94253014 | 200 | pl | isobaricInhPa | papt | Pseudo-adiabatic potential temperature | rotated_ll | K |
20 | 1 | 52 | 94253052 | 200 | pl | isobaricInhPa | r | Relative humidity | rotated_ll | 0-1 |
21 | 1 | 6 | 94253006 | 200 | pl | isobaricInhPa | z | Geopotential | rotated_ll | m**2 s**-2 |
22 | 1 | 11 | 94253011 | 200 | pl | isobaricInhPa | t | Temperature | rotated_ll | K |
23 | 1 | 33 | 94253033 | 200 | pl | isobaricInhPa | u | u-component of wind | rotated_ll | m s**-1 |
24 | 1 | 34 | 94253034 | 200 | pl | isobaricInhPa | v | v-component of wind | rotated_ll | m s**-1 |
25 | 1 | 14 | 94253014 | 250 | pl | isobaricInhPa | papt | Pseudo-adiabatic potential temperature | rotated_ll | K |
26 | 1 | 52 | 94253052 | 250 | pl | isobaricInhPa | r | Relative humidity | rotated_ll | 0-1 |
27 | 1 | 6 | 94253006 | 250 | pl | isobaricInhPa | z | Geopotential | rotated_ll | m**2 s**-2 |
28 | 1 | 11 | 94253011 | 250 | pl | isobaricInhPa | t | Temperature | rotated_ll | K |
29 | 1 | 33 | 94253033 | 250 | pl | isobaricInhPa | u | u-component of wind | rotated_ll | m s**-1 |
30 | 1 | 34 | 94253034 | 250 | pl | isobaricInhPa | v | v-component of wind | rotated_ll | m s**-1 |
31 | 1 | 14 | 94253014 | 300 | pl | isobaricInhPa | papt | Pseudo-adiabatic potential temperature | rotated_ll | K |
32 | 1 | 52 | 94253052 | 300 | pl | isobaricInhPa | r | Relative humidity | rotated_ll | 0-1 |
33 | 1 | 6 | 94253006 | 300 | pl | isobaricInhPa | z | Geopotential | rotated_ll | m**2 s**-2 |
34 | 1 | 11 | 94253011 | 300 | pl | isobaricInhPa | t | Temperature | rotated_ll | K |
35 | 1 | 33 | 94253033 | 300 | pl | isobaricInhPa | u | u-component of wind | rotated_ll | m s**-1 |
36 | 1 | 34 | 94253034 | 300 | pl | isobaricInhPa | v | v-component of wind | rotated_ll | m s**-1 |
37 | 1 | 14 | 94253014 | 400 | pl | isobaricInhPa | papt | Pseudo-adiabatic potential temperature | rotated_ll | K |
38 | 1 | 52 | 94253052 | 400 | pl | isobaricInhPa | r | Relative humidity | rotated_ll | 0-1 |
39 | 1 | 6 | 94253006 | 400 | pl | isobaricInhPa | z | Geopotential | rotated_ll | m**2 s**-2 |
40 | 1 | 11 | 94253011 | 400 | pl | isobaricInhPa | t | Temperature | rotated_ll | K |
41 | 1 | 33 | 94253033 | 400 | pl | isobaricInhPa | u | u-component of wind | rotated_ll | m s**-1 |
42 | 1 | 34 | 94253034 | 400 | pl | isobaricInhPa | v | v-component of wind | rotated_ll | m s**-1 |
43 | 1 | 14 | 94253014 | 500 | pl | isobaricInhPa | papt | Pseudo-adiabatic potential temperature | rotated_ll | K |
44 | 1 | 52 | 94253052 | 500 | pl | isobaricInhPa | r | Relative humidity | rotated_ll | 0-1 |
45 | 1 | 6 | 94253006 | 500 | pl | isobaricInhPa | z | Geopotential | rotated_ll | m**2 s**-2 |
46 | 1 | 11 | 94253011 | 500 | pl | isobaricInhPa | t | Temperature | rotated_ll | K |
47 | 1 | 33 | 94253033 | 500 | pl | isobaricInhPa | u | u-component of wind | rotated_ll | m s**-1 |
48 | 1 | 34 | 94253034 | 500 | pl | isobaricInhPa | v | v-component of wind | rotated_ll | m s**-1 |
49 | 1 | 14 | 94253014 | 600 | pl | isobaricInhPa | papt | Pseudo-adiabatic potential temperature | rotated_ll | K |
50 | 1 | 52 | 94253052 | 600 | pl | isobaricInhPa | r | Relative humidity | rotated_ll | 0-1 |
51 | 1 | 6 | 94253006 | 600 | pl | isobaricInhPa | z | Geopotential | rotated_ll | m**2 s**-2 |
52 | 1 | 11 | 94253011 | 600 | pl | isobaricInhPa | t | Temperature | rotated_ll | K |
53 | 1 | 33 | 94253033 | 600 | pl | isobaricInhPa | u | u-component of wind | rotated_ll | m s**-1 |
54 | 1 | 34 | 94253034 | 600 | pl | isobaricInhPa | v | v-component of wind | rotated_ll | m s**-1 |
55 | 1 | 14 | 94253014 | 700 | pl | isobaricInhPa | papt | Pseudo-adiabatic potential temperature | rotated_ll | K |
56 | 1 | 52 | 94253052 | 700 | pl | isobaricInhPa | r | Relative humidity | rotated_ll | 0-1 |
57 | 1 | 6 | 94253006 | 700 | pl | isobaricInhPa | z | Geopotential | rotated_ll | m**2 s**-2 |
58 | 1 | 11 | 94253011 | 700 | pl | isobaricInhPa | t | Temperature | rotated_ll | K |
59 | 1 | 33 | 94253033 | 700 | pl | isobaricInhPa | u | u-component of wind | rotated_ll | m s**-1 |
60 | 1 | 34 | 94253034 | 700 | pl | isobaricInhPa | v | v-component of wind | rotated_ll | m s**-1 |
61 | 1 | 14 | 94253014 | 800 | pl | isobaricInhPa | papt | Pseudo-adiabatic potential temperature | rotated_ll | K |
62 | 1 | 52 | 94253052 | 800 | pl | isobaricInhPa | r | Relative humidity | rotated_ll | 0-1 |
63 | 1 | 6 | 94253006 | 800 | pl | isobaricInhPa | z | Geopotential | rotated_ll | m**2 s**-2 |
64 | 1 | 11 | 94253011 | 800 | pl | isobaricInhPa | t | Temperature | rotated_ll | K |
65 | 1 | 33 | 94253033 | 800 | pl | isobaricInhPa | u | u-component of wind | rotated_ll | m s**-1 |
66 | 1 | 34 | 94253034 | 800 | pl | isobaricInhPa | v | v-component of wind | rotated_ll | m s**-1 |
67 | 1 | 14 | 94253014 | 850 | pl | isobaricInhPa | papt | Pseudo-adiabatic potential temperature | rotated_ll | K |
68 | 1 | 52 | 94253052 | 850 | pl | isobaricInhPa | r | Relative humidity | rotated_ll | 0-1 |
69 | 1 | 6 | 94253006 | 850 | pl | isobaricInhPa | z | Geopotential | rotated_ll | m**2 s**-2 |
70 | 1 | 11 | 94253011 | 850 | pl | isobaricInhPa | t | Temperature | rotated_ll | K |
71 | 1 | 33 | 94253033 | 850 | pl | isobaricInhPa | u | u-component of wind | rotated_ll | m s**-1 |
72 | 1 | 34 | 94253034 | 850 | pl | isobaricInhPa | v | v-component of wind | rotated_ll | m s**-1 |
73 | 1 | 14 | 94253014 | 900 | pl | isobaricInhPa | papt | Pseudo-adiabatic potential temperature | rotated_ll | K |
74 | 1 | 52 | 94253052 | 900 | pl | isobaricInhPa | r | Relative humidity | rotated_ll | 0-1 |
75 | 1 | 6 | 94253006 | 900 | pl | isobaricInhPa | z | Geopotential | rotated_ll | m**2 s**-2 |
76 | 1 | 11 | 94253011 | 900 | pl | isobaricInhPa | t | Temperature | rotated_ll | K |
77 | 1 | 33 | 94253033 | 900 | pl | isobaricInhPa | u | u-component of wind | rotated_ll | m s**-1 |
78 | 1 | 34 | 94253034 | 900 | pl | isobaricInhPa | v | v-component of wind | rotated_ll | m s**-1 |
79 | 1 | 14 | 94253014 | 925 | pl | isobaricInhPa | papt | Pseudo-adiabatic potential temperature | rotated_ll | K |
80 | 1 | 52 | 94253052 | 925 | pl | isobaricInhPa | r | Relative humidity | rotated_ll | 0-1 |
81 | 1 | 6 | 94253006 | 925 | pl | isobaricInhPa | z | Geopotential | rotated_ll | m**2 s**-2 |
82 | 1 | 11 | 94253011 | 925 | pl | isobaricInhPa | t | Temperature | rotated_ll | K |
83 | 1 | 33 | 94253033 | 925 | pl | isobaricInhPa | u | u-component of wind | rotated_ll | m s**-1 |
84 | 1 | 34 | 94253034 | 925 | pl | isobaricInhPa | v | v-component of wind | rotated_ll | m s**-1 |
85 | 1 | 14 | 94253014 | 950 | pl | isobaricInhPa | papt | Pseudo-adiabatic potential temperature | rotated_ll | K |
86 | 1 | 52 | 94253052 | 950 | pl | isobaricInhPa | r | Relative humidity | rotated_ll | 0-1 |
87 | 1 | 6 | 94253006 | 950 | pl | isobaricInhPa | z | Geopotential | rotated_ll | m**2 s**-2 |
88 | 1 | 11 | 94253011 | 950 | pl | isobaricInhPa | t | Temperature | rotated_ll | K |
89 | 1 | 33 | 94253033 | 950 | pl | isobaricInhPa | u | u-component of wind | rotated_ll | m s**-1 |
90 | 1 | 34 | 94253034 | 950 | pl | isobaricInhPa | v | v-component of wind | rotated_ll | m s**-1 |
91 | 1 | 14 | 94253014 | 1000 | pl | isobaricInhPa | papt | Pseudo-adiabatic potential temperature | rotated_ll | K |
92 | 1 | 52 | 94253052 | 1000 | pl | isobaricInhPa | r | Relative humidity | rotated_ll | 0-1 |
93 | 1 | 6 | 94253006 | 1000 | pl | isobaricInhPa | z | Geopotential | rotated_ll | m**2 s**-2 |
94 | 1 | 11 | 94253011 | 1000 | pl | isobaricInhPa | t | Temperature | rotated_ll | K |
95 | 1 | 33 | 94253033 | 1000 | pl | isobaricInhPa | u | u-component of wind | rotated_ll | m s**-1 |
96 | 1 | 34 | 94253034 | 1000 | pl | isobaricInhPa | v | v-component of wind | rotated_ll | m s**-1 |