eccodes/tests/grib_sh_ieee64.cc

74 lines
2.7 KiB
C++
Raw Normal View History

/*
2020-01-28 14:32:34 +00:00
* (C) Copyright 2005- ECMWF.
*
* This software is licensed under the terms of the Apache Licence Version 2.0
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
*
* In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
* virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
*/
2020-06-09 12:21:21 +00:00
#include <stdio.h>
#include <string.h>
2023-01-06 13:02:12 +00:00
#include "grib_api_internal.h"
/*
* Check that encoding of sub-truncation using IEEE64 works.
* philippe.marguinaud@meteo.fr, 2016/02
*/
2020-10-30 17:43:18 +00:00
#include "grib_sh_values.h" /* array 'values' defined here*/
#define ILCHAM 992
#define MTRONC 30
#define STRONC 10
int main(int argc, char* argv[])
{
size_t len;
grib_handle* h;
double zval[ILCHAM];
2018-07-16 08:57:10 +00:00
int m, n, k;
GRIB_CHECK(((h = grib_handle_new_from_samples(NULL, "sh_ml_grib2.tmpl")) == NULL), 0);
/* Meteo-France settings */
GRIB_CHECK(grib_set_long(h, "centre", 85), 0);
len = strlen("stretched_rotated_sh");
GRIB_CHECK(grib_set_string(h, "gridType", "stretched_rotated_sh", &len), 0);
GRIB_CHECK(grib_set_long(h, "pentagonalResolutionParameterJ", MTRONC), 0);
GRIB_CHECK(grib_set_long(h, "pentagonalResolutionParameterK", MTRONC), 0);
GRIB_CHECK(grib_set_long(h, "pentagonalResolutionParameterM", MTRONC), 0);
GRIB_CHECK(grib_set_double(h, "stretchingFactor", 2.40000000000000), 0);
GRIB_CHECK(grib_set_double(h, "latitudeOfStretchingPoleInDegrees", 46.4688478326275), 0);
GRIB_CHECK(grib_set_double(h, "longitudeOfStretchingPoleInDegrees", 2.57831007808864), 0);
GRIB_CHECK(grib_set_long(h, "bitsPerValue", 16), 0);
len = strlen("spectral_complex");
GRIB_CHECK(grib_set_string(h, "packingType", "spectral_complex", &len), 0);
GRIB_CHECK(grib_set_long(h, "subSetJ", STRONC), 0);
GRIB_CHECK(grib_set_long(h, "subSetK", STRONC), 0);
GRIB_CHECK(grib_set_long(h, "subSetM", STRONC), 0);
GRIB_CHECK(grib_set_long(h, "unpackedSubsetPrecision", 2), 0);
GRIB_CHECK(grib_set_double_array(h, "values", values, ILCHAM), 0);
len = ILCHAM;
GRIB_CHECK(grib_get_double_array(h, "values", zval, &len), 0);
for (m = 0, k = 0; m < MTRONC + 1; m++)
for (n = m; n < MTRONC + 1; k++, n++) {
/* Check sub-truncaton was fully preserved */
if ((m < STRONC + 1) && (n < STRONC + 1) && ((zval[2 * k] != values[2 * k]) || (zval[2 * k + 1] != values[2 * k + 1]))) {
printf("Unpacked sub-truncation was not fully preserved; coefficients for wavenumber (m=%d,n=%d) have been modified\n", m, n);
return 1;
}
}
GRIB_CHECK(grib_handle_delete(h), 0);
return 0;
}