2019-04-15 13:44:45 +00:00
|
|
|
! Copyright 2005-2019 ECMWF.
|
2013-03-25 12:04:10 +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.
|
2017-02-06 16:45:30 +00:00
|
|
|
!
|
2013-03-25 12:04:10 +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.
|
|
|
|
!
|
|
|
|
!
|
|
|
|
! Description:
|
|
|
|
! How to use keys_iterator to get all the available
|
2017-07-11 16:12:03 +00:00
|
|
|
! keys in a GRIB message.
|
2013-03-25 12:04:10 +00:00
|
|
|
!
|
|
|
|
!
|
|
|
|
!
|
|
|
|
program keys_iterator
|
2015-01-28 22:54:42 +00:00
|
|
|
use eccodes
|
2013-03-25 12:04:10 +00:00
|
|
|
implicit none
|
|
|
|
character(len=20) :: name_space
|
|
|
|
integer :: kiter,ifile,igrib,iret
|
|
|
|
character(len=256) :: key
|
|
|
|
character(len=256) :: value
|
|
|
|
character(len=512) :: all1
|
|
|
|
integer :: grib_count
|
2017-02-06 16:45:30 +00:00
|
|
|
|
2015-01-07 16:11:28 +00:00
|
|
|
call codes_open_file(ifile, &
|
2013-03-25 12:04:10 +00:00
|
|
|
'../../data/regular_latlon_surface.grib1','r')
|
2017-02-06 16:45:30 +00:00
|
|
|
|
2013-03-25 12:04:10 +00:00
|
|
|
! Loop on all the messages in a file.
|
2017-02-06 16:45:30 +00:00
|
|
|
|
2015-03-04 17:11:18 +00:00
|
|
|
call codes_grib_new_from_file(ifile,igrib, iret)
|
2015-04-14 10:00:05 +00:00
|
|
|
grib_count=0
|
2015-01-07 16:11:28 +00:00
|
|
|
do while (iret /= CODES_END_OF_FILE)
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2015-02-10 16:42:27 +00:00
|
|
|
grib_count=grib_count+1
|
|
|
|
write(*,*) '-- GRIB N. ',grib_count,' --'
|
2017-02-06 16:45:30 +00:00
|
|
|
|
2015-02-10 16:42:27 +00:00
|
|
|
! valid name_spaces are ls and mars
|
|
|
|
name_space='ls'
|
2017-02-06 16:45:30 +00:00
|
|
|
|
2015-02-10 16:42:27 +00:00
|
|
|
call codes_keys_iterator_new(igrib,kiter,name_space)
|
2017-02-06 16:45:30 +00:00
|
|
|
|
2015-02-10 16:42:27 +00:00
|
|
|
do
|
2017-02-06 16:45:30 +00:00
|
|
|
call codes_keys_iterator_next(kiter, iret)
|
|
|
|
|
2017-07-11 16:12:03 +00:00
|
|
|
if (iret .ne. CODES_SUCCESS) exit !terminate the loop
|
2017-02-06 16:45:30 +00:00
|
|
|
|
2015-02-10 16:42:27 +00:00
|
|
|
call codes_keys_iterator_get_name(kiter,key)
|
|
|
|
call codes_get(igrib,trim(key),value)
|
|
|
|
all1=trim(key)// ' = ' // trim(value)
|
|
|
|
write(*,*) trim(all1)
|
2017-02-06 16:45:30 +00:00
|
|
|
|
2015-02-10 16:42:27 +00:00
|
|
|
end do
|
2017-02-06 16:45:30 +00:00
|
|
|
|
2015-02-10 16:42:27 +00:00
|
|
|
call codes_keys_iterator_delete(kiter)
|
|
|
|
call codes_release(igrib)
|
2015-03-04 17:11:18 +00:00
|
|
|
call codes_grib_new_from_file(ifile,igrib, iret)
|
2013-03-25 12:04:10 +00:00
|
|
|
end do
|
2017-02-06 16:45:30 +00:00
|
|
|
|
|
|
|
|
2015-01-07 16:11:28 +00:00
|
|
|
call codes_close_file(ifile)
|
2017-02-06 16:45:30 +00:00
|
|
|
|
2013-03-25 12:04:10 +00:00
|
|
|
end program keys_iterator
|