2016-10-24 16:34:12 +00:00
|
|
|
/*
|
2017-01-03 11:03:48 +00:00
|
|
|
* Copyright 2005-2017 ECMWF.
|
2016-10-24 16:34:12 +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_api_internal.h"
|
|
|
|
#include "eccodes.h"
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
void usage(const char* prog)
|
|
|
|
{
|
2017-08-21 17:11:40 +00:00
|
|
|
printf("usage: %s [-a|-d] infile\n",prog);
|
2016-10-24 16:34:12 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2017-08-21 17:11:40 +00:00
|
|
|
#define ITER_ALL_KEYS 1
|
|
|
|
#define ITER_DATA_KEYS 2
|
|
|
|
|
2016-10-24 16:34:12 +00:00
|
|
|
int main(int argc,char* argv[])
|
|
|
|
{
|
|
|
|
int err = 0;
|
|
|
|
codes_handle* h = NULL;
|
2017-02-03 15:44:03 +00:00
|
|
|
codes_bufr_keys_iterator* kiter = NULL;
|
2016-10-24 16:34:12 +00:00
|
|
|
char* input_filename = NULL;
|
|
|
|
FILE* f = NULL;
|
2017-08-21 17:11:40 +00:00
|
|
|
int iterator_mode = ITER_ALL_KEYS;
|
2017-02-03 15:44:03 +00:00
|
|
|
/*grib_context* c = grib_context_get_default();*/
|
2016-10-24 16:34:12 +00:00
|
|
|
|
2017-08-21 17:11:40 +00:00
|
|
|
if (argc!=3) usage(argv[0]);
|
|
|
|
if (strcmp(argv[1], "-a")==0) {
|
|
|
|
iterator_mode = ITER_ALL_KEYS;
|
|
|
|
} else if (strcmp(argv[1], "-d")==0) {
|
|
|
|
iterator_mode = ITER_DATA_KEYS;
|
|
|
|
} else {
|
|
|
|
assert(!"Invalid mode");
|
|
|
|
}
|
|
|
|
|
|
|
|
input_filename = argv[2];
|
2016-10-24 16:34:12 +00:00
|
|
|
f = fopen(input_filename, "r");
|
|
|
|
assert(f);
|
|
|
|
h = codes_handle_new_from_file(NULL, f, PRODUCT_BUFR, &err);
|
|
|
|
assert(h);
|
|
|
|
|
|
|
|
CODES_CHECK(codes_set_long(h,"unpack",1), 0);
|
2017-08-21 17:11:40 +00:00
|
|
|
|
|
|
|
if (iterator_mode == ITER_ALL_KEYS) {
|
|
|
|
/*printf("Dumping ALL keys\n");*/
|
|
|
|
kiter = codes_bufr_keys_iterator_new(h, 0);
|
|
|
|
} else {
|
|
|
|
/*printf("Dumping only DATA SECTION keys\n");*/
|
|
|
|
kiter=codes_bufr_data_section_keys_iterator_new(h);
|
|
|
|
}
|
2016-10-24 16:34:12 +00:00
|
|
|
|
|
|
|
while(codes_bufr_keys_iterator_next(kiter))
|
|
|
|
{
|
|
|
|
char* kname = codes_bufr_keys_iterator_get_name(kiter);
|
|
|
|
printf("%s\n", kname);
|
|
|
|
}
|
2017-01-26 15:50:09 +00:00
|
|
|
codes_bufr_keys_iterator_delete(kiter);
|
2016-11-29 16:57:51 +00:00
|
|
|
codes_handle_delete(h);
|
2016-10-24 16:34:12 +00:00
|
|
|
return 0;
|
|
|
|
}
|