eccodes/examples/F90/bufr_get_keys.f90

99 lines
2.7 KiB
Fortran
Raw 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.
!
!
2016-09-13 16:48:52 +00:00
! FORTRAN 90 Implementation: bufr_get_keys
2015-02-06 11:44:01 +00:00
!
! Description: how to read values of different type of keys from BUFR messages.
!
!
program bufr_get_keys
use eccodes
implicit none
integer :: ifile
integer :: iret
integer :: ibufr
integer :: i, count=0
2017-02-06 16:45:30 +00:00
integer(kind=4) :: blockNumber,stationNumber
2015-02-06 11:44:01 +00:00
real(kind=8) :: t2m
integer(kind=4), dimension(:), allocatable :: descriptors
real(kind=8), dimension(:), allocatable :: values
2017-02-06 16:45:30 +00:00
character(len=9) :: typicalDate
2015-02-06 11:44:01 +00:00
call codes_open_file(ifile,'../../data/bufr/syno_multi.bufr','r')
2016-12-29 15:53:10 +00:00
! The first bufr message is loaded from file,
! ibufr is the bufr id to be used in subsequent calls
2015-02-06 11:44:01 +00:00
call codes_bufr_new_from_file(ifile,ibufr,iret)
do while (iret/=CODES_END_OF_FILE)
2016-09-13 16:48:52 +00:00
2017-02-06 16:45:30 +00:00
! Get and print some keys form the BUFR header
2015-02-06 11:44:01 +00:00
write(*,*) 'message: ',count
2017-02-06 16:45:30 +00:00
! We need to instruct ecCodes to expand all the descriptors
2015-02-06 11:44:01 +00:00
! i.e. unpack the data values
call codes_set(ibufr,"unpack",1);
2016-09-13 16:48:52 +00:00
2016-12-29 15:53:10 +00:00
! Get as character
call codes_get(ibufr,'typicalDate',typicalDate)
2015-02-06 11:44:01 +00:00
write(*,*) ' typicalDate:',typicalDate
2016-09-13 16:48:52 +00:00
2016-12-29 15:53:10 +00:00
! Get as integer
2015-02-06 11:44:01 +00:00
call codes_get(ibufr,'blockNumber',blockNumber);
write(*,*) ' blockNumber:',blockNumber
2016-09-13 16:48:52 +00:00
2016-12-29 15:53:10 +00:00
! Get as integer
2015-02-06 11:44:01 +00:00
call codes_get(ibufr,'stationNumber',stationNumber);
write(*,*) ' stationNumber:',stationNumber
2016-09-13 16:48:52 +00:00
2015-02-06 11:44:01 +00:00
! get as real
call codes_get(ibufr,'airTemperatureAt2M',t2m);
write(*,*) ' airTemperatureAt2M:',t2m
2016-09-13 16:48:52 +00:00
2015-02-06 11:44:01 +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
2015-03-25 13:41:19 +00:00
do i=1,size(descriptors)
2015-02-06 11:44:01 +00:00
write(*,*) ' ',i,descriptors(i)
2016-09-13 16:48:52 +00:00
enddo
2015-02-06 11:44:01 +00:00
! ---- array of real ----------------
2016-09-13 16:48:52 +00:00
2016-12-29 15:53:10 +00:00
! Get the expanded data values
call codes_get(ibufr,'numericValues',values)
2016-09-13 16:48:52 +00:00
2015-03-25 13:41:19 +00:00
do i=1,size(values)
2015-02-06 11:44:01 +00:00
write(*,*) ' ',i,values(i)
enddo
2016-09-13 16:48:52 +00:00
2016-12-29 15:53:10 +00:00
! Get as character
call codes_get(ibufr,'typicalDate',typicalDate)
2015-02-06 11:44:01 +00:00
write(*,*) ' typicalDate:',typicalDate
2016-09-13 16:48:52 +00:00
2016-12-29 15:53:10 +00:00
! Free arrays
2015-02-06 11:44:01 +00:00
deallocate(values)
deallocate(descriptors)
2016-12-29 15:53:10 +00:00
! Release the bufr message
2015-02-06 11:44:01 +00:00
call codes_release(ibufr)
2016-12-29 15:53:10 +00:00
! Load the next bufr message
2015-02-06 11:44:01 +00:00
call codes_bufr_new_from_file(ifile,ibufr,iret)
2016-09-13 16:48:52 +00:00
2015-02-06 11:44:01 +00:00
count=count+1
2016-09-13 16:48:52 +00:00
end do
2016-12-29 15:53:10 +00:00
! Close file
2015-02-06 11:44:01 +00:00
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