Remapping Grib2 Data changes Table
Added by Dennis Reichelt over 7 years ago
Hi,
I try to remap grb2 and some parameters are changed when I look at the grib_dump output:
Original: # Forecast products (grib2/tables/11/1.4.table) typeOfProcessedData = 1; Remapped: # Analysis and forecast products (grib2/tables/4/1.4.table) typeOfProcessedData = 2;
Original: # Earth assumed spherical with radius of 6 371 229.0 m (grib2/tables/11/3.2.table) shapeOfTheEarth = 6; Remapped: # Earth assumed spherical with radius = 6,367,470.0 m (grib2/tables/4/3.2.table) shapeOfTheEarth = 0;
cdo -f grb2 remap,${CDO_TARGET_GRID_DESCRIPTION},${CDO_WEIGHTS_FILE} ${in_file} ${out_file}
How do I prevent source tables 11 to be remapped to tables 4? Why are these to parameters changed?