2020-10-29 15:45:22 +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.
|
|
|
|
*/
|
|
|
|
|
2022-07-29 12:21:04 +00:00
|
|
|
#include "grib_api_internal.h"
|
2020-10-29 15:45:22 +00:00
|
|
|
|
2020-10-30 17:43:18 +00:00
|
|
|
#include "grib_sh_values.h" /* array 'values' defined here*/
|
2020-10-29 15:45:22 +00:00
|
|
|
|
|
|
|
#define ILCHAM 992
|
|
|
|
#define MTRONC 30
|
|
|
|
#define STRONC 10
|
|
|
|
static const char* TEMPFILE = "output.grib_sh_spectral_complex.grib";
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
size_t len, size;
|
|
|
|
grib_handle* h;
|
|
|
|
double zval[ILCHAM];
|
|
|
|
int i, m, n, k, err;
|
|
|
|
FILE* fin = NULL;
|
|
|
|
FILE* fout = NULL;
|
|
|
|
const void* buffer = NULL;
|
|
|
|
|
|
|
|
GRIB_CHECK(((h = grib_handle_new_from_samples(NULL, "sh_ml_grib2")) == NULL), 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_long(h, "bitsPerValue", 16), 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", 1), 0);
|
|
|
|
|
|
|
|
printf("Encode values...\n");
|
|
|
|
GRIB_CHECK(grib_set_double_array(h, "values", values, ILCHAM), 0);
|
2022-12-26 14:37:01 +00:00
|
|
|
|
2020-10-29 15:45:22 +00:00
|
|
|
/* Write to a temporary GRIB file */
|
|
|
|
printf("Save to GRIB %s...\n",TEMPFILE);
|
|
|
|
fout = fopen(TEMPFILE, "wb");
|
|
|
|
GRIB_CHECK(grib_get_message(h, &buffer, &size), 0);
|
|
|
|
if (fwrite(buffer, 1, size, fout) != size) {
|
2022-07-29 12:21:04 +00:00
|
|
|
Assert(!"Failed to write data");
|
2020-10-29 15:45:22 +00:00
|
|
|
}
|
|
|
|
fclose(fout);
|
2022-12-26 14:37:01 +00:00
|
|
|
|
2020-10-29 15:45:22 +00:00
|
|
|
printf("Decode values and compare...\n");
|
|
|
|
len = ILCHAM;
|
|
|
|
GRIB_CHECK(grib_get_double_array(h, "values", zval, &len), 0);
|
|
|
|
|
|
|
|
/* Compare our values */
|
|
|
|
for (i = 0; i < ILCHAM; ++i) {
|
|
|
|
const double diff = fabs(zval[i] - values[i]);
|
|
|
|
if (diff > 1e-5) {
|
|
|
|
fprintf(stderr, "Unpacked value different: i=%d values[i]=%g zval[i]=%g\n", i, values[i], zval[i]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (m = 0, k = 0; m < MTRONC + 1; m++) {
|
|
|
|
for (n = m; n < MTRONC + 1; k++, n++) {
|
|
|
|
/* Check sub-truncation was fully preserved in IEEE-32 */
|
|
|
|
if ((m < STRONC + 1) && (n < STRONC + 1) && (((float)zval[2 * k] != (float)values[2 * k]) || ((float)zval[2 * k + 1] != (float)values[2 * k + 1]))) {
|
|
|
|
printf("Unpacked sub-truncation was not fully preserved; coefficients for wave number (m=%d,n=%d) have been modified\n", m, n);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GRIB_CHECK(grib_handle_delete(h), 0);
|
2022-12-26 14:37:01 +00:00
|
|
|
|
2020-10-29 15:45:22 +00:00
|
|
|
/* Read in the saved GRIB file */
|
|
|
|
printf("Load values from saved file and compare....\n");
|
2022-07-29 12:21:04 +00:00
|
|
|
fin = fopen(TEMPFILE, "rb"); Assert(fin);
|
|
|
|
h = grib_handle_new_from_file(0, fin, &err); Assert(h);
|
2020-10-29 15:45:22 +00:00
|
|
|
GRIB_CHECK(grib_get_double_array(h, "values", zval, &len), 0);
|
|
|
|
for (i = 0; i < ILCHAM; ++i) {
|
|
|
|
const double diff = fabs(zval[i] - values[i]);
|
|
|
|
if (diff > 1e-5) {
|
|
|
|
fprintf(stderr, "Unpacked value different: i=%d values[i]=%g zval[i]=%g\n", i, values[i], zval[i]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
GRIB_CHECK(grib_handle_delete(h), 0);
|
|
|
|
fclose(fin);
|
|
|
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|