NWP | PGW | Order of Pressure levels of GRIB file
In GRIB files, the order of pressure levels is important because many tools expect them to be sorted either in ascending (from surface to top of the atmosphere) or descending (from top of the atmosphere to surface) order. Here's how you can ensure the order of pressure levels and reverse them using tools like cdo
or grib_set
.
Step 1: Check the Current Order of Pressure Levels
To inspect the order of pressure levels in the GRIB file, use the following commands:
Using
grib_ls
:This lists the levels (1
grib_ls -p level era5_with_signal.grib
level
) in the GRIB file. Check if they are in ascending or descending order.Using
cdo
:This outputs the pressure levels in the order they appear in the file.1
cdo showlevel era5_with_signal.grib
Step 2: Ensure Ascending or Descending Order
If the pressure levels are not in the desired order, you can reorder them using cdo
.
Ensure Ascending Order (Surface to Top of Atmosphere)
To reorder pressure levels in ascending order (e.g., 1000 hPa → 850 hPa → ... → 10 hPa):
1 |
|
The vertsort
operation ensures that the levels are sorted in ascending order.
Ensure Descending Order (Top of Atmosphere to Surface)
To reorder pressure levels in descending order (e.g., 10 hPa → 100 hPa → ... → 1000 hPa), use the vertsort
operation and then reverse the order:
1 |
|
The invertlev
operation reverses the order of the vertical levels.
Step 3: Verify the New Order
After reordering the levels, verify the result:
Using
grib_ls
:1
2grib_ls -p level era5_sorted_ascending.grib
grib_ls -p level era5_sorted_descending.gribUsing
cdo
:1
2cdo showlevel era5_sorted_ascending.grib
cdo showlevel era5_sorted_descending.grib
Ensure that the levels are in the desired order.
Step 4: For NetCDF Files
If you are working with a NetCDF file (era5_with_signal.nc
) and need to reorder the pressure levels:
Ascending Order
Use cdo vertsort
for NetCDF files as well:
1 |
|
Descending Order
Use cdo invertlev
to reverse the order:
1 |
|
Additional Tips:
Regrid if Necessary: If the pressure levels are missing or inconsistent, you can interpolate them to a standard set using
cdo intlevel
. For example:1
cdo intlevel,1000,850,500,250 era5_with_signal.nc era5_regridded_levels.nc
Metadata Consistency: Ensure that the
typeOfLevel
(e.g.,isobaricInhPa
) is correctly set, especially after reordering or interpolating levels. Usegrib_set
if needed:1
grib_set -s typeOfLevel=isobaricInhPa era5_sorted_ascending.grib era5_final.grib
Summary of Commands:
Check the current order of levels:
1
2grib_ls -p level era5_with_signal.grib
cdo showlevel era5_with_signal.gribEnsure ascending order (surface to top):
1
cdo vertsort era5_with_signal.grib era5_sorted_ascending.grib
Ensure descending order (top to surface):
1
cdo invertlev era5_with_signal.grib era5_sorted_descending.grib
Verify the new order:
1
2grib_ls -p level era5_sorted_ascending.grib
cdo showlevel era5_sorted_ascending.gribFor NetCDF files:
1
2cdo vertsort era5_with_signal.nc era5_sorted_ascending.nc
cdo invertlev era5_with_signal.nc era5_sorted_descending.nc