2020-01-28 14:32:34 +00:00
|
|
|
! (C) Copyright 2005- ECMWF.
|
2015-02-25 12:19:18 +00:00
|
|
|
!
|
|
|
|
! This software is licensed under the terms of the Apache Licence Version 2.0
|
2017-01-03 11:03:48 +00:00
|
|
|
! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
|
2015-02-25 12:19:18 +00:00
|
|
|
!
|
|
|
|
! 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.
|
|
|
|
!
|
|
|
|
!
|
2021-02-23 17:14:11 +00:00
|
|
|
! Description: How to read attributes of keys in BUFR messages.
|
2015-02-25 12:19:18 +00:00
|
|
|
!
|
|
|
|
!
|
|
|
|
program bufr_attributes
|
2021-02-14 18:14:39 +00:00
|
|
|
use eccodes
|
|
|
|
implicit none
|
|
|
|
integer :: ifile
|
|
|
|
integer :: iret
|
|
|
|
integer :: ibufr
|
|
|
|
integer :: count = 0
|
|
|
|
integer(kind=4) :: iVal, conf
|
|
|
|
real(kind=8) :: t2m
|
|
|
|
character(len=32) :: units, confUnits
|
|
|
|
|
|
|
|
call codes_open_file(ifile, '../../data/bufr/syno_multi.bufr', 'r')
|
2015-02-25 12:19:18 +00:00
|
|
|
|
2023-08-17 12:50:33 +00:00
|
|
|
do while (.true.)
|
|
|
|
! A BUFR message is loaded from the file,
|
|
|
|
! ibufr is the BUFR id to be used in subsequent calls
|
|
|
|
call codes_bufr_new_from_file(ifile, ibufr, iret)
|
|
|
|
if (iret == CODES_END_OF_FILE) exit
|
2017-02-06 16:45:30 +00:00
|
|
|
|
2021-11-13 17:40:27 +00:00
|
|
|
! Get and print some keys from the BUFR header
|
2021-02-14 18:14:39 +00:00
|
|
|
write (*, *) 'message: ', count
|
2015-02-25 12:19:18 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
! We need to instruct ecCodes to expand all the descriptors
|
|
|
|
! i.e. unpack the data values
|
2022-12-22 16:26:01 +00:00
|
|
|
call codes_set(ibufr, "unpack", 1);
|
2021-02-14 18:14:39 +00:00
|
|
|
! ----------------------------------------------------------------
|
2021-11-30 13:01:07 +00:00
|
|
|
! We will read the value and all the attributes available for
|
|
|
|
! the 2m temperature.
|
2021-02-14 18:14:39 +00:00
|
|
|
! ----------------------------------------------------------------
|
2015-02-25 12:19:18 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
! Get the element's value as as real
|
2022-12-22 16:26:01 +00:00
|
|
|
call codes_get(ibufr, 'airTemperatureAt2M', t2m);
|
2021-02-14 18:14:39 +00:00
|
|
|
write (*, *) ' airTemperatureAt2M:', t2m
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
! Get the element's code (see BUFR code table B)
|
2022-12-22 16:26:01 +00:00
|
|
|
call codes_get(ibufr, 'airTemperatureAt2M->code', iVal);
|
2021-02-14 18:14:39 +00:00
|
|
|
write (*, *) ' airTemperatureAt2M->code:', iVal
|
2017-02-06 16:45:30 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
! Get the element's units (see BUFR code table B)
|
|
|
|
call codes_get(ibufr, 'airTemperatureAt2M->units', units)
|
|
|
|
write (*, *) ' airTemperatureAt2M->units:', units
|
2017-02-06 16:45:30 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
! Get the element's scale (see BUFR code table B)
|
2022-12-22 16:26:01 +00:00
|
|
|
call codes_get(ibufr, 'airTemperatureAt2M->scale', iVal);
|
2021-02-14 18:14:39 +00:00
|
|
|
write (*, *) ' airTemperatureAt2M->code:', iVal
|
2017-02-06 16:45:30 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
! Get the element's reference (see BUFR code table B)
|
2022-12-22 16:26:01 +00:00
|
|
|
call codes_get(ibufr, 'airTemperatureAt2M->reference', iVal);
|
2021-02-14 18:14:39 +00:00
|
|
|
write (*, *) ' airTemperatureAt2M->reference:', iVal
|
2017-02-06 16:45:30 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
! Get the element's width (see BUFR code table B)
|
2022-12-22 16:26:01 +00:00
|
|
|
call codes_get(ibufr, 'airTemperatureAt2M->width', iVal);
|
2021-02-14 18:14:39 +00:00
|
|
|
write (*, *) ' airTemperatureAt2M->width:', iVal
|
2017-02-06 16:45:30 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
! -------------------------------------------------------------------
|
2021-11-30 13:01:07 +00:00
|
|
|
! The 2m temperature data element in this message has an associated
|
|
|
|
! field: percentConfidence. Its value and attributes can be accessed
|
|
|
|
! in a similar manner as was shown above for 2m temperature.
|
2021-02-14 18:14:39 +00:00
|
|
|
! -------------------------------------------------------------------
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
! Get the element's value as as real
|
2022-12-22 16:26:01 +00:00
|
|
|
call codes_get(ibufr, 'airTemperatureAt2M->percentConfidence', conf);
|
2021-02-14 18:14:39 +00:00
|
|
|
write (*, *) ' airTemperatureAt2M->percentConfidence:', conf
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
! Get the element's code (see BUFR code table B)
|
2022-12-22 16:26:01 +00:00
|
|
|
call codes_get(ibufr, 'airTemperatureAt2M->percentConfidence->code', iVal);
|
2021-02-14 18:14:39 +00:00
|
|
|
write (*, *) ' airTemperatureAt2M->percentConfidence->code:', iVal
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
! Get the element's units (see BUFR code table B)
|
|
|
|
call codes_get(ibufr, 'airTemperatureAt2M->percentConfidence->units', confUnits)
|
|
|
|
write (*, *) ' airTemperatureAt2M->percentConfidence->units:', confUnits
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
! Get the element's scale (see BUFR code table B)
|
2022-12-22 16:26:01 +00:00
|
|
|
call codes_get(ibufr, 'airTemperatureAt2M->percentConfidence->scale', iVal);
|
2021-02-14 18:14:39 +00:00
|
|
|
write (*, *) ' airTemperatureAt2M->percentConfidence->code:', iVal
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
! Get the element's reference (see BUFR code table B)
|
2022-12-22 16:26:01 +00:00
|
|
|
call codes_get(ibufr, 'airTemperatureAt2M->percentConfidence->reference', iVal);
|
2021-02-14 18:14:39 +00:00
|
|
|
write (*, *) ' airTemperatureAt2M->percentConfidence->reference:', iVal
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
! Get the element's width (see BUFR code table B)
|
2022-12-22 16:26:01 +00:00
|
|
|
call codes_get(ibufr, 'airTemperatureAt2M->percentConfidence->width', iVal);
|
2021-02-14 18:14:39 +00:00
|
|
|
write (*, *) ' airTemperatureAt2M->percentConfidence->width:', iVal
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2021-11-13 17:40:27 +00:00
|
|
|
! Release the BUFR message
|
2021-02-14 18:14:39 +00:00
|
|
|
call codes_release(ibufr)
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
count = count + 1
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
end do
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
! Close file
|
|
|
|
call codes_close_file(ifile)
|
2015-02-25 12:19:18 +00:00
|
|
|
|
|
|
|
end program bufr_attributes
|