eccodes/tests/grib_unpack_subarray.cc

55 lines
1.7 KiB
C++
Raw Permalink Normal View History

2023-08-21 11:29:19 +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.
*/
#include "grib_api_internal.h"
int main(int argc, char** argv)
{
2024-12-20 12:58:07 +00:00
ECCODES_ASSERT(argc == 2);
2023-08-21 11:29:19 +00:00
int err = 0;
size_t nvalues = 0;
const char* filename = argv[1];
grib_context* c = grib_context_get_default();
FILE* fin = fopen(filename, "r");
2024-12-20 12:58:07 +00:00
ECCODES_ASSERT(fin);
2023-08-21 11:29:19 +00:00
grib_handle* h = grib_handle_new_from_file(0, fin, &err);
2024-12-20 12:58:07 +00:00
ECCODES_ASSERT(h);
ECCODES_ASSERT(!err);
2023-08-21 11:29:19 +00:00
grib_accessor* a = grib_find_accessor(h, "codedValues");
2024-12-20 12:58:07 +00:00
ECCODES_ASSERT(a);
2023-08-21 11:29:19 +00:00
GRIB_CHECK(grib_get_size(h, "codedValues", &nvalues), 0);
2023-08-21 11:41:15 +00:00
double* all_values = (double*)grib_context_malloc(c, sizeof(double) * nvalues);
double* sub_values = (double*)grib_context_malloc(c, sizeof(double) * nvalues);
2024-12-20 12:58:07 +00:00
ECCODES_ASSERT(all_values);
ECCODES_ASSERT(sub_values);
2023-08-21 11:41:15 +00:00
size_t len = nvalues;
GRIB_CHECK(a->unpack_double(all_values, &len), 0);
2023-08-21 11:29:19 +00:00
size_t start = nvalues / 10;
2023-08-21 11:41:15 +00:00
len = nvalues / 5;
2023-08-21 11:29:19 +00:00
printf("nvalues=%zu, start=%zu, len=%zu\n", nvalues, start, len);
GRIB_CHECK(a->unpack_double_subarray(sub_values, start, len), 0);
2023-08-21 11:29:19 +00:00
for (size_t i = 0; i < len; ++i) {
2023-08-21 11:41:15 +00:00
//printf("sub[%zu]=%.10e\n", start + i, sub_values[i]);
2024-12-20 12:58:07 +00:00
ECCODES_ASSERT(all_values[start+i] == sub_values[i]);
2023-08-21 11:29:19 +00:00
}
2023-08-21 11:41:15 +00:00
grib_context_free(c, all_values);
grib_context_free(c, sub_values);
2023-08-21 11:29:19 +00:00
grib_handle_delete(h);
fclose(fin);
return 0;
}