2020-01-28 14:32:34 +00:00
|
|
|
! (C) Copyright 2005- ECMWF.
|
2015-02-04 15:43:49 +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-04 15:43:49 +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 the header of BUFR messages.
|
2015-02-04 15:43:49 +00:00
|
|
|
!
|
|
|
|
!
|
2015-03-17 16:13:20 +00:00
|
|
|
program bufr_read_header
|
2021-02-14 18:14:39 +00:00
|
|
|
use eccodes
|
|
|
|
implicit none
|
|
|
|
integer :: ifile
|
|
|
|
integer :: iret
|
|
|
|
integer :: ibufr
|
|
|
|
integer :: count = 0
|
|
|
|
integer(kind=4) :: dataCategory, dataSubCategory, typicalDate
|
|
|
|
integer(kind=4) :: centre, subcentre
|
|
|
|
integer(kind=4) :: masterversion, localversion
|
|
|
|
integer(kind=4) :: numberOfSubsets
|
2015-02-04 15:43:49 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
call codes_open_file(ifile, '../../data/bufr/syno_multi.bufr', 'r')
|
2015-02-04 15:43:49 +00:00
|
|
|
|
2023-08-17 10:37:42 +00:00
|
|
|
do while (.true.)
|
|
|
|
! A BUFR message is loaded from 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-12-29 15:53:10 +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
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2022-12-22 16:26:01 +00:00
|
|
|
call codes_get(ibufr, 'dataCategory', dataCategory);
|
2021-02-14 18:14:39 +00:00
|
|
|
write (*, *) ' dataCategory:', dataCategory
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2022-12-22 16:26:01 +00:00
|
|
|
call codes_get(ibufr, 'dataSubCategory', dataSubCategory);
|
2021-02-14 18:14:39 +00:00
|
|
|
write (*, *) ' dataSubCategory:', dataSubCategory
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2022-12-22 16:26:01 +00:00
|
|
|
call codes_get(ibufr, 'typicalDate', typicalDate);
|
2021-02-14 18:14:39 +00:00
|
|
|
write (*, *) ' typicalDate:', typicalDate
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2022-12-22 16:26:01 +00:00
|
|
|
call codes_get(ibufr, 'bufrHeaderCentre', centre);
|
2021-02-14 18:14:39 +00:00
|
|
|
write (*, *) ' bufrHeaderCentre:', centre
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
call codes_get(ibufr, 'bufrHeaderSubCentre', subcentre)
|
|
|
|
write (*, *) ' bufrHeaderSubCentre:', subcentre
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
call codes_get(ibufr, 'masterTablesVersionNumber', masterversion)
|
|
|
|
write (*, *) ' masterTablesVersionNumber:', masterversion
|
2015-02-04 15:43:49 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
call codes_get(ibufr, 'localTablesVersionNumber', localversion)
|
|
|
|
write (*, *) ' localTablesVersionNumber:', localversion
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
call codes_get(ibufr, 'numberOfSubsets', numberOfSubsets)
|
|
|
|
write (*, *) ' numberOfSubsets:', numberOfSubsets
|
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)
|
2015-02-04 15:43:49 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
count = count + 1
|
2015-02-04 15:43:49 +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-04 15:43:49 +00:00
|
|
|
|
2015-03-17 16:13:20 +00:00
|
|
|
end program bufr_read_header
|