1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
/*
* (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_tools.h"
grib_option grib_options[] = {
/* {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 */
{ "w:", 0, 0, 0, 1, 0 }, /* 'where' clause */
{ "h", 0, 0, 0, 1, 0 },
};
int grib_options_count = sizeof(grib_options) / sizeof(grib_option);
const char* tool_description = "Histogram of GRIB files";
const char* tool_name = "grib_histogram";
const char* tool_online_doc = NULL;
const char* tool_usage = "[options] grib_file grib_file ...";
int main(int argc, char* argv[])
{
return grib_tool(argc, argv);
}
int grib_tool_before_getopt(grib_runtime_options* options)
{
return 0;
}
int grib_tool_init(grib_runtime_options* options)
{
return 0;
}
int grib_tool_new_filename_action(grib_runtime_options* options, const char* file)
{
return 0;
}
int grib_tool_new_file_action(grib_runtime_options* options, grib_tools_file* file)
{
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.
*/
int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h)
{
size_t i, j;
size_t last_size = 0;
long missingValuesPresent;
double delta;
double* values = NULL;
size_t size;
double min, max;
size_t count = 10;
long intervals[10];
const char* names[1024];
size_t name_count = 0;
for (i = 0; i < (size_t)options->requested_print_keys_count; i++) {
names[name_count++] = options->requested_print_keys[i].name;
}
GRIB_CHECK(grib_get_long(h, "missingValuesPresent", &missingValuesPresent), 0);
GRIB_CHECK(grib_get_size(h, "values", &size), 0);
if (size > last_size) {
values = (double*)malloc(size * sizeof(double));
/*last_size = size;*/
if (!values) {
fprintf(stderr, "Failed to allocate memory for values (%zu bytes)\n", size * sizeof(double));
exit(1);
}
}
GRIB_CHECK(grib_get_double_array(h, "values", values, &size), 0);
for (j = 0; j < count; j++)
intervals[j] = 0;
if (missingValuesPresent) {
double missing;
GRIB_CHECK(grib_get_double(h, "missingValue", &missing), 0);
min = max = missing;
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;
for (j = 0; j < size; j++) {
if (values[j] != missing) {
int x = (values[j] - min) / delta * count;
if (x == (int)count)
x = x - 1; /*handle the absolute maximum */
intervals[x]++;
}
}
}
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;
for (j = 0; j < size; j++) {
int x = (values[j] - min) / delta * count;
if (x == (int)count)
x = x - 1; /*handle the absolute maximum */
intervals[x]++;
}
}
for (j = 0; j < name_count; j++) {
char v[1024];
size_t s = sizeof(v);
GRIB_CHECK(grib_get_string(h, names[j], v, &s), names[j]);
printf(" %s", v);
}
printf("\nmin=%g max=%g size=%ld\n", min, max, (long)size);
for (j = 0; j < count; j++)
printf(" %g:%g", j * (max - min) / count + min, (j + 1) * (max - min) / count + min);
printf("\n");
for (j = 0; j < count; j++)
printf(" %ld", intervals[j]);
printf("\n");
if (values)
free(values);
return 0;
}
int grib_tool_skip_handle(grib_runtime_options* options, grib_handle* h)
{
grib_handle_delete(h);
return 0;
}
int grib_tool_finalise_action(grib_runtime_options* options)
{
return 0;
}
int grib_no_handle_action(grib_runtime_options* options, int err)
{
fprintf(dump_file, "\t\t\"ERROR: unreadable message\"\n");
return 0;
}
|