I wish to employ mozbc to prepare BCs from Copernicus Ensemble model results. I have extracted just one variable and tried mozbc to run with following simplified namelist for testing:
MOZBC finds the file and opens it, yet it can't find the variable, but no2 is definitely in the file. the output of first part of ncdump is below. Any idea of why this might be happening?
netcdf no2_ren001 {
dimensions:
time = UNLIMITED ; // (41 currently)
lon = 900 ;
lat = 451 ;
level = 25 ;
variables:
double time(time) ;
time:standard_name = "time" ;
time:long_name = "time" ;
time:units = "hours since 1900-01-01 00:00:00.0" ;
time:calendar = "gregorian" ;
time:axis = "T" ;
double level(level) ;
level:standard_name = "air_pressure" ;
level:long_name = "pressure_level" ;
level:units = "millibars" ;
level:positive = "down" ;
level:axis = "Z" ;
double no2(time, level, lat, lon) ;
no2:long_name = "Nitrogen dioxide" ;
no2:units = "kg kg**-1" ;
no2:_FillValue = 9.96920996838687e+36 ;
no2:missing_value = 9.96920996838687e+36 ;
float lon(lon) ;
lon:standard_name = "longitude" ;
lon:long_name = "longitude" ;
lon:units = "degrees_east" ;
lon:axis = "X" ;
float lat(lat) ;
lat:standard_name = "latitude" ;
lat:long_name = "latitude" ;
lat:units = "degrees_north" ;
lat:axis = "Y" ;