eccodes/examples/C/grib_get_data.c

84 lines
2.4 KiB
C
Raw Permalink Normal View History

/*
2020-01-28 14:32:34 +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.
*/
/*
2015-03-18 14:35:13 +00:00
* C Implementation: grib_get_data
*
2015-03-18 14:35:13 +00:00
* Description: how to get lat/lon/values from a GRIB message
*
*/
#include <stdio.h>
#include <stdlib.h>
#include "eccodes.h"
2020-01-22 14:57:43 +00:00
int main(int argc, char** argv)
{
2020-01-22 14:57:43 +00:00
int err = 0;
size_t i = 0;
FILE* in = NULL;
const char* filename = "../../data/reduced_latlon_surface.grib1";
codes_handle* h = NULL;
long numberOfPoints = 0;
const double missing = 1.0e36;
2020-01-22 14:57:43 +00:00
double *lats, *lons, *values; /* arrays */
2019-03-11 12:53:05 +00:00
in = fopen(filename, "rb");
if (!in) {
2020-05-14 19:21:31 +00:00
fprintf(stderr, "Error: unable to open input file %s\n", filename);
return 1;
}
/* create new handle from a message in a file */
2020-01-22 14:57:43 +00:00
h = codes_handle_new_from_file(0, in, PRODUCT_GRIB, &err);
if (h == NULL) {
2020-05-14 19:21:31 +00:00
fprintf(stderr, "Error: unable to create handle from file %s\n", filename);
return 1;
}
2020-01-22 14:57:43 +00:00
CODES_CHECK(codes_get_long(h, "numberOfPoints", &numberOfPoints), 0);
CODES_CHECK(codes_set_double(h, "missingValue", missing), 0);
2020-01-22 14:57:43 +00:00
lats = (double*)malloc(numberOfPoints * sizeof(double));
if (!lats) {
2020-05-14 19:21:31 +00:00
fprintf(stderr, "Error: unable to allocate %ld bytes\n", (long)(numberOfPoints * sizeof(double)));
return 1;
}
2020-01-22 14:57:43 +00:00
lons = (double*)malloc(numberOfPoints * sizeof(double));
if (!lons) {
2020-05-14 19:21:31 +00:00
fprintf(stderr, "Error: unable to allocate %ld bytes\n", (long)(numberOfPoints * sizeof(double)));
2020-01-22 14:57:43 +00:00
free(lats);
return 1;
}
2020-01-22 14:57:43 +00:00
values = (double*)malloc(numberOfPoints * sizeof(double));
if (!values) {
2020-05-14 19:21:31 +00:00
fprintf(stderr, "Error: unable to allocate %ld bytes\n", (long)(numberOfPoints * sizeof(double)));
2020-01-22 14:57:43 +00:00
free(lats);
free(lons);
return 1;
}
2020-01-22 14:57:43 +00:00
CODES_CHECK(codes_grib_get_data(h, lats, lons, values), 0);
for (i = 0; i < numberOfPoints; ++i) {
if (values[i] != missing) {
2020-01-22 14:57:43 +00:00
printf("%f %f %f\n", lats[i], lons[i], values[i]);
}
}
2020-01-22 14:57:43 +00:00
free(lats);
free(lons);
free(values);
codes_handle_delete(h);
2020-01-22 14:57:43 +00:00
fclose(in);
return 0;
}