eccodes/tools/grib_histogram.cc

180 lines
4.9 KiB
C++
Raw Normal View History

2013-03-25 12:04:10 +00:00
/*
2020-01-28 14:32:34 +00:00
* (C) Copyright 2005- ECMWF.
2013-03-25 12:04:10 +00:00
*
* 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_tools.h"
grib_option grib_options[] = {
2020-01-22 13:10:59 +00:00
/* {id, args, help}, on, command_line, value*/
{ "V", 0, 0, 0, 1, 0 },
{ "p:", 0, 0, 0, 1, 0 }, /* print keys */
{ "S", 0, 0, 1, 0, 0 }, /* needed for skip */
2023-11-02 19:52:42 +00:00
{ "w:", 0, 0, 0, 1, 0 }, /* 'where' clause */
{ "h", 0, 0, 0, 1, 0 },
};
2020-01-22 13:10:59 +00:00
int grib_options_count = sizeof(grib_options) / sizeof(grib_option);
2020-07-17 14:37:57 +00:00
const char* tool_description = "Histogram of GRIB files";
const char* tool_name = "grib_histogram";
const char* tool_online_doc = NULL;
2020-07-17 14:37:57 +00:00
const char* tool_usage = "[options] grib_file grib_file ...";
2020-01-22 13:10:59 +00:00
int main(int argc, char* argv[])
{
2020-01-22 13:10:59 +00:00
return grib_tool(argc, argv);
}
2013-03-25 12:04:10 +00:00
2020-01-22 13:10:59 +00:00
int grib_tool_before_getopt(grib_runtime_options* options)
2013-03-25 12:04:10 +00:00
{
return 0;
2013-03-25 12:04:10 +00:00
}
2020-01-22 13:10:59 +00:00
int grib_tool_init(grib_runtime_options* options)
2013-03-25 12:04:10 +00:00
{
return 0;
}
2020-01-22 13:10:59 +00:00
int grib_tool_new_filename_action(grib_runtime_options* options, const char* file)
{
return 0;
}
2020-01-22 13:10:59 +00:00
int grib_tool_new_file_action(grib_runtime_options* options, grib_tools_file* file)
{
2020-07-17 14:37:57 +00:00
exit_if_input_is_directory(tool_name, file->name);
return 0;
}
/*
A new handle is available from the current input file and can be processed here.
The handle available in this function is in the set of messages satisfying the constraint
of the -w option. They are not to be skipped.
*/
2020-01-22 13:10:59 +00:00
int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h)
{
2024-02-19 17:14:32 +00:00
size_t i, j;
2017-07-28 12:26:23 +00:00
size_t last_size = 0;
long missingValuesPresent;
double delta;
2020-01-22 13:10:59 +00:00
double* values = NULL;
size_t size;
double min, max;
size_t count = 10;
2017-07-28 12:26:23 +00:00
long intervals[10];
2020-01-22 13:10:59 +00:00
const char* names[1024];
size_t name_count = 0;
2017-07-28 12:26:23 +00:00
for (i = 0; i < (size_t)options->requested_print_keys_count; i++) {
names[name_count++] = options->requested_print_keys[i].name;
}
2017-07-28 12:26:23 +00:00
2020-01-22 13:10:59 +00:00
GRIB_CHECK(grib_get_long(h, "missingValuesPresent", &missingValuesPresent), 0);
2017-07-28 12:26:23 +00:00
2020-01-22 13:10:59 +00:00
GRIB_CHECK(grib_get_size(h, "values", &size), 0);
2017-07-28 12:26:23 +00:00
if (size > last_size) {
if (values)
2020-01-22 13:10:59 +00:00
free(values);
2021-02-07 22:06:42 +00:00
values = (double*)malloc(size * sizeof(double));
2020-02-19 12:07:34 +00:00
/*last_size = size;*/
if (!values) {
fprintf(stderr, "Failed to allocate memory for values (%zu bytes)\n", size * sizeof(double));
2020-01-22 13:10:59 +00:00
exit(1);
}
}
2017-07-28 12:26:23 +00:00
2020-01-22 13:10:59 +00:00
GRIB_CHECK(grib_get_double_array(h, "values", values, &size), 0);
2017-07-28 12:26:23 +00:00
for (j = 0; j < count; j++)
intervals[j] = 0;
2017-07-28 12:26:23 +00:00
if (missingValuesPresent) {
double missing;
2020-01-22 13:10:59 +00:00
GRIB_CHECK(grib_get_double(h, "missingValue", &missing), 0);
2017-07-28 12:26:23 +00:00
min = max = missing;
2017-07-28 12:26:23 +00:00
for (j = 0; j < size; j++) {
if ((min == missing) || ((values[j] != missing) && (min > values[j])))
min = values[j];
if ((max == missing) || ((values[j] != missing) && (max < values[j])))
max = values[j];
}
delta = max - min;
if (delta == 0)
delta = 1;
2017-07-28 12:26:23 +00:00
for (j = 0; j < size; j++) {
if (values[j] != missing) {
int x = (values[j] - min) / delta * count;
if (x == (int)count)
2020-01-22 13:10:59 +00:00
x = x - 1; /*handle the absolute maximum */
intervals[x]++;
2017-07-28 12:26:23 +00:00
}
}
2020-01-22 13:10:59 +00:00
}
else {
min = max = values[0];
for (j = 1; j < size; j++) {
if (min > values[j])
min = values[j];
if (max < values[j])
max = values[j];
}
delta = max - min;
if (delta == 0)
delta = 1;
2017-07-28 12:26:23 +00:00
for (j = 0; j < size; j++) {
int x = (values[j] - min) / delta * count;
if (x == (int)count)
2020-01-22 13:10:59 +00:00
x = x - 1; /*handle the absolute maximum */
intervals[x]++;
2017-07-28 12:26:23 +00:00
}
}
2017-07-28 12:26:23 +00:00
for (j = 0; j < name_count; j++) {
char v[1024];
2020-01-22 13:10:59 +00:00
size_t s = sizeof(v);
GRIB_CHECK(grib_get_string(h, names[j], v, &s), names[j]);
printf(" %s", v);
2017-07-28 12:26:23 +00:00
}
2020-01-22 13:10:59 +00:00
printf("\nmin=%g max=%g size=%ld\n", min, max, (long)size);
for (j = 0; j < count; j++)
2020-01-22 13:10:59 +00:00
printf(" %g:%g", j * (max - min) / count + min, (j + 1) * (max - min) / count + min);
printf("\n");
for (j = 0; j < count; j++)
2020-01-22 13:10:59 +00:00
printf(" %ld", intervals[j]);
printf("\n");
return 0;
}
2020-01-22 13:10:59 +00:00
int grib_tool_skip_handle(grib_runtime_options* options, grib_handle* h)
{
2020-01-22 13:10:59 +00:00
grib_handle_delete(h);
return 0;
}
2020-01-22 13:10:59 +00:00
int grib_tool_finalise_action(grib_runtime_options* options)
{
return 0;
}
2020-01-22 13:10:59 +00:00
int grib_no_handle_action(grib_runtime_options* options, int err)
{
2020-01-22 13:10:59 +00:00
fprintf(dump_file, "\t\t\"ERROR: unreadable message\"\n");
2017-07-28 12:26:23 +00:00
return 0;
2013-03-25 12:04:10 +00:00
}