From ba9b0291d4470ddd44dac4c727e15e73d29f53b0 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 25 Aug 2016 19:08:19 +0100 Subject: [PATCH] ECC-200: Update of generated html dir --- doxygen/examples.dox | 2 +- doxygen/grib_examples.dox | 2 +- doxygen/make_dox.sh | 14 ++++++++------ examples/F90/CMakeLists.txt | 2 +- examples/F90/Makefile.am | 6 +++--- examples/F90/{get_data.f90 => grib_get_data.f90} | 0 examples/F90/{get_data.sh => grib_get_data.sh} | 2 +- fortran/eccodes_f90_head.f90 | 2 +- fortran/eccodes_f90_int.f90 | 10 +++++----- fortran/eccodes_f90_long_int.f90 | 10 +++++----- fortran/grib_f90_head.f90 | 2 +- fortran/grib_f90_int.f90 | 4 ++-- fortran/grib_f90_long_int.f90 | 4 ++-- html/interfaceeccodes_1_1codes__get.html | 2 +- html/interfaceeccodes_1_1codes__get__element.html | 2 +- ...rfaceeccodes_1_1codes__grib__find__nearest.html | 2 +- ...interfaceeccodes_1_1codes__grib__get__data.html | 2 +- html/interfaceeccodes_1_1codes__index__get.html | 10 +++++----- ...nterfaceeccodes_1_1codes__index__get__size.html | 6 +++--- html/interfaceeccodes_1_1codes__index__select.html | 10 +++++----- ...erfaceeccodes_1_1codes__new__from__message.html | 6 +++--- html/interfaceeccodes_1_1codes__set.html | 2 +- 22 files changed, 52 insertions(+), 50 deletions(-) rename examples/F90/{get_data.f90 => grib_get_data.f90} (100%) rename examples/F90/{get_data.sh => grib_get_data.sh} (88%) diff --git a/doxygen/examples.dox b/doxygen/examples.dox index 1db8822af..f82aa8798 100644 --- a/doxygen/examples.dox +++ b/doxygen/examples.dox @@ -16,7 +16,7 @@ defined in a message and how to iterate through them. \example count_messages.f90 count the messages in a file and loop through them. \example get_pl.f90 How to get the list of number of points for each parallel in reduced grids. \example get_pv.f90 How to get the list of levels. -\example get_data.f90 How to get latitude/longitude/values. +\example grib_get_data.f90 How to get latitude/longitude/values. \example set.f90 How to set values through the key names. \example grib_set_bitmap.f90 How to set and use a bitmap. \example grib_set_missing.f90 How to set a missing value in the header. diff --git a/doxygen/grib_examples.dox b/doxygen/grib_examples.dox index b32d75ea8..4c53e924a 100644 --- a/doxygen/grib_examples.dox +++ b/doxygen/grib_examples.dox @@ -24,7 +24,7 @@ that can be taken as a starting point to write more complex programs.\n - \ref count_messages.f90 "count_messages.f90" count the messages in a file and loop through them. - \ref get_pl.f90 "get_pl.f90" how to get the list of number of points for each parallel in reduced grids. - \ref get_pv.f90 "get_pv.f90" how to get the list of levels. -- \ref get_data.f90 "get_data.f90" how to get latitude/longitude/values. +- \ref grib_get_data.f90 "grib_get_data.f90" how to get latitude/longitude/values. - \ref set.f90 "set.f90" how to set values through the key names. - \ref grib_set_bitmap.f90 "grib_set_bitmap.f90" how to set and use a bitmap. - \ref grib_set_missing.f90 "grib_set_missing.f90" how to set a missing value in the header. diff --git a/doxygen/make_dox.sh b/doxygen/make_dox.sh index b21747397..176d230a2 100755 --- a/doxygen/make_dox.sh +++ b/doxygen/make_dox.sh @@ -25,22 +25,25 @@ rm -f eccodes.h rm -f ecCodes.py # Change the links from any example code back to confluence -F90_file=../html/classeccodes.html -Py_file=../html/namespaceec_codes.html - fnames=" bufr_get_keys grib_index grib_get_keys +grib_set_keys +grib_get_data grib_clone +grib_print_data grib_copy_message count_messages +grib_nearest grib_samples grib_set_missing " for fn in $fnames; do - perl -p -i -e "s|$fn\.f90|$fn.f90|" $F90_file + perl -p -i -e "s|$fn\.f90|$fn.f90|" ../html/classeccodes.html + # Do all F90 interface files too + perl -p -i -e "s|$fn\.f90|$fn.f90|" ../html/interfaceeccodes*.html done pnames=" @@ -58,8 +61,7 @@ grib_keys_iterator bufr_get_keys " for fn in $pnames; do - perl -p -i -e "s|$fn\.py|$fn.py|" $Py_file + perl -p -i -e "s|$fn\.py|$fn.py|" ../html/namespaceec_codes.html done - echo DONE diff --git a/examples/F90/CMakeLists.txt b/examples/F90/CMakeLists.txt index 25b6a4012..ea68fe660 100644 --- a/examples/F90/CMakeLists.txt +++ b/examples/F90/CMakeLists.txt @@ -12,7 +12,7 @@ list( APPEND tests grib_copy_message bufr_copy_message grib_get_keys - get_data + grib_get_data get_pl get_pv grib_keys_iterator diff --git a/examples/F90/Makefile.am b/examples/F90/Makefile.am index d90dc1fa3..22192441c 100644 --- a/examples/F90/Makefile.am +++ b/examples/F90/Makefile.am @@ -1,7 +1,7 @@ AM_CFLAGS = @WARN_PEDANTIC@ @WERROR@ @FORCE_32_CFLAGS@ -TESTS = grib_copy_message.sh grib_get_keys.sh get_data.sh get_pl.sh get_pv.sh grib_keys_iterator.sh \ +TESTS = grib_copy_message.sh grib_get_keys.sh grib_get_data.sh get_pl.sh get_pv.sh grib_keys_iterator.sh \ grib_nearest.sh grib_precision.sh grib_multi_write.sh grib_multi.sh \ grib_print_data.sh grib_set_keys.sh \ grib_set_bitmap.sh grib_set_missing.sh grib_set_pv.sh grib_samples.sh grib_count_messages.sh \ @@ -17,7 +17,7 @@ TESTS = grib_copy_message.sh grib_get_keys.sh get_data.sh get_pl.sh get_pv.sh gr noinst_PROGRAMS = eccodes_f_grib_index \ eccodes_f_grib_copy_message \ eccodes_f_grib_get_keys \ - eccodes_f_get_data \ + eccodes_f_grib_get_data \ eccodes_f_get_pl \ eccodes_f_get_pv \ eccodes_f_grib_keys_iterator \ @@ -59,7 +59,7 @@ noinst_PROGRAMS = eccodes_f_grib_index \ eccodes_f_grib_index_SOURCES=grib_index.f90 eccodes_f_grib_copy_message_SOURCES=grib_copy_message.f90 eccodes_f_grib_get_keys_SOURCES=grib_get_keys.f90 -eccodes_f_get_data_SOURCES=get_data.f90 +eccodes_f_grib_get_data_SOURCES=grib_get_data.f90 eccodes_f_get_pl_SOURCES=get_pl.f90 eccodes_f_get_pv_SOURCES=get_pv.f90 eccodes_f_grib_keys_iterator_SOURCES=grib_keys_iterator.f90 diff --git a/examples/F90/get_data.f90 b/examples/F90/grib_get_data.f90 similarity index 100% rename from examples/F90/get_data.f90 rename to examples/F90/grib_get_data.f90 diff --git a/examples/F90/get_data.sh b/examples/F90/grib_get_data.sh similarity index 88% rename from examples/F90/get_data.sh rename to examples/F90/grib_get_data.sh index 37c24f237..4708d1131 100755 --- a/examples/F90/get_data.sh +++ b/examples/F90/grib_get_data.sh @@ -9,4 +9,4 @@ . ./include.sh -${examples_dir}eccodes_f_get_data > /dev/null +${examples_dir}eccodes_f_grib_get_data > /dev/null diff --git a/fortran/eccodes_f90_head.f90 b/fortran/eccodes_f90_head.f90 index 79a45b265..172ba4c08 100644 --- a/fortran/eccodes_f90_head.f90 +++ b/fortran/eccodes_f90_head.f90 @@ -127,7 +127,7 @@ module eccodes !> exit with an error message.\n Otherwise the error message can be !> gathered with @ref codes_get_error_string. !> - !> \b Examples: \ref get_data.f90 "get_data.f90" + !> \b Examples: \ref grib_get_data.f90 "grib_get_data.f90" !> !> @param[in] gribid id of the grib loaded in memory !> @param[out] lats latitudes array with dimension "size" diff --git a/fortran/eccodes_f90_int.f90 b/fortran/eccodes_f90_int.f90 index 1b005c862..1ddc21f9b 100644 --- a/fortran/eccodes_f90_int.f90 +++ b/fortran/eccodes_f90_int.f90 @@ -14,7 +14,7 @@ !> exit with an error message.\n Otherwise the error message can be !> gathered with @ref codes_get_error_string. !> - !> \b Examples: \ref index.f90 "index.f90" + !> \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 @@ -33,7 +33,7 @@ !> exit with an error message.\n Otherwise the error message can be !> gathered with @ref codes_get_error_string. !> - !> \b Examples: \ref index.f90 "index.f90" + !> \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 @@ -50,7 +50,7 @@ !> exit with an error message.\n Otherwise the error message can be !> gathered with @ref codes_get_error_string. !> - !> \b Examples: \ref index.f90 "index.f90" + !> \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 @@ -82,7 +82,7 @@ !> 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 print_data.f90 "print_data.f90" + !> \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 !> @@ -133,7 +133,7 @@ !> exit with an error message.\n Otherwise the error message can be !> gathered with @ref codes_get_error_string. !> - !> \b Examples: \ref set.f90 "set.f90" + !> \b Examples: \ref grib_set_keys.f90 "grib_set_keys.f90" !> !> @see codes_new_from_file, codes_release, codes_get !> diff --git a/fortran/eccodes_f90_long_int.f90 b/fortran/eccodes_f90_long_int.f90 index 960f55fa9..c6e4bf2aa 100644 --- a/fortran/eccodes_f90_long_int.f90 +++ b/fortran/eccodes_f90_long_int.f90 @@ -14,7 +14,7 @@ !> exit with an error message.\n Otherwise the error message can be !> gathered with @ref codes_get_error_string. !> - !> \b Examples: \ref index.f90 "index.f90" + !> \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 @@ -34,7 +34,7 @@ !> exit with an error message.\n Otherwise the error message can be !> gathered with @ref codes_get_error_string. !> - !> \b Examples: \ref index.f90 "index.f90" + !> \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 @@ -52,7 +52,7 @@ !> exit with an error message.\n Otherwise the error message can be !> gathered with @ref codes_get_error_string. !> - !> \b Examples: \ref index.f90 "index.f90" + !> \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 @@ -85,7 +85,7 @@ !> 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 print_data.f90 "print_data.f90" + !> \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 !> @@ -137,7 +137,7 @@ !> exit with an error message.\n Otherwise the error message can be !> gathered with @ref codes_get_error_string. !> - !> \b Examples: \ref set.f90 "set.f90" + !> \b Examples: \ref grib_set_keys.f90 "grib_set_keys.f90" !> !> @see codes_new_from_file, codes_release, codes_get !> diff --git a/fortran/grib_f90_head.f90 b/fortran/grib_f90_head.f90 index 1d2a791ff..f0e730687 100644 --- a/fortran/grib_f90_head.f90 +++ b/fortran/grib_f90_head.f90 @@ -125,7 +125,7 @@ module grib_api !> exit with an error message.\n Otherwise the error message can be !> gathered with @ref grib_get_error_string. !> - !> \b Examples: \ref get_data.f90 "get_data.f90" + !> \b Examples: \ref grib_get_data.f90 "grib_get_data.f90" !> !> @param[in] gribid id of the grib loaded in memory !> @param[out] lats latitudes array with dimension "size" diff --git a/fortran/grib_f90_int.f90 b/fortran/grib_f90_int.f90 index 4e2078e28..d0c8811a3 100644 --- a/fortran/grib_f90_int.f90 +++ b/fortran/grib_f90_int.f90 @@ -82,7 +82,7 @@ !> exit with an error message.\n Otherwise the error message can be !> gathered with @ref grib_get_error_string. !> - !> \b Examples: \ref grib_get_keys.f90 "grib_get_keys.f90", \ref print_data.f90 "print_data.f90" + !> \b Examples: \ref grib_get_keys.f90 "grib_get_keys.f90", \ref grib_print_data.f90 "grib_print_data.f90" !> !> @see grib_new_from_file, grib_release, grib_set !> @@ -133,7 +133,7 @@ !> exit with an error message.\n Otherwise the error message can be !> gathered with @ref grib_get_error_string. !> - !> \b Examples: \ref set.f90 "set.f90" + !> \b Examples: \ref grib_set_keys.f90 "grib_set_keys.f90" !> !> @see grib_new_from_file, grib_release, grib_get !> diff --git a/fortran/grib_f90_long_int.f90 b/fortran/grib_f90_long_int.f90 index c7f360a54..e9d8dade1 100644 --- a/fortran/grib_f90_long_int.f90 +++ b/fortran/grib_f90_long_int.f90 @@ -85,7 +85,7 @@ !> exit with an error message.\n Otherwise the error message can be !> gathered with @ref grib_get_error_string. !> - !> \b Examples: \ref grib_get_keys.f90 "grib_get_keys.f90", \ref print_data.f90 "print_data.f90" + !> \b Examples: \ref grib_get_keys.f90 "grib_get_keys.f90", \ref grib_print_data.f90 "grib_print_data.f90" !> !> @see grib_new_from_file, grib_release, grib_set !> @@ -137,7 +137,7 @@ !> exit with an error message.\n Otherwise the error message can be !> gathered with @ref grib_get_error_string. !> - !> \b Examples: \ref set.f90 "set.f90" + !> \b Examples: \ref grib_set_keys.f90 "grib_set_keys.f90" !> !> @see grib_new_from_file, grib_release, grib_get !> diff --git a/html/interfaceeccodes_1_1codes__get.html b/html/interfaceeccodes_1_1codes__get.html index a959c9b16..171f59b77 100644 --- a/html/interfaceeccodes_1_1codes__get.html +++ b/html/interfaceeccodes_1_1codes__get.html @@ -131,7 +131,7 @@ Public Member Functions

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.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: grib_get_keys.f90, print_data.f90

+

Examples: grib_get_keys.f90, grib_print_data.f90

See Also
codes_new_from_file, codes_release, codes_set
Parameters
diff --git a/html/interfaceeccodes_1_1codes__get__element.html b/html/interfaceeccodes_1_1codes__get__element.html index 7646cf0e7..dc96686cf 100644 --- a/html/interfaceeccodes_1_1codes__get__element.html +++ b/html/interfaceeccodes_1_1codes__get__element.html @@ -114,7 +114,7 @@ Public Member Functions

Given an ID and key name as input a value corresponding to the given index is returned. The index is zero based i.e. the first element has zero index, the second element index one and so on. If the parameter index is an array all the values correspondig to the indexes list is returned. The ID 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.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: grib_nearest.f90

+

Examples: grib_nearest.f90

See Also
codes_new_from_file, codes_release, codes_get
Parameters
diff --git a/html/interfaceeccodes_1_1codes__grib__find__nearest.html b/html/interfaceeccodes_1_1codes__grib__find__nearest.html index a0d42810d..7ef37af69 100644 --- a/html/interfaceeccodes_1_1codes__grib__find__nearest.html +++ b/html/interfaceeccodes_1_1codes__grib__find__nearest.html @@ -119,7 +119,7 @@ Public Member Functions

If a single latitude/longitude point is provided and outlat,outlon,value,distance,index are defined as arrays with four elements the lat/lon coordinates and values, distances and indexes of the four nearest points are returned.

In case of error, if the status parameter (optional) is not given, the program will exit with an error message.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: grib_nearest.f90

+

Examples: grib_nearest.f90

Parameters
diff --git a/html/interfaceeccodes_1_1codes__grib__get__data.html b/html/interfaceeccodes_1_1codes__grib__get__data.html index 2d8feb47b..122a3a15e 100644 --- a/html/interfaceeccodes_1_1codes__grib__get__data.html +++ b/html/interfaceeccodes_1_1codes__grib__get__data.html @@ -108,7 +108,7 @@ Public Member Functions

Latitudes, longitudes, data values arrays are returned. They must be properly allocated by the caller and their required dimension can be obtained with codes_get_size or by getting (with codes_get) the value of the integer key "numberOfPoints".

In case of error, if the status parameter (optional) is not given, the program will exit with an error message.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: get_data.f90

+

Examples: grib_get_data.f90

Parameters
[in]gribidid of the grib loaded in memory
diff --git a/html/interfaceeccodes_1_1codes__index__get.html b/html/interfaceeccodes_1_1codes__index__get.html index 2bf016d63..c16d1ad66 100644 --- a/html/interfaceeccodes_1_1codes__index__get.html +++ b/html/interfaceeccodes_1_1codes__index__get.html @@ -114,7 +114,7 @@ Public Member Functions

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.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: index.f90

+

Examples: grib_index.f90

Parameters
[in]gribidid of the grib loaded in memory
@@ -165,7 +165,7 @@ Public Member Functions

The key must belong to the index. This function is used when the type of the key was explicitly defined as long or when the native type of the key is long.

In case of error, if the status parameter (optional) is not given, the program will exit with an error message.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: grib_index.f90

+

Examples: grib_index.f90

Parameters
indexidid of an index created from a file. The index must have been created with the key in argument.
@@ -218,7 +218,7 @@ Public Member Functions

The key must belong to the index. This function is used when the type of the key was explicitly defined as long or when the native type of the key is long.

In case of error, if the status parameter (optional) is not given, the program will exit with an error message.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: grib_index.f90

+

Examples: grib_index.f90

Parameters
indexidid of an index created from a file. The index must have been created with the key in argument.
@@ -271,7 +271,7 @@ Public Member Functions

The key must belong to the index. This function is used when the type of the key was explicitly defined as long or when the native type of the key is long.

In case of error, if the status parameter (optional) is not given, the program will exit with an error message.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: grib_index.f90

+

Examples: grib_index.f90

Parameters
indexidid of an index created from a file. The index must have been created with the key in argument.
@@ -324,7 +324,7 @@ Public Member Functions

The key must belong to the index. This function is used when the type of the key was explicitly defined as string or when the native type of the key is string.

In case of error, if the status parameter (optional) is not given, the program will exit with an error message.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: grib_index.f90

+

Examples: grib_index.f90

Parameters
indexidid of an index created from a file. The index must have been created with the key in argument.
diff --git a/html/interfaceeccodes_1_1codes__index__get__size.html b/html/interfaceeccodes_1_1codes__index__get__size.html index 0f3b18a30..a1d48bd23 100644 --- a/html/interfaceeccodes_1_1codes__index__get__size.html +++ b/html/interfaceeccodes_1_1codes__index__get__size.html @@ -108,7 +108,7 @@ Public Member Functions

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.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: index.f90

+

Examples: grib_index.f90

Parameters
indexidid of an index created from a file. The index must have been created with the key in argument.
@@ -159,7 +159,7 @@ Public Member Functions

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.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: grib_index.f90

+

Examples: grib_index.f90

Parameters
indexidid of an index created from a file. The index must have been created with the key in argument.
@@ -212,7 +212,7 @@ Public Member Functions

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.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: grib_index.f90

+

Examples: grib_index.f90

Parameters
indexidid of an index created from a file. The index must have been created with the key in argument.
diff --git a/html/interfaceeccodes_1_1codes__index__select.html b/html/interfaceeccodes_1_1codes__index__select.html index 1f909094a..0a60d87c6 100644 --- a/html/interfaceeccodes_1_1codes__index__select.html +++ b/html/interfaceeccodes_1_1codes__index__select.html @@ -113,7 +113,7 @@ Public Member Functions

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.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: index.f90

+

Examples: grib_index.f90

Parameters
indexidid of an index created from a file. The index must have been created with the key in argument.
@@ -164,7 +164,7 @@ Public Member Functions

The value is a integer. The key must have been created with integer type or have integer as native type if the type was not explicitly defined in the index creation.

In case of error, if the status parameter (optional) is not given, the program will exit with an error message.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: grib_index.f90

+

Examples: grib_index.f90

Parameters
indexidid of an index created from a file. The index must have been created with the key in argument.
@@ -217,7 +217,7 @@ Public Member Functions

The value is a integer. The key must have been created with integer type or have integer as native type if the type was not explicitly defined in the index creation.

In case of error, if the status parameter (optional) is not given, the program will exit with an error message.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: grib_index.f90

+

Examples: grib_index.f90

Parameters
indexidid of an index created from a file. The index must have been created with the key in argument.
@@ -270,7 +270,7 @@ Public Member Functions

The value is a real. The key must have been created with real type or have real as native type if the type was not explicitly defined in the index creation.

In case of error, if the status parameter (optional) is not given, the program will exit with an error message.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: grib_index.f90

+

Examples: grib_index.f90

Parameters
indexidid of an index created from a file. The index must have been created with the key in argument.
@@ -323,7 +323,7 @@ Public Member Functions

The value is a integer. The key must have been created with string type or have string as native type if the type was not explicitly defined in the index creation.

In case of error, if the status parameter (optional) is not given, the program will exit with an error message.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: grib_index.f90

+

Examples: grib_index.f90

Parameters
indexidid of an index created from a file. The index must have been created with the key in argument.
diff --git a/html/interfaceeccodes_1_1codes__new__from__message.html b/html/interfaceeccodes_1_1codes__new__from__message.html index 03d13722d..b12219434 100644 --- a/html/interfaceeccodes_1_1codes__new__from__message.html +++ b/html/interfaceeccodes_1_1codes__new__from__message.html @@ -110,7 +110,7 @@ Public Member Functions message is kept in the new message structure.

In case of error, if the status parameter (optional) is not given, the program will exit with an error message.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: grib_copy_message.f90

+

Examples: grib_copy_message.f90

Parameters
indexidid of an index created from a file. The index must have been created with the key in argument.
@@ -156,7 +156,7 @@ Public Member Functions message is kept in the new message structure.

In case of error, if the status parameter (optional) is not given, the program will exit with an error message.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: grib_copy_message.f90

+

Examples: grib_copy_message.f90

Parameters
idID of the message loaded in memory
@@ -204,7 +204,7 @@ Public Member Functions message is kept in the new message structure.

In case of error, if the status parameter (optional) is not given, the program will exit with an error message.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: grib_copy_message.f90

+

Examples: grib_copy_message.f90

Parameters
msgidid of the message loaded in memory
diff --git a/html/interfaceeccodes_1_1codes__set.html b/html/interfaceeccodes_1_1codes__set.html index 5bb726691..d6a7c4410 100644 --- a/html/interfaceeccodes_1_1codes__set.html +++ b/html/interfaceeccodes_1_1codes__set.html @@ -133,7 +133,7 @@ Public Member Functions 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.
Otherwise the error message can be gathered with codes_get_error_string.

-

Examples: set.f90

+

Examples: grib_set_keys.f90

See Also
codes_new_from_file, codes_release, codes_get
Parameters
msgidid of the message loaded in memory