! (C) Copyright 2005- ECMWF. ! ! 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. !> 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 codes_get_error_string. !> !> \b Examples: \ref grib_index.f90 "grib_index.f90" !> !> @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 CODES_SUCCESS if OK, integer value on error interface codes_index_get module procedure codes_index_get_int, & codes_index_get_string, & codes_index_get_real8 end interface codes_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 codes_get_error_string. !> !> \b Examples: \ref grib_index.f90 "grib_index.f90" !> !> @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 CODES_SUCCESS if OK, integer value on error interface codes_index_get_size module procedure codes_index_get_size_int end interface codes_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 codes_get_error_string. !> !> \b Examples: \ref grib_index.f90 "grib_index.f90" !> !> @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 CODES_SUCCESS if OK, integer value on error interface codes_index_select module procedure codes_index_select_int, & codes_index_select_string, & codes_index_select_real8 end interface codes_index_select !> Get the value for a key from a message. !> !> Given a \em msgid 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 GRIB array keys we have "values" (the data values), !> "pl" (the list of number of points for each latitude in a reduced grid) and !> "pv" (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 codes_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 codes_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. !> !> Note: The output array variable must support the \b allocatable array attribute. !> !> The \em msgid references to a 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 codes_get_error_string. !> !> \b Examples: \ref grib_get_keys.f90 "grib_get_keys.f90", \ref grib_print_data.f90 "grib_print_data.f90" !> !> @see codes_new_from_file, codes_release, codes_set !> !> @param[in] msgid id of the message 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. !> Arrays must support the \b allocatable attribute. !> @param[out] status CODES_SUCCESS if OK, integer value on error interface codes_get module procedure codes_get_int, & codes_get_real4, & codes_get_real8, & codes_get_string, & codes_get_byte_array, & codes_get_int_array, & codes_get_real4_array, & codes_get_real8_array end interface codes_get !> 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 codes_get_error_string. !> !> @param msgid id of the message loaded in memory !> @param key name of the key !> @param size size of the array key !> @param status CODES_SUCCESS if OK, integer value on error interface codes_get_size module procedure codes_get_size_int end interface codes_get_size !> Set the value for a key in a message. !> !> The given \em value is set for the \em key in the \em msgid message. !> In some cases the \em value can be an array rather than a scalar. !> As examples of GRIB array keys we have "values" (the data values), !> "pl" (the list of number of points for each latitude in a reduced grid) and !> "pv" (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 codes_get_size. \n !> The msgid references to a 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 codes_get_error_string. !> !> \b Examples: \ref grib_set_keys.f90 "grib_set_keys.f90" !> !> @see codes_new_from_file, codes_release, codes_get !> !> @param[in] msgid id of the message 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 CODES_SUCCESS if OK, integer value on error interface codes_set module procedure codes_set_int, & codes_set_real4, & codes_set_real8, & codes_set_string, & codes_set_int_array, & codes_set_byte_array, & codes_set_real4_array, & codes_set_real8_array end interface codes_set interface codes_set_force module procedure codes_set_force_real4_array, & codes_set_force_real8_array end interface codes_set_force