2015-03-25 17:39:58 +00:00
|
|
|
!
|
2017-01-03 11:03:48 +00:00
|
|
|
!Copyright 2005-2017 ECMWF.
|
2015-03-25 17:39:58 +00:00
|
|
|
!
|
|
|
|
! This software is licensed under the terms of the Apache Licence Version 2.0
|
|
|
|
!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_read_scatterometer
|
2015-03-25 17:39:58 +00:00
|
|
|
!
|
|
|
|
! Description: how to read data for a given beam from scatterometer BUFR messages.
|
|
|
|
!
|
|
|
|
! Please note that scatterometer data can be encoded in various ways in BUFR. Therefore the code
|
|
|
|
! below might not work directly for other types of messages than the one used in the
|
|
|
|
! example. It is advised to use bufr_dump first to understand the structure of these messages.
|
|
|
|
|
|
|
|
|
|
|
|
program bufr_read_scatterometer
|
|
|
|
use eccodes
|
|
|
|
implicit none
|
|
|
|
integer :: ifile
|
|
|
|
integer :: iret
|
|
|
|
integer :: ibufr
|
|
|
|
integer :: i, count=0
|
2015-05-28 08:56:33 +00:00
|
|
|
integer(kind=4) :: numObs,ii
|
2015-03-25 17:39:58 +00:00
|
|
|
real(kind=8), dimension(:), allocatable :: latVal,lonVal,bscatterVal
|
2015-05-28 08:56:33 +00:00
|
|
|
real(kind=8), dimension(:), allocatable :: year
|
2015-03-25 17:39:58 +00:00
|
|
|
|
|
|
|
call codes_open_file(ifile,'../../data/bufr/asca_139.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-03-25 17:39:58 +00:00
|
|
|
call codes_bufr_new_from_file(ifile,ibufr,iret)
|
|
|
|
|
|
|
|
do while (iret/=CODES_END_OF_FILE)
|
|
|
|
|
2015-05-28 15:42:26 +00:00
|
|
|
write(*,'(A,I3)') 'message: ',count
|
2015-03-25 17:39:58 +00:00
|
|
|
|
2016-12-29 15:53:10 +00:00
|
|
|
! We need to instruct ecCodes to expand all the descriptors
|
2015-03-25 17:39:58 +00:00
|
|
|
! i.e. unpack the data values
|
|
|
|
call codes_set(ibufr,"unpack",1);
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2015-03-25 17:39:58 +00:00
|
|
|
! The BUFR file contains a single message with 2016 subsets in a compressed form.
|
|
|
|
! It means each subset has exactly the same structure: they store one location with
|
|
|
|
! several beams and one backscatter value in each beam.
|
|
|
|
!
|
|
|
|
! To print the backScatter values for beamIdentifier=2 from all the subsets
|
|
|
|
! we will simply access the key by condition (see below).
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2015-03-25 17:39:58 +00:00
|
|
|
! Read the total number of subsets.
|
|
|
|
call codes_get(ibufr,'numberOfSubsets',numObs)
|
|
|
|
|
2015-05-28 15:42:26 +00:00
|
|
|
write(*,'(A,I5)') "Number of values:",numObs
|
2016-12-29 15:53:10 +00:00
|
|
|
|
|
|
|
! Get latitude (for all the subsets)
|
2015-03-25 17:39:58 +00:00
|
|
|
call codes_get(ibufr,'latitude',latVal);
|
2016-12-29 15:53:10 +00:00
|
|
|
|
|
|
|
! Get longitude (for all the subsets)
|
2015-03-25 17:39:58 +00:00
|
|
|
call codes_get(ibufr,'latitude',lonVal);
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2015-05-28 08:56:33 +00:00
|
|
|
allocate(year(numObs))
|
|
|
|
call codes_get(ibufr,'year',year);
|
|
|
|
do ii= 1, size(year)
|
2015-05-28 14:25:25 +00:00
|
|
|
write(*,'(A,I4,A,F8.1)') 'year(',ii,')=',year(ii)
|
2015-05-28 08:56:33 +00:00
|
|
|
enddo
|
|
|
|
|
2016-12-29 15:53:10 +00:00
|
|
|
! Get backScatter for beam two. We use an access by condition for this key.
|
|
|
|
! (for all the subsets)
|
2015-03-25 17:39:58 +00:00
|
|
|
call codes_get(ibufr,'/beamIdentifier=2/backscatter',bscatterVal);
|
2016-12-29 15:53:10 +00:00
|
|
|
|
|
|
|
! Check that all arrays are same size
|
2015-03-25 17:39:58 +00:00
|
|
|
if (size(latVal)/= numObs .or. size(lonVal)/= numObs .or. size(bscatterVal)/= numObs) then
|
|
|
|
print *,'inconsistent array dimension'
|
|
|
|
exit
|
|
|
|
endif
|
2016-12-29 15:53:10 +00:00
|
|
|
|
|
|
|
! Print the values
|
2015-03-25 17:39:58 +00:00
|
|
|
write(*,*) 'pixel lat lon backscatter'
|
|
|
|
write(*,*) "--------------------------------------"
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2015-03-25 17:39:58 +00:00
|
|
|
do i=1,numObs
|
2015-05-28 15:02:32 +00:00
|
|
|
write(*,'(I4,3F10.5)') i,latVal(i),lonVal(i),bscatterVal(i)
|
2015-03-25 17:39:58 +00:00
|
|
|
end do
|
|
|
|
|
2016-12-29 15:53:10 +00:00
|
|
|
! Free arrays
|
2015-03-25 17:39:58 +00:00
|
|
|
deallocate(latVal)
|
|
|
|
deallocate(lonVal)
|
|
|
|
deallocate(bscatterVal)
|
|
|
|
|
2016-12-29 15:53:10 +00:00
|
|
|
! Release the bufr message
|
2015-03-25 17:39:58 +00:00
|
|
|
call codes_release(ibufr)
|
|
|
|
|
2016-12-29 15:53:10 +00:00
|
|
|
! Load the next bufr message
|
2015-03-25 17:39:58 +00:00
|
|
|
call codes_bufr_new_from_file(ifile,ibufr,iret)
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2015-03-25 17:39:58 +00:00
|
|
|
count=count+1
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2015-03-25 17:39:58 +00:00
|
|
|
end do
|
|
|
|
|
2016-12-29 15:53:10 +00:00
|
|
|
! Close file
|
2015-03-25 17:39:58 +00:00
|
|
|
call codes_close_file(ifile)
|
2016-12-29 15:53:10 +00:00
|
|
|
|
2015-03-25 17:39:58 +00:00
|
|
|
end program bufr_read_scatterometer
|