eccodes/examples/F90/bufr_attributes.f90

114 lines
4.2 KiB
Fortran
Raw Normal View History

2020-01-28 14:32:34 +00:00
! (C) Copyright 2005- ECMWF.
!
! 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.
!
! 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_attributes
!
! Description: how to read attributes of keys in BUFR messages.
!
!
program bufr_attributes
use eccodes
implicit none
integer :: ifile
integer :: iret
integer :: ibufr
integer :: count=0
2017-02-06 16:45:30 +00:00
integer(kind=4) :: iVal,conf
real(kind=8) :: t2m
2017-02-06 16:45:30 +00:00
character(len=32) :: units, confUnits
call codes_open_file(ifile,'../../data/bufr/syno_multi.bufr','r')
! the first 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)
do while (iret/=CODES_END_OF_FILE)
2017-02-06 16:45:30 +00:00
! Get and print some keys form the BUFR header
write(*,*) 'message: ',count
2017-02-06 16:45:30 +00:00
! We need to instruct ecCodes to expand all the descriptors
! i.e. unpack the data values
call codes_set(ibufr,"unpack",1);
! ----------------------------------------------------------------
! We will read the value and all the attributes available for
! the 2m temperature.
2017-02-06 16:45:30 +00:00
! ----------------------------------------------------------------
2016-12-29 15:53:10 +00:00
! Get the element's value as as real
call codes_get(ibufr,'airTemperatureAt2M',t2m);
write(*,*) ' airTemperatureAt2M:',t2m
2017-02-06 16:45:30 +00:00
2016-12-29 15:53:10 +00:00
! Get the element's code (see BUFR code table B)
call codes_get(ibufr,'airTemperatureAt2M->code',iVal);
write(*,*) ' airTemperatureAt2M->code:',iVal
2017-02-06 16:45:30 +00:00
2016-12-29 15:53:10 +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
2016-12-29 15:53:10 +00:00
! Get the element's scale (see BUFR code table B)
call codes_get(ibufr,'airTemperatureAt2M->scale',iVal);
write(*,*) ' airTemperatureAt2M->code:',iVal
2017-02-06 16:45:30 +00:00
2016-12-29 15:53:10 +00:00
! Get the element's reference (see BUFR code table B)
call codes_get(ibufr,'airTemperatureAt2M->reference',iVal);
write(*,*) ' airTemperatureAt2M->reference:',iVal
2017-02-06 16:45:30 +00:00
2016-12-29 15:53:10 +00:00
! Get the element's width (see BUFR code table B)
call codes_get(ibufr,'airTemperatureAt2M->width',iVal);
write(*,*) ' airTemperatureAt2M->width:',iVal
2016-12-29 15:53:10 +00:00
! -------------------------------------------------------------------
2017-02-06 16:45:30 +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.
! -------------------------------------------------------------------
2016-12-29 15:53:10 +00:00
! Get the element's value as as real
call codes_get(ibufr,'airTemperatureAt2M->percentConfidence',conf);
write(*,*) ' airTemperatureAt2M->percentConfidence:', conf
2016-12-29 15:53:10 +00:00
! Get the element's code (see BUFR code table B)
call codes_get(ibufr,'airTemperatureAt2M->percentConfidence->code',iVal);
write(*,*) ' airTemperatureAt2M->percentConfidence->code:',iVal
2016-12-29 15:53:10 +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
! Get the element's scale (see BUFR code table B)
call codes_get(ibufr,'airTemperatureAt2M->percentConfidence->scale',iVal);
write(*,*) ' airTemperatureAt2M->percentConfidence->code:',iVal
2016-12-29 15:53:10 +00:00
! Get the element's reference (see BUFR code table B)
call codes_get(ibufr,'airTemperatureAt2M->percentConfidence->reference',iVal);
write(*,*) ' airTemperatureAt2M->percentConfidence->reference:',iVal
2016-12-29 15:53:10 +00:00
! Get the element's width (see BUFR code table B)
call codes_get(ibufr,'airTemperatureAt2M->percentConfidence->width',iVal);
write(*,*) ' airTemperatureAt2M->percentConfidence->width:',iVal
2016-12-29 15:53:10 +00:00
! Release the bufr message
call codes_release(ibufr)
2016-12-29 15:53:10 +00:00
! Load the next bufr message
call codes_bufr_new_from_file(ifile,ibufr,iret)
2016-12-29 15:53:10 +00:00
count=count+1
2016-12-29 15:53:10 +00:00
2017-02-06 16:45:30 +00:00
end do
2017-02-06 16:45:30 +00:00
! Close file
call codes_close_file(ifile)
end program bufr_attributes