Hi,
I'm new to this kind of data and I'm blocked.
I downloaded an analysis model for the CO from ENSEMBLE in NetCDF format (http://macc-raq-op.meteo.fr/index.php?category=ensemble&subensemble=hourly_ensemble&date=LAST&calculation-model=ENSEMBLE&species=o3&level=SFC&offset=000).
Using cdo (1.7.0) under ubuntu 16.04 I'm experiencing frustration.
The selection of the CO value using the remapnn interpolator returns identical values for many different latitudes. In the example below the same values are returned for all the latitudes between 40 and 49. Can someone specialist in the field explain to me what I'm doing wrong?
########## example
The name of the input .nc file W_fr -meteofrance,MODEL,ENSEMBLE+ANALYSIS+SURFACE+CO+-24H-1H_C_LFPW_20200320000000.nc is semplified to 20200220000000_co.nc
$ cdo -remapnn,lon=13.12_lat=40 20200220000000_co.nc $$.nc;cdo -outputtab,time,value,latitude,longitude $$.nc
cdo remapnn: Nearest neighbor weights from lonlat (700x400) to lonlat (1x1) grid
cdo remapnn: Processed 6720000 values from 1 variable over 24 timesteps ( 0.06s )
# time value lat lon
00:00:00 141.011 40 13.12
01:00:00 141.5 40 13.12
02:00:00 141.237 40 13.12
03:00:00 140.147 40 13.12
04:00:00 140.748 40 13.12
05:00:00 139.491 40 13.12
06:00:00 139.677 40 13.12
07:00:00 138.845 40 13.12
08:00:00 136.874 40 13.12
09:00:00 134.725 40 13.12
10:00:00 132.8 40 13.12
11:00:00 131.376 40 13.12
12:00:00 129.889 40 13.12
13:00:00 129.382 40 13.12
14:00:00 130.65 40 13.12
15:00:00 128.279 40 13.12
16:00:00 130.213 40 13.12
17:00:00 131.136 40 13.12
18:00:00 132.627 40 13.12
19:00:00 133.658 40 13.12
20:00:00 135.713 40 13.12
21:00:00 137.868 40 13.12
22:00:00 140.065 40 13.12
23:00:00 141.318 40 13.12
cdo outputtab: Processed 24 values from 1 variable over 24 timesteps ( 0.00s )
$ cdo -remapnn,lon=13.12_lat=49 20200220000000_co.nc $$.nc;cdo -outputtab,time,value,latitude,longitude $$.nc
cdo remapnn: Nearest neighbor weights from lonlat (700x400) to lonlat (1x1) grid
cdo remapnn: Processed 6720000 values from 1 variable over 24 timesteps ( 0.07s )
# time value lat lon
00:00:00 141.011 49 13.12
01:00:00 141.5 49 13.12
02:00:00 141.237 49 13.12
03:00:00 140.147 49 13.12
04:00:00 140.748 49 13.12
05:00:00 139.491 49 13.12
06:00:00 139.677 49 13.12
07:00:00 138.845 49 13.12
08:00:00 136.874 49 13.12
09:00:00 134.725 49 13.12
10:00:00 132.8 49 13.12
11:00:00 131.376 49 13.12
12:00:00 129.889 49 13.12
13:00:00 129.382 49 13.12
14:00:00 130.65 49 13.12
15:00:00 128.279 49 13.12
16:00:00 130.213 49 13.12
17:00:00 131.136 49 13.12
18:00:00 132.627 49 13.12
19:00:00 133.658 49 13.12
20:00:00 135.713 49 13.12
21:00:00 137.868 49 13.12
22:00:00 140.065 49 13.12
23:00:00 141.318 49 13.12