eccodes/tests/grib_ecc-1431.cc

133 lines
5.1 KiB
C++
Raw Normal View History

2022-08-01 15:16:08 +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-28 14:16:21 +00:00
#include "grib_api_internal.h"
2022-07-29 09:53:55 +00:00
#include <eccodes.h>
#include <string.h>
#include <iostream>
#include <iomanip>
2022-07-29 09:53:55 +00:00
#include <vector>
#include <string>
#include <random>
#include <limits>
2022-08-01 14:32:27 +00:00
#include <cmath>
2022-07-29 09:53:55 +00:00
typedef std::numeric_limits<double> dbl;
typedef std::numeric_limits<float> flt;
2022-07-29 09:53:55 +00:00
2022-08-01 15:16:08 +00:00
struct Range
{
double min;
double max;
};
2022-07-28 14:16:21 +00:00
2022-08-01 14:32:27 +00:00
2022-08-01 15:16:08 +00:00
//
// Test: This test doesn't accept errors after decompression.
//
int main(int argc, char** argv)
2022-08-01 15:16:08 +00:00
{
std::vector<Range> ranges;
2022-08-01 15:16:08 +00:00
ranges.push_back({ flt::max() / 10, flt::max() });
ranges.push_back({ flt::max() / 100, flt::max() / 10 });
ranges.push_back({ 1e+9, 1e+10 });
ranges.push_back({ 1e+0, 1e+1 });
ranges.push_back({ 1e-1, 1e-0 });
ranges.push_back({ 1e-2, 1e-1 });
ranges.push_back({ 1e-11, 1e-10 });
ranges.push_back({ flt::min() * 10, flt::min() * 100 });
ranges.push_back({ flt::min(), flt::min() * 10 });
ranges.push_back({ flt::min(), flt::max() });
2022-07-29 09:53:55 +00:00
std::vector<size_t> values_lens = {
2022-08-01 15:16:08 +00:00
1,
10,
100,
100000,
2022-07-29 09:53:55 +00:00
};
int err;
2022-07-29 09:53:55 +00:00
std::default_random_engine re;
2023-06-15 11:52:33 +00:00
size_t in_values_ecc_1612_workaround_len = 0;
2022-07-29 09:53:55 +00:00
size_t grid_simple_values_len = 0;
2022-08-01 15:16:08 +00:00
size_t grid_ccsds_values_len = 0;
std::string packing_type = "";
size_t size = 0;
2022-07-29 09:53:55 +00:00
2022-08-01 15:16:08 +00:00
for (const size_t in_values_len : values_lens) {
for (const Range range : ranges) {
2024-12-20 12:58:07 +00:00
ECCODES_ASSERT(range.min < range.max);
std::cout << "Testing: "
<< "n_vals : " << std::setw(7) << in_values_len
<< " range(" << std::scientific << std::setw(12) << range.min << ", " << std::setw(12) << range.max << ") "
<< std::endl;
std::uniform_real_distribution<double>
unif(range.min, range.max);
2022-07-29 09:53:55 +00:00
2022-08-01 15:16:08 +00:00
codes_handle* handle = codes_grib_handle_new_from_samples(0, "reduced_gg_pl_128_grib2");
double* in_values = new double[in_values_len];
2023-06-15 11:52:33 +00:00
double* in_values_ecc_1612_workaround = new double[in_values_len];
2022-07-29 09:53:55 +00:00
double* grid_simple_values = new double[in_values_len];
2022-08-01 15:16:08 +00:00
double* grid_ccsds_values = new double[in_values_len];
2022-07-29 09:53:55 +00:00
2023-06-15 11:52:33 +00:00
in_values_ecc_1612_workaround_len = in_values_len;
2022-07-29 09:53:55 +00:00
grid_simple_values_len = in_values_len;
2022-08-01 15:16:08 +00:00
grid_ccsds_values_len = in_values_len;
2022-07-29 09:53:55 +00:00
2022-08-01 15:16:08 +00:00
// Initialize with random values
2022-07-29 09:53:55 +00:00
for (size_t i = 0; i < in_values_len; ++i) {
in_values[i] = unif(re);
}
2023-06-15 11:52:33 +00:00
// Convert original values to quantized values using grid_simple
{ // Workaround ECC-1612. Can be removed when fixed. Use code below instead.
CODES_CHECK(codes_set_double_array(handle, "values", in_values, in_values_len), 0);
CODES_CHECK(codes_get_double_array(handle, "values", in_values_ecc_1612_workaround, &in_values_ecc_1612_workaround_len), 0);
CODES_CHECK(codes_set_double_array(handle, "values", in_values_ecc_1612_workaround, in_values_ecc_1612_workaround_len), 0);
CODES_CHECK(codes_get_double_array(handle, "values", grid_simple_values, &grid_simple_values_len), 0);
//CODES_CHECK(codes_set_double_array(handle, "values", in_values, in_values_len), 0);
//CODES_CHECK(codes_get_double_array(handle, "values", grid_simple_values, &grid_simple_values_len), 0);
}
2024-12-20 12:58:07 +00:00
ECCODES_ASSERT(in_values_len == grid_simple_values_len);
2022-07-29 09:53:55 +00:00
2022-08-01 15:16:08 +00:00
// Test grid_ccsds
2022-07-29 09:53:55 +00:00
packing_type = "grid_ccsds";
2022-08-01 15:16:08 +00:00
size = packing_type.size();
2022-07-29 12:23:49 +00:00
CODES_CHECK(codes_set_string(handle, "packingType", packing_type.c_str(), &size), 0);
2022-07-29 09:53:55 +00:00
if ((err = codes_set_double_array(handle, "values", grid_simple_values, grid_simple_values_len)) != 0) {
2024-12-20 12:58:07 +00:00
ECCODES_ASSERT(!"CCSDS encoding failed");
2022-07-29 09:53:55 +00:00
}
if ((err = codes_get_double_array(handle, "values", grid_ccsds_values, &grid_ccsds_values_len)) != 0) {
2024-12-20 12:58:07 +00:00
ECCODES_ASSERT(!"CCSDS decoding failed");
2022-07-29 09:53:55 +00:00
}
2024-12-20 12:58:07 +00:00
ECCODES_ASSERT(grid_ccsds_values_len == grid_simple_values_len);
2022-07-29 09:53:55 +00:00
2022-08-01 15:16:08 +00:00
// Test buffers
2022-07-31 13:05:29 +00:00
for (size_t i = 0; i < grid_ccsds_values_len; ++i) {
2022-07-29 09:53:55 +00:00
if (grid_ccsds_values[i] != grid_simple_values[i]) {
std::cout.precision(dbl::max_digits10);
2022-08-01 15:16:08 +00:00
std::cout << "Test failed: " << grid_ccsds_values[i] << " != " << grid_simple_values[i] << std::endl;
2024-12-20 12:58:07 +00:00
ECCODES_ASSERT(0);
2022-07-29 09:53:55 +00:00
}
}
codes_handle_delete(handle);
delete[] in_values;
2023-06-15 11:52:33 +00:00
delete[] in_values_ecc_1612_workaround;
2022-07-29 09:53:55 +00:00
delete[] grid_simple_values;
delete[] grid_ccsds_values;
}
}
2022-08-01 14:32:27 +00:00
return 0;
}