2019-09-20 17:30:06 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2005-2019 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.
|
|
|
|
*/
|
2019-09-24 14:43:27 +00:00
|
|
|
|
2019-09-20 17:30:06 +00:00
|
|
|
#include "eccodes.h"
|
|
|
|
|
2019-09-24 14:43:27 +00:00
|
|
|
static const char* not_found = "not_found";
|
|
|
|
|
2019-09-26 17:29:30 +00:00
|
|
|
static void print_rdb_key(int local, long value)
|
2019-09-24 14:43:27 +00:00
|
|
|
{
|
2019-09-26 17:29:30 +00:00
|
|
|
if (local) printf("%ld ", value);
|
|
|
|
else printf("%s ", not_found);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_rdb_key_double(int local, double value)
|
|
|
|
{
|
|
|
|
if (local) printf("%g ", value);
|
|
|
|
else printf("%s ", not_found);
|
2019-09-24 14:43:27 +00:00
|
|
|
}
|
2019-09-26 17:29:30 +00:00
|
|
|
|
|
|
|
static void print_rdb_ident(int local, const char* value)
|
2019-09-24 14:43:27 +00:00
|
|
|
{
|
2019-09-26 17:29:30 +00:00
|
|
|
if (!local || value == NULL || strlen(value) == 0)
|
2019-09-24 14:43:27 +00:00
|
|
|
printf("%s ", not_found);
|
|
|
|
else
|
|
|
|
printf("%s ", value);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
2019-09-20 17:30:06 +00:00
|
|
|
{
|
2019-09-24 14:43:27 +00:00
|
|
|
char *filename, *keys;
|
2019-09-20 17:30:06 +00:00
|
|
|
int i, err = 0;
|
|
|
|
int num_messages = 0;
|
2019-11-07 12:03:45 +00:00
|
|
|
codes_bufr_header* header_array = NULL;
|
2019-09-20 17:30:06 +00:00
|
|
|
codes_context* c = codes_context_get_default();
|
|
|
|
|
2019-09-24 14:43:27 +00:00
|
|
|
if (argc != 3) return 1;
|
|
|
|
|
|
|
|
keys = argv[1]; /* comma-separated like bufr_ls/bufr_get */
|
|
|
|
filename = argv[2];
|
2019-09-20 17:30:06 +00:00
|
|
|
|
2019-11-07 12:03:45 +00:00
|
|
|
err = codes_bufr_extract_headers_malloc(c, filename, &header_array, &num_messages);
|
2019-09-24 14:43:27 +00:00
|
|
|
if (err) return 1;
|
2019-09-20 17:30:06 +00:00
|
|
|
|
2019-09-24 14:43:27 +00:00
|
|
|
for (i=0; i < num_messages; ++i) {
|
2019-11-07 12:03:45 +00:00
|
|
|
codes_bufr_header bh = header_array[i];
|
2019-09-23 14:08:24 +00:00
|
|
|
/*
|
2019-09-26 17:29:30 +00:00
|
|
|
* Mimic the behaviour of bufr_get -f -p keys for testing
|
2019-09-23 14:08:24 +00:00
|
|
|
*/
|
2019-11-07 17:27:25 +00:00
|
|
|
const int has_ecmwf_local = (bh.ecmwfLocalSectionPresent == 1 && bh.bufrHeaderCentre == 98);
|
2019-09-24 14:43:27 +00:00
|
|
|
|
|
|
|
if (strstr(keys, "message_offset")) printf("%ld ", bh.message_offset);
|
|
|
|
if (strstr(keys, "message_size")) printf("%ld ", bh.message_size);
|
|
|
|
if (strstr(keys, "edition")) printf("%ld ", bh.edition);
|
2019-11-07 17:27:25 +00:00
|
|
|
if (strstr(keys, "totalLength")) printf("%ld ", bh.message_size);
|
2019-09-24 14:43:27 +00:00
|
|
|
if (strstr(keys, "masterTableNumber")) printf("%ld ", bh.masterTableNumber);
|
|
|
|
if (strstr(keys, "bufrHeaderSubCentre")) printf("%ld ", bh.bufrHeaderSubCentre);
|
|
|
|
if (strstr(keys, "bufrHeaderCentre")) printf("%ld ", bh.bufrHeaderCentre);
|
|
|
|
if (strstr(keys, "updateSequenceNumber")) printf("%ld ", bh.updateSequenceNumber);
|
|
|
|
if (strstr(keys, "dataCategory")) printf("%ld ", bh.dataCategory);
|
|
|
|
if (strstr(keys, "dataSubCategory")) printf("%ld ", bh.dataSubCategory);
|
|
|
|
if (strstr(keys, "masterTablesVersionNumber")) printf("%ld ", bh.masterTablesVersionNumber);
|
|
|
|
if (strstr(keys, "localTablesVersionNumber")) printf("%ld ", bh.localTablesVersionNumber);
|
|
|
|
if (strstr(keys, "typicalYearOfCentury")) printf("%ld ", bh.typicalYearOfCentury);
|
|
|
|
if (strstr(keys, "typicalMonth")) printf("%ld ", bh.typicalMonth);
|
|
|
|
if (strstr(keys, "typicalDay")) printf("%ld ", bh.typicalDay);
|
|
|
|
if (strstr(keys, "typicalHour")) printf("%ld ", bh.typicalHour);
|
|
|
|
if (strstr(keys, "typicalMinute")) printf("%ld ", bh.typicalMinute);
|
|
|
|
if (strstr(keys, "internationalDataSubCategory")) printf("%ld ", bh.internationalDataSubCategory);
|
|
|
|
if (strstr(keys, "typicalYear")) printf("%ld ", bh.typicalYear);
|
|
|
|
if (strstr(keys, "typicalSecond")) printf("%ld ", bh.typicalSecond);
|
2019-11-07 17:27:25 +00:00
|
|
|
if (strstr(keys, "localSectionPresent")) printf("%ld ", bh.ecmwfLocalSectionPresent);
|
2019-09-24 14:43:27 +00:00
|
|
|
|
|
|
|
if (strstr(keys, "rdbType")) print_rdb_key(has_ecmwf_local, bh.rdbType);
|
|
|
|
if (strstr(keys, "oldSubtype")) print_rdb_key(has_ecmwf_local, bh.oldSubtype);
|
|
|
|
if (strstr(keys, "localYear")) print_rdb_key(has_ecmwf_local, bh.localYear);
|
|
|
|
if (strstr(keys, "localMonth")) print_rdb_key(has_ecmwf_local, bh.localMonth);
|
|
|
|
if (strstr(keys, "localDay")) print_rdb_key(has_ecmwf_local, bh.localDay);
|
|
|
|
if (strstr(keys, "localHour")) print_rdb_key(has_ecmwf_local, bh.localHour);
|
|
|
|
if (strstr(keys, "localMinute")) print_rdb_key(has_ecmwf_local, bh.localMinute);
|
|
|
|
if (strstr(keys, "localSecond")) print_rdb_key(has_ecmwf_local, bh.localSecond);
|
|
|
|
if (strstr(keys, "rdbtimeDay")) print_rdb_key(has_ecmwf_local, bh.rdbtimeDay);
|
|
|
|
if (strstr(keys, "rdbtimeHour")) print_rdb_key(has_ecmwf_local, bh.rdbtimeHour);
|
|
|
|
if (strstr(keys, "rdbtimeMinute")) print_rdb_key(has_ecmwf_local, bh.rdbtimeMinute);
|
|
|
|
if (strstr(keys, "rdbtimeSecond")) print_rdb_key(has_ecmwf_local, bh.rdbtimeSecond);
|
|
|
|
if (strstr(keys, "rectimeDay")) print_rdb_key(has_ecmwf_local, bh.rectimeDay);
|
|
|
|
if (strstr(keys, "rectimeHour")) print_rdb_key(has_ecmwf_local, bh.rectimeHour);
|
|
|
|
if (strstr(keys, "rectimeMinute")) print_rdb_key(has_ecmwf_local, bh.rectimeMinute);
|
|
|
|
if (strstr(keys, "rectimeSecond")) print_rdb_key(has_ecmwf_local, bh.rectimeSecond);
|
|
|
|
if (strstr(keys, "qualityControl")) print_rdb_key(has_ecmwf_local, bh.qualityControl);
|
|
|
|
if (strstr(keys, "newSubtype")) print_rdb_key(has_ecmwf_local, bh.newSubtype);
|
|
|
|
if (strstr(keys, "daLoop")) print_rdb_key(has_ecmwf_local, bh.daLoop);
|
|
|
|
|
2019-09-26 17:29:30 +00:00
|
|
|
if (strstr(keys, "localLongitude1")) print_rdb_key_double(has_ecmwf_local, bh.localLongitude1);
|
|
|
|
if (strstr(keys, "localLatitude1")) print_rdb_key_double(has_ecmwf_local, bh.localLatitude1);
|
|
|
|
if (strstr(keys, "localLongitude2")) print_rdb_key_double(has_ecmwf_local, bh.localLongitude2);
|
|
|
|
if (strstr(keys, "localLatitude2")) print_rdb_key_double(has_ecmwf_local, bh.localLatitude2);
|
|
|
|
|
|
|
|
if (strstr(keys, "localNumberOfObservations")) printf("%ld ", bh.localNumberOfObservations);
|
|
|
|
if (strstr(keys, "satelliteID")) printf("%ld ", bh.satelliteID);
|
|
|
|
if (strstr(keys, "numberOfSubsets")) printf("%ld ", bh.numberOfSubsets);
|
|
|
|
if (strstr(keys, "observedData")) printf("%ld ", bh.observedData);
|
|
|
|
if (strstr(keys, "compressedData")) printf("%ld ", bh.compressedData);
|
2019-09-24 16:16:34 +00:00
|
|
|
|
|
|
|
if (strstr(keys, "ident")) print_rdb_ident(has_ecmwf_local, bh.ident);
|
2019-09-24 14:43:27 +00:00
|
|
|
printf("\n");
|
2019-09-20 17:30:06 +00:00
|
|
|
}
|
|
|
|
|
2019-11-07 12:03:45 +00:00
|
|
|
free(header_array);
|
2019-09-20 17:30:06 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|