2014-06-18 16:14:01 +00:00
|
|
|
/*
|
2015-01-05 15:45:46 +00:00
|
|
|
* Copyright 2005-2015 ECMWF.
|
2014-06-18 16:14:01 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Description: Check the geometry of a global GRIB field
|
|
|
|
* with a Gaussian Grid (reduced or regular)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdarg.h>
|
2014-12-23 10:16:21 +00:00
|
|
|
#include "eccodes.h"
|
2014-06-18 16:14:01 +00:00
|
|
|
|
|
|
|
#define STR_EQUAL(s1, s2) (strcmp((s1), (s2)) == 0)
|
|
|
|
|
2014-07-13 12:03:48 +00:00
|
|
|
int exit_on_error = 1; /* By default exit if any check fails */
|
|
|
|
int error_count = 0;
|
|
|
|
|
2014-06-18 16:14:01 +00:00
|
|
|
int DBL_EQUAL(double d1, double d2, double tolerance)
|
|
|
|
{
|
|
|
|
return fabs(d1-d2) <= tolerance;
|
|
|
|
}
|
|
|
|
|
|
|
|
void usage(const char* prog)
|
|
|
|
{
|
2014-07-13 12:03:48 +00:00
|
|
|
printf("usage: %s [-f] grib_file grib_file ...\n\n",prog);
|
|
|
|
printf("-f Do not exit on first error\n");
|
2014-06-18 16:14:01 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2014-06-23 12:17:10 +00:00
|
|
|
/* Print an error message and die */
|
2014-06-18 16:14:01 +00:00
|
|
|
void error(const char* fmt, ...)
|
|
|
|
{
|
|
|
|
va_list list;
|
2014-12-23 10:16:21 +00:00
|
|
|
va_start(list,fmt);
|
2014-12-22 16:50:54 +00:00
|
|
|
vfprintf(stderr, fmt, list);
|
2014-06-18 16:14:01 +00:00
|
|
|
va_end(list);
|
|
|
|
|
2014-07-13 12:03:48 +00:00
|
|
|
++error_count;
|
|
|
|
if (exit_on_error) {
|
|
|
|
exit(1);
|
|
|
|
}
|
2014-06-18 16:14:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
double get_precision(long edition)
|
|
|
|
{
|
|
|
|
if (edition == 1) return 1.0/1000.0; /* milli degrees */
|
|
|
|
if (edition == 2) return 1.0/1000000.0; /* micro degrees */
|
|
|
|
assert(!"Invalid edition");
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
|
2014-06-23 12:17:10 +00:00
|
|
|
int process_file(const char* filename)
|
2014-06-18 16:14:01 +00:00
|
|
|
{
|
|
|
|
int err = 0, msg_num = 0;
|
2014-12-23 10:16:21 +00:00
|
|
|
codes_handle *h = NULL;
|
2014-06-18 16:14:01 +00:00
|
|
|
|
2014-06-23 12:17:10 +00:00
|
|
|
FILE* in = fopen(filename, "r");
|
2014-06-18 16:14:01 +00:00
|
|
|
if(!in) {
|
|
|
|
error("ERROR: unable to open input file %s\n",filename);
|
|
|
|
}
|
2014-06-23 12:17:10 +00:00
|
|
|
|
|
|
|
printf("Checking file %s\n", filename);
|
|
|
|
|
2015-02-12 17:34:01 +00:00
|
|
|
while ((h = codes_handle_new_from_file(0, in, PRODUCT_GRIB, &err)) != NULL )
|
2014-06-23 12:17:10 +00:00
|
|
|
{
|
2014-06-18 16:14:01 +00:00
|
|
|
int is_reduced = 0, is_regular = 0, grid_ok = 0;
|
|
|
|
long edition = 0, N = 0, Nj = 0, numberOfDataPoints;
|
2015-07-07 16:50:09 +00:00
|
|
|
size_t len = 0, sizeOfValuesArray = 0;
|
2014-06-18 16:14:01 +00:00
|
|
|
double *lats = NULL;
|
|
|
|
long *pl = NULL;
|
|
|
|
char gridType[32] = {0,};
|
|
|
|
double angular_tolerance, lat1, lon1, lat2, lon2, expected_lon2;
|
|
|
|
double iDirectionIncrementInDegrees;
|
|
|
|
|
2014-12-23 10:16:21 +00:00
|
|
|
if (err != CODES_SUCCESS) CODES_CHECK(err,0);
|
2014-06-18 16:14:01 +00:00
|
|
|
++msg_num;
|
2014-06-23 12:17:10 +00:00
|
|
|
printf("\tProcessing GRIB message #%d\n", msg_num);
|
2014-06-18 16:14:01 +00:00
|
|
|
|
|
|
|
len = 32;
|
2014-12-23 10:16:21 +00:00
|
|
|
CODES_CHECK(codes_get_string(h,"gridType",gridType,&len),0);
|
2014-06-18 16:14:01 +00:00
|
|
|
is_regular = STR_EQUAL(gridType, "regular_gg");
|
|
|
|
is_reduced = STR_EQUAL(gridType, "reduced_gg");
|
|
|
|
grid_ok = is_regular || is_reduced;
|
|
|
|
if( !grid_ok ) {
|
2014-06-23 12:17:10 +00:00
|
|
|
/*error("ERROR: gridType should be Reduced or Regular Gaussian Grid!\n");*/
|
|
|
|
printf("\tWARNING: gridType should be Reduced or Regular Gaussian Grid! Ignoring\n");
|
2014-12-23 10:16:21 +00:00
|
|
|
codes_handle_delete(h);
|
2014-06-23 12:17:10 +00:00
|
|
|
continue;
|
2014-06-18 16:14:01 +00:00
|
|
|
}
|
|
|
|
|
2014-12-23 10:16:21 +00:00
|
|
|
CODES_CHECK(codes_get_long(h,"edition",&edition),0);
|
|
|
|
CODES_CHECK(codes_get_long(h,"N",&N),0);
|
|
|
|
CODES_CHECK(codes_get_long(h,"Nj",&Nj),0);
|
|
|
|
CODES_CHECK(codes_get_long(h,"numberOfDataPoints",&numberOfDataPoints),0);
|
|
|
|
CODES_CHECK(codes_get_double(h,"latitudeOfFirstGridPointInDegrees", &lat1),0);
|
|
|
|
CODES_CHECK(codes_get_double(h,"longitudeOfFirstGridPointInDegrees",&lon1),0);
|
|
|
|
CODES_CHECK(codes_get_double(h,"latitudeOfLastGridPointInDegrees", &lat2),0);
|
|
|
|
CODES_CHECK(codes_get_double(h,"longitudeOfLastGridPointInDegrees", &lon2),0);
|
|
|
|
CODES_CHECK(codes_get_double(h,"iDirectionIncrementInDegrees",&iDirectionIncrementInDegrees),0);
|
2014-06-18 16:14:01 +00:00
|
|
|
|
|
|
|
angular_tolerance = get_precision(edition);
|
|
|
|
|
2015-05-26 13:17:57 +00:00
|
|
|
if (N <= 0) {
|
|
|
|
error("ERROR: N should be > 0!\n", N);
|
|
|
|
}
|
2014-06-18 16:14:01 +00:00
|
|
|
if ( Nj != 2*N ) {
|
|
|
|
error("ERROR: Nj is %ld but should be 2*N (%ld)!\n", Nj, 2*N);
|
|
|
|
}
|
|
|
|
|
2014-06-23 12:17:10 +00:00
|
|
|
if (lon1 != 0) {
|
|
|
|
error("ERROR: latitudeOfFirstGridPointInDegrees=%f but should be 0!\n", lon1);
|
|
|
|
}
|
2015-02-11 13:07:22 +00:00
|
|
|
expected_lon2 = 360.0 - 360.0/(4*N);
|
2014-06-23 12:17:10 +00:00
|
|
|
|
|
|
|
/* Check first and last latitudes */
|
|
|
|
if (lat1 != -lat2) {
|
|
|
|
error("First latitude must be = last latitude but opposite in sign: lat1=%f, lat2=%f\n",
|
|
|
|
lat1, lat2);
|
|
|
|
}
|
|
|
|
lats = (double*)malloc(sizeof(double)*Nj);
|
2014-12-23 10:16:21 +00:00
|
|
|
CODES_CHECK(codes_get_gaussian_latitudes(N,lats), 0);
|
2014-06-23 12:17:10 +00:00
|
|
|
|
|
|
|
if (!DBL_EQUAL(lats[0], lat1, angular_tolerance)) {
|
|
|
|
error("First latitude %f must be %f\n", lat1, lats[0]);
|
|
|
|
}
|
|
|
|
if (!DBL_EQUAL(lats[Nj-1], lat2, angular_tolerance)) {
|
|
|
|
error("Last latitude %f must be %f\n", lat2, lats[Nj-1]);
|
|
|
|
}
|
|
|
|
|
2014-06-18 16:14:01 +00:00
|
|
|
if (is_reduced) {
|
2015-02-11 13:07:22 +00:00
|
|
|
int pl_sum = 0, max_pl = 0;
|
2014-06-18 16:14:01 +00:00
|
|
|
size_t i = 0, pl_len = 0;
|
2015-05-26 13:17:57 +00:00
|
|
|
long is_octahedral = 0;
|
2014-12-23 10:16:21 +00:00
|
|
|
int is_missing = codes_is_missing(h, "Ni", &err);
|
|
|
|
assert(err == CODES_SUCCESS);
|
2014-06-18 16:14:01 +00:00
|
|
|
if (!is_missing) {
|
|
|
|
error("ERROR: Ni should be missing!\n");
|
|
|
|
}
|
|
|
|
|
2014-12-23 10:16:21 +00:00
|
|
|
CODES_CHECK(codes_get_size(h, "pl", &pl_len),0);
|
2015-02-11 13:07:22 +00:00
|
|
|
assert(pl_len>0);
|
2014-06-18 16:14:01 +00:00
|
|
|
if (pl_len != 2*N) {
|
|
|
|
error("ERROR: Length of pl array is %ld but should be 2*N (%ld)!\n", pl_len, 2*N);
|
|
|
|
}
|
2014-10-01 16:43:23 +00:00
|
|
|
pl = (long*)malloc(pl_len*sizeof(long));
|
2014-06-18 16:14:01 +00:00
|
|
|
assert(pl);
|
2014-12-23 10:16:21 +00:00
|
|
|
CODES_CHECK(codes_get_long_array(h, "pl", pl, &pl_len),0);
|
2015-02-11 13:07:22 +00:00
|
|
|
max_pl = pl[0];
|
2014-06-18 16:14:01 +00:00
|
|
|
|
|
|
|
/* Check pl is symmetric */
|
|
|
|
for(i=0; i<pl_len/2; ++i) {
|
|
|
|
const long pl_start = pl[i];
|
|
|
|
const long pl_end = pl[pl_len-1-i];
|
|
|
|
if ( pl_start != pl_end ) {
|
|
|
|
error("ERROR: pl array is not symmetric: pl[%ld]=%ld, pl[%ld]=%ld!\n",
|
|
|
|
i, pl_start, pl_len-1-i, pl_end);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check sum of pl array and total number of points */
|
|
|
|
for(i=0; i<pl_len; ++i) {
|
|
|
|
pl_sum += pl[i];
|
2015-02-11 13:07:22 +00:00
|
|
|
if (pl[i] > max_pl) max_pl = pl[i];
|
2014-06-18 16:14:01 +00:00
|
|
|
}
|
|
|
|
if (pl_sum != numberOfDataPoints) {
|
|
|
|
error("ERROR: Sum of pl array %ld does not match numberOfDataPoints %ld!\n", pl_sum, numberOfDataPoints);
|
|
|
|
}
|
2015-05-26 13:17:57 +00:00
|
|
|
CODES_CHECK(codes_get_long(h,"isOctahedral",&is_octahedral),0);
|
|
|
|
if (is_octahedral) {
|
2015-02-11 13:07:22 +00:00
|
|
|
printf("\tThis is an Octahedral Gaussian grid!\n");
|
|
|
|
expected_lon2 = 360.0 - 360.0/max_pl;
|
|
|
|
}
|
2014-06-18 16:14:01 +00:00
|
|
|
free(pl);
|
|
|
|
}
|
|
|
|
|
2015-02-11 13:07:22 +00:00
|
|
|
if (fabs(lon2 - expected_lon2) > angular_tolerance) {
|
|
|
|
error("ERROR: longitudeOfLastGridPointInDegrees=%f but should be %f!\n", lon2, expected_lon2);
|
|
|
|
}
|
|
|
|
|
2015-07-07 16:50:09 +00:00
|
|
|
CODES_CHECK(codes_get_size(h, "values", &sizeOfValuesArray),0);
|
|
|
|
if (sizeOfValuesArray != numberOfDataPoints) {
|
|
|
|
error("Number of data points %d different from size of values array %d\n",
|
|
|
|
numberOfDataPoints, sizeOfValuesArray);
|
2014-06-18 16:14:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
free(lats);
|
2014-12-23 10:16:21 +00:00
|
|
|
codes_handle_delete(h);
|
2014-06-18 16:14:01 +00:00
|
|
|
}
|
|
|
|
fclose(in);
|
2014-06-23 12:17:10 +00:00
|
|
|
printf("\nFile %s OK\n\n", filename);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
|
2014-07-13 12:03:48 +00:00
|
|
|
if (argc < 2)
|
|
|
|
{
|
2014-06-23 12:17:10 +00:00
|
|
|
usage(argv[0]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-07-13 12:03:48 +00:00
|
|
|
for(i=1; i<argc; ++i)
|
2014-06-23 12:17:10 +00:00
|
|
|
{
|
2014-07-13 12:03:48 +00:00
|
|
|
const char* arg = argv[i];
|
|
|
|
if (STR_EQUAL(arg, "-f"))
|
|
|
|
{
|
|
|
|
if (argc < 3) {
|
|
|
|
usage(argv[0]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
/* Process switches */
|
|
|
|
exit_on_error = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* We have a grib file */
|
|
|
|
process_file(arg);
|
|
|
|
}
|
2014-06-23 12:17:10 +00:00
|
|
|
}
|
|
|
|
|
2014-07-13 12:03:48 +00:00
|
|
|
printf("###############\n");
|
|
|
|
if (error_count == 0)
|
|
|
|
{
|
|
|
|
printf("ALL OK\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf("Error count: %d\n", error_count);
|
|
|
|
}
|
|
|
|
|
2014-06-18 16:14:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|