eccodes/examples/F90/bufr_get_keys.f90

94 lines
2.7 KiB
Fortran
Raw Permalink Normal View History

2020-01-28 14:32:34 +00:00
! (C) Copyright 2005- ECMWF.
2015-02-06 11:44:01 +00:00
!
! This software is licensed under the terms of the Apache Licence Version 2.0
2020-01-28 14:32:34 +00:00
! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
2015-02-06 11:44:01 +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 values of different type of keys from BUFR messages.
2015-02-06 11:44:01 +00:00
!
!
program bufr_get_keys
use eccodes
implicit none
integer :: ifile
integer :: iret
integer :: ibufr
integer :: i, count = 0
integer(kind=4) :: blockNumber, stationNumber
real(kind=8) :: t2m
integer(kind=4), dimension(:), allocatable :: descriptors
real(kind=8), dimension(:), allocatable :: values
character(len=9) :: typicalDate
2015-02-06 11:44:01 +00:00
call codes_open_file(ifile, '../../data/bufr/syno_multi.bufr', 'r')
2015-02-06 11:44:01 +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
2016-09-13 16:48:52 +00:00
2021-11-13 17:40:27 +00:00
! Get and print some keys from the BUFR header
write (*, *) 'message: ', count
2015-02-06 11:44:01 +00:00
! We need to instruct ecCodes to expand all the descriptors
! i.e. unpack the data values
2022-12-28 15:12:46 +00:00
call codes_set(ibufr, "unpack", 1);
! Get as character
call codes_get(ibufr, 'typicalDate', typicalDate)
write (*, *) ' typicalDate:', typicalDate
2016-09-13 16:48:52 +00:00
! Get as integer
2022-12-28 15:12:46 +00:00
call codes_get(ibufr, 'blockNumber', blockNumber);
write (*, *) ' blockNumber:', blockNumber
2016-09-13 16:48:52 +00:00
! Get as integer
2022-12-28 15:12:46 +00:00
call codes_get(ibufr, 'stationNumber', stationNumber);
write (*, *) ' stationNumber:', stationNumber
2016-09-13 16:48:52 +00:00
! get as real
2022-12-28 15:12:46 +00:00
call codes_get(ibufr, 'airTemperatureAt2M', t2m);
write (*, *) ' airTemperatureAt2M:', t2m
2016-09-13 16:48:52 +00:00
! ---- array of integer ----------------
2016-09-13 16:48:52 +00:00
! get the expanded descriptors
call codes_get(ibufr, 'bufrdcExpandedDescriptors', descriptors)
2016-09-13 16:48:52 +00:00
do i = 1, size(descriptors)
write (*, *) ' ', i, descriptors(i)
end do
2016-09-13 16:48:52 +00:00
! ---- array of real ----------------
2016-09-13 16:48:52 +00:00
! Get the expanded data values
call codes_get(ibufr, 'numericValues', values)
2016-09-13 16:48:52 +00:00
do i = 1, size(values)
write (*, *) ' ', i, values(i)
end do
2016-09-13 16:48:52 +00:00
! Get as character
call codes_get(ibufr, 'typicalDate', typicalDate)
write (*, *) ' typicalDate:', typicalDate
2016-09-13 16:48:52 +00:00
! Free arrays
deallocate (values)
deallocate (descriptors)
2016-09-13 16:48:52 +00:00
2021-11-13 17:40:27 +00:00
! Release the BUFR message
call codes_release(ibufr)
2015-02-06 11:44:01 +00:00
count = count + 1
2016-09-13 16:48:52 +00:00
end do
2015-02-06 11:44:01 +00:00
! Close file
call codes_close_file(ifile)
2016-09-13 16:48:52 +00:00
2015-02-06 11:44:01 +00:00
end program bufr_get_keys