2017-01-03 11:03:48 +00:00
|
|
|
! Copyright 2005-2017 ECMWF.
|
2013-03-25 14:23:07 +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.
|
|
|
|
|
|
|
|
|
2013-03-25 12:04:10 +00:00
|
|
|
!> Get the distinct values of the key in argument contained in the index. The key must belong to the index.
|
|
|
|
!>
|
|
|
|
!>
|
|
|
|
!> In case of error, if the status parameter (optional) is not given, the program will
|
|
|
|
!> exit with an error message.\n Otherwise the error message can be
|
|
|
|
!> gathered with @ref grib_get_error_string.
|
|
|
|
!>
|
2015-03-18 13:24:48 +00:00
|
|
|
!> \b Examples: \ref grib_index.f90 "grib_index.f90"
|
2013-03-25 12:04:10 +00:00
|
|
|
!>
|
|
|
|
!> @param indexid id of an index created from a file. The index must have been created with the key in argument.
|
|
|
|
!> @param key key for wich the values are returned
|
|
|
|
!> @param values array of values. The array must be allocated before entering this function and its size must be enough to contain all the values.
|
|
|
|
!> @param status GRIB_SUCCESS if OK, integer value on error
|
|
|
|
interface grib_index_get
|
|
|
|
module procedure grib_index_get_int, &
|
|
|
|
grib_index_get_string, &
|
|
|
|
grib_index_get_real8
|
|
|
|
end interface grib_index_get
|
|
|
|
|
|
|
|
!> Get the number of distinct values of the key in argument contained in the index. The key must belong to the index.
|
|
|
|
!>
|
|
|
|
!>
|
|
|
|
!> In case of error, if the status parameter (optional) is not given, the program will
|
|
|
|
!> exit with an error message.\n Otherwise the error message can be
|
|
|
|
!> gathered with @ref grib_get_error_string.
|
|
|
|
!>
|
2015-03-18 13:24:48 +00:00
|
|
|
!> \b Examples: \ref grib_index.f90 "grib_index.f90"
|
2013-03-25 12:04:10 +00:00
|
|
|
!>
|
|
|
|
!> @param indexid id of an index created from a file. The index must have been created with the key in argument.
|
|
|
|
!> @param key key for which the number of values is computed
|
|
|
|
!> @param size number of distinct values of the key in the index
|
|
|
|
!> @param status GRIB_SUCCESS if OK, integer value on error
|
|
|
|
interface grib_index_get_size
|
2014-12-29 12:49:37 +00:00
|
|
|
module procedure grib_index_get_size_int
|
2013-03-25 12:04:10 +00:00
|
|
|
end interface grib_index_get_size
|
|
|
|
|
|
|
|
!> Select the message subset with key==value.
|
|
|
|
!>
|
|
|
|
!>
|
|
|
|
!> In case of error, if the status parameter (optional) is not given, the program will
|
|
|
|
!> exit with an error message.\n Otherwise the error message can be
|
|
|
|
!> gathered with @ref grib_get_error_string.
|
|
|
|
!>
|
2015-03-18 13:24:48 +00:00
|
|
|
!> \b Examples: \ref grib_index.f90 "grib_index.f90"
|
2013-03-25 12:04:10 +00:00
|
|
|
!>
|
|
|
|
!> @param indexid id of an index created from a file. The index must have been created with the key in argument.
|
|
|
|
!> @param key key to be selected
|
|
|
|
!> @param value value of the key to select
|
|
|
|
!> @param status GRIB_SUCCESS if OK, integer value on error
|
|
|
|
interface grib_index_select
|
|
|
|
module procedure grib_index_select_int, &
|
|
|
|
grib_index_select_string, &
|
|
|
|
grib_index_select_real8
|
|
|
|
end interface grib_index_select
|
|
|
|
|
|
|
|
!> Get the value for a key from a grib message.
|
|
|
|
!>
|
|
|
|
!> Given a \em gribid and \em key as input a \em value for the \em key is returned.
|
|
|
|
!> In some cases the \em value can be an array rather than a scalar.
|
|
|
|
!> As examples of array keys we have "values","pl", "pv" respectively the data values,
|
|
|
|
!> the list of number of points for each latitude in a reduced grid and the list of
|
|
|
|
!> vertical levels. In these cases the \em value array must be allocated by the caller
|
|
|
|
!> and their required dimension can be obtained with \ref grib_get_size. \n
|
|
|
|
!> The \em value can be integer(4), real(4), real(8), character.
|
|
|
|
!> Although each key has its own native type, a key of type integer
|
|
|
|
!> can be retrieved (with \ref grib_get) as real(4), real(8) or character.
|
|
|
|
!> Analogous conversions are always provided when possible.
|
|
|
|
!> Illegal conversions are real to integer and character to any other type.
|
|
|
|
!>
|
|
|
|
!> The \em gribid references to a grib message loaded in memory.
|
|
|
|
!>
|
|
|
|
!> In case of error, if the status parameter (optional) is not given, the program will
|
|
|
|
!> exit with an error message.\n Otherwise the error message can be
|
|
|
|
!> gathered with @ref grib_get_error_string.
|
|
|
|
!>
|
2016-08-25 18:08:19 +00:00
|
|
|
!> \b Examples: \ref grib_get_keys.f90 "grib_get_keys.f90", \ref grib_print_data.f90 "grib_print_data.f90"
|
2013-03-25 12:04:10 +00:00
|
|
|
!>
|
|
|
|
!> @see grib_new_from_file, grib_release, grib_set
|
|
|
|
!>
|
|
|
|
!>
|
|
|
|
!> @param[in] gribid id of the grib loaded in memory
|
|
|
|
!> @param[in] key key name
|
|
|
|
!> @param[out] value value can be a scalar or array of integer(4),real(4),real(8),character
|
|
|
|
!> @param[out] status GRIB_SUCCESS if OK, integer value on error
|
|
|
|
interface grib_get
|
|
|
|
module procedure grib_get_int, &
|
|
|
|
grib_get_real4, &
|
|
|
|
grib_get_real8, &
|
|
|
|
grib_get_string, &
|
|
|
|
grib_get_int_array, &
|
2013-04-10 16:53:17 +00:00
|
|
|
grib_get_byte_array, &
|
2013-03-25 12:04:10 +00:00
|
|
|
grib_get_real4_array, &
|
|
|
|
grib_get_real8_array
|
|
|
|
end interface grib_get
|
2015-01-28 22:54:42 +00:00
|
|
|
|
2013-03-25 12:04:10 +00:00
|
|
|
|
|
|
|
!> Get the size of an array key.
|
|
|
|
!>
|
|
|
|
!> To get the size of a key representing an array.
|
|
|
|
!>
|
|
|
|
!> In case of error, if the status parameter (optional) is not given, the program will
|
|
|
|
!> exit with an error message.\n Otherwise the error message can be
|
|
|
|
!> gathered with @ref grib_get_error_string.
|
|
|
|
!>
|
|
|
|
!> @param gribid id of the grib loaded in memory
|
|
|
|
!> @param key name of the key
|
|
|
|
!> @param size size of the array key
|
|
|
|
!> @param status GRIB_SUCCESS if OK, integer value on error
|
|
|
|
interface grib_get_size
|
|
|
|
module procedure grib_get_size_int
|
|
|
|
end interface grib_get_size
|
|
|
|
|
|
|
|
!> Set the value for a key in a grib message.
|
|
|
|
!>
|
|
|
|
!> The given \em value is set for the \em key in the \em gribid message.
|
|
|
|
!> In some cases the \em value can be an array rather than a scalar.
|
|
|
|
!> As examples of array keys we have "values","pl", "pv" respectively the data values,
|
|
|
|
!> the list of number of points for each latitude in a reduced grid and the list of
|
|
|
|
!> vertical levels. In these cases the \em value array must be allocated by the caller
|
|
|
|
!> and their required dimension can be obtained with \ref grib_get_size. \n
|
|
|
|
!> The gribid references to a grib message loaded in memory.
|
|
|
|
!>
|
|
|
|
!> In case of error, if the status parameter (optional) is not given, the program will
|
|
|
|
!> exit with an error message.\n Otherwise the error message can be
|
|
|
|
!> gathered with @ref grib_get_error_string.
|
|
|
|
!>
|
2016-08-25 18:08:19 +00:00
|
|
|
!> \b Examples: \ref grib_set_keys.f90 "grib_set_keys.f90"
|
2013-03-25 12:04:10 +00:00
|
|
|
!>
|
|
|
|
!> @see grib_new_from_file, grib_release, grib_get
|
|
|
|
!>
|
|
|
|
!> @param[in] gribid id of the grib loaded in memory
|
|
|
|
!> @param[in] key key name
|
|
|
|
!> @param[out] value value can be a scalar or array of integer(4),real(4),real(8)
|
|
|
|
!> @param[out] status GRIB_SUCCESS if OK, integer value on error
|
|
|
|
interface grib_set
|
|
|
|
module procedure grib_set_int, &
|
|
|
|
grib_set_real4, &
|
|
|
|
grib_set_real8, &
|
|
|
|
grib_set_string, &
|
|
|
|
grib_set_int_array, &
|
2013-04-10 16:53:17 +00:00
|
|
|
grib_set_byte_array, &
|
2013-03-25 12:04:10 +00:00
|
|
|
grib_set_real4_array, &
|
|
|
|
grib_set_real8_array
|
|
|
|
end interface grib_set
|
|
|
|
|
2013-04-16 15:22:10 +00:00
|
|
|
interface grib_set_force
|
|
|
|
module procedure grib_set_force_real4_array, &
|
|
|
|
grib_set_force_real8_array
|
|
|
|
end interface grib_set_force
|