Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

ERROR:Data not found while running ./ungrib.exe with ERA5 single and pressure level data

Gulnaaz

New member
I have downloaded ERA5 single and pressure level data for start date= 2025-01-13 and end date=2025-01-16 for the area 'area':'15.0/70.0/5.0/85.0 using the following two codes
import cdsapi

c = cdsapi.Client()

c.retrieve(
'reanalysis-era5-pressure-levels',
{
'product_type':'reanalysis',
'format':'grib',
'pressure_level':[
'1','2','3',
'5','7','10',
'20','30','50',
'70','100','125',
'150','175','200',
'225','250','300',
'350','400','450',
'500','550','600',
'650','700','750',
'775','800','825',
'850','875','900',
'925','950','975',
'1000'
],
'date':'2025-01-13/2025-01-16',
'area':'15.0/70.0/5.0/85.0',
'time':'00/to/23/by/1',
'variable':[
'geopotential','relative_humidity','specific_humidity',
'temperature','u_component_of_wind','v_component_of_wind'
]
},
'ERA5-DATE1-DATE2-pl.grib')
import cdsapi

c = cdsapi.Client()

c.retrieve(
'reanalysis-era5-single-levels',
{
'product_type':'reanalysis',
'format':'grib',
'variable':[
'10m_u_component_of_wind','10m_v_component_of_wind','2m_dewpoint_temperature',
'2m_temperature','land_sea_mask','mean_sea_level_pressure',
'sea_ice_cover','sea_surface_temperature','skin_temperature',
'snow_depth','soil_temperature_level_1','soil_temperature_level_2',
'soil_temperature_level_3','soil_temperature_level_4','surface_pressure',
'volumetric_soil_water_layer_1','volumetric_soil_water_layer_2','volumetric_soil_water_layer_3',
'volumetric_soil_water_layer_4'
],
'date':'2025-01-13/2025-01-16',
'area':'15.00/70.00/5.00/85.00',
'time':'00/to/23/by/1',
},
'ERA5-DATE1-DATE2-sl.grib')
I have run ./geogrid.exe, linked the Vtable and got the gribfiles.
While running ./ungrib.exe, I am getting the following error.

*** Starting program ungrib.exe ***
Start_date = 2025-01-13_00:00:00 , End_date = 2025-01-16_00:00:00
output format is WPS
Path to intermediate files is ./

###############################################################################

Inventory for date =

PRES TT UU VV RH HGT PSFC PMSL SM000010 SM010040 SM040100 SM100200 SM010200 ST000010 ST010040 ST040100 ST100200 ST010200 SEAICE LANDSEA LANDN SOILHGT SKINTEMP SNOW SNOWH UMAXW VMAXW PMAXW PMAXWNN TMAXW HGTMAXW UTROP VTROP PTROP PTROPNN TTROP HGTTROP
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------

###############################################################################

Inventory for date =

PRES TT UU VV RH HGT PSFC PMSL SM000010 SM010040 SM040100 SM100200 SM010200 ST000010 ST010040 ST040100 ST100200 ST010200 SEAICE LANDSEA LANDN SOILHGT SKINTEMP SNOW SNOWH UMAXW VMAXW PMAXW PMAXWNN TMAXW HGTMAXW UTROP VTROP PTROP PTROPNN TTROP HGTTROP
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
Subroutine DATINT: Interpolating 3-d files to fill in any missing data...
Looking for data at time 2025-01-13_00
ERROR: Data not found: 2025-01-13_00:00:00.0000
 

Attachments

  • namelist.wps
    684 bytes · Views: 1
It looks like that you didn't get the data WPS needs. Can you look at the GRIB file you downloaded, and check what variables are included?
 
Top