/* * 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. */ #include "eccodes.h" static const char* not_found = "not_found"; static void print_rdb_key(int local, long value) { 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); } static void print_rdb_ident(int local, const char* value) { if (!local || value == NULL || strlen(value) == 0) printf("%s ", not_found); else printf("%s ", value); } int main(int argc, char* argv[]) { char *filename, *keys; int i, err = 0; int num_messages = 0; codes_bufr_header* header_array = NULL; codes_context* c = codes_context_get_default(); if (argc != 3) return 1; keys = argv[1]; /* comma-separated like bufr_ls/bufr_get */ filename = argv[2]; err = codes_bufr_extract_headers_malloc(c, filename, &header_array, &num_messages); if (err) { printf("ERROR: %s\n",grib_get_error_message(err)); return 1; } for (i=0; i < num_messages; ++i) { codes_bufr_header bh = header_array[i]; /* * Mimic the behaviour of bufr_get -f -p keys for testing */ const int has_ecmwf_local = (bh.ecmwfLocalSectionPresent == 1 && bh.bufrHeaderCentre == 98); 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); if (strstr(keys, "totalLength")) printf("%ld ", bh.message_size); 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, "typicalYear")) printf("%ld ", bh.typicalYear); 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, "typicalDate")) printf("%ld ", bh.typicalDate); if (strstr(keys, "typicalTime")) printf("%ld ", bh.typicalTime); if (strstr(keys, "internationalDataSubCategory")) printf("%ld ", bh.internationalDataSubCategory); if (strstr(keys, "typicalSecond")) printf("%ld ", bh.typicalSecond); if (strstr(keys, "localSectionPresent")) printf("%ld ", bh.ecmwfLocalSectionPresent); 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); 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); if (strstr(keys, "ident")) print_rdb_ident(has_ecmwf_local, bh.ident); printf("\n"); } free(header_array); return 0; }