2020-01-28 14:32:34 +00:00
|
|
|
! (C) Copyright 2005- 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.
|
|
|
|
!
|
|
|
|
!
|
|
|
|
!
|
|
|
|
program new_from_file
|
2021-02-14 18:14:39 +00:00
|
|
|
use eccodes
|
|
|
|
implicit none
|
|
|
|
integer :: ifile
|
|
|
|
integer :: iret
|
|
|
|
integer :: count1 = 0
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
! Message identifier.
|
|
|
|
integer :: igrib
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
ifile = 5
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
call codes_open_file(ifile, '../../data/collection.grib1', 'r')
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
! Loop on all the messages in a file.
|
|
|
|
call codes_grib_new_from_file(ifile, igrib, iret)
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
do while (iret == CODES_SUCCESS)
|
|
|
|
count1 = count1 + 1
|
|
|
|
print *, "===== Message #", count1
|
|
|
|
call codes_grib_new_from_file(ifile, igrib, iret)
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
end do
|
|
|
|
if (iret /= CODES_END_OF_FILE) then
|
|
|
|
call codes_check(iret, 'new_from_file', '')
|
|
|
|
end if
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2021-02-14 18:14:39 +00:00
|
|
|
call codes_close_file(ifile)
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2017-02-06 16:45:30 +00:00
|
|
|
end program
|