mirror of https://github.com/ecmwf/eccodes.git
Test added for bufr_keys_iterator
This commit is contained in:
parent
e573e21317
commit
ffab2d832b
|
@ -17,6 +17,7 @@ list( APPEND test_bins
|
||||||
multi_from_message
|
multi_from_message
|
||||||
read_index
|
read_index
|
||||||
unit_tests
|
unit_tests
|
||||||
|
bufr_keys_iter
|
||||||
gauss_sub
|
gauss_sub
|
||||||
grib_util_set_spec
|
grib_util_set_spec
|
||||||
local_MeteoFrance
|
local_MeteoFrance
|
||||||
|
@ -38,6 +39,7 @@ list( APPEND tests1
|
||||||
definitions
|
definitions
|
||||||
calendar
|
calendar
|
||||||
unit_tests
|
unit_tests
|
||||||
|
bufr_keys_iter
|
||||||
md5
|
md5
|
||||||
uerra
|
uerra
|
||||||
grib_2nd_order_numValues
|
grib_2nd_order_numValues
|
||||||
|
|
|
@ -0,0 +1,46 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2005-2016 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_api_internal.h"
|
||||||
|
#include "eccodes.h"
|
||||||
|
#include <assert.h>
|
||||||
|
|
||||||
|
void usage(const char* prog)
|
||||||
|
{
|
||||||
|
printf("usage: %s infile\n",prog);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int argc,char* argv[])
|
||||||
|
{
|
||||||
|
int err = 0;
|
||||||
|
codes_handle* h = NULL;
|
||||||
|
grib_keys_iterator* kiter = NULL;
|
||||||
|
char* input_filename = NULL;
|
||||||
|
FILE* f = NULL;
|
||||||
|
|
||||||
|
if (argc!=2) usage(argv[0]);
|
||||||
|
input_filename = argv[1];
|
||||||
|
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);
|
||||||
|
|
||||||
|
/*kiter=codes_bufr_data_section_keys_iterator_new(h);*/
|
||||||
|
kiter = codes_bufr_keys_iterator_new(h);
|
||||||
|
while(codes_bufr_keys_iterator_next(kiter))
|
||||||
|
{
|
||||||
|
char* kname = codes_bufr_keys_iterator_get_name(kiter);
|
||||||
|
printf("%s\n", kname);
|
||||||
|
}
|
||||||
|
grib_keys_iterator_delete(kiter);
|
||||||
|
return 0;
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# Copyright 2005-2016 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.sh
|
||||||
|
|
||||||
|
input=${data_dir}/bufr/aaen_55.bufr
|
||||||
|
${test_dir}/bufr_keys_iter $input
|
||||||
|
|
||||||
|
# TODO: add test to check the output e.g. compare with reference file etc
|
Loading…
Reference in New Issue