Examples: rename set_missing.f90 to grib_set_missing.f90

This commit is contained in:
Shahram Najm 2016-08-25 16:48:21 +01:00
parent 42e265292f
commit 6025b8ba83
10 changed files with 16 additions and 16 deletions

4
.gitignore vendored
View File

@ -147,7 +147,7 @@ examples/F90/eccodes_f_bufr_read_tropical_cyclone
examples/F90/eccodes_f_grib_clone
examples/F90/eccodes_f_grib_count_messages
examples/F90/eccodes_f_grib_count_messages_multi
examples/F90/eccodes_f_copy_message
examples/F90/eccodes_f_grib_copy_message
examples/F90/eccodes_f_copy_namespace
examples/F90/eccodes_f_count_messages
examples/F90/eccodes_f_grib_get_keys
@ -171,7 +171,7 @@ examples/F90/eccodes_f_samples
examples/F90/eccodes_f_grib_set_keys
examples/F90/eccodes_f_grib_set_bitmap
examples/F90/eccodes_f_grib_set_gvc
examples/F90/eccodes_f_set_missing
examples/F90/eccodes_f_grib_set_missing
examples/F90/eccodes_f_grib_set_pv
examples/F90/*.sh.log
examples/F90/*.sh.trs

View File

@ -1,4 +1,4 @@
/*! \page examples Grib API examples
/*! \page examples GRIB API examples
\example grib_get_keys.c grib_get_keys.c How to get values through the key names.
\example set.c set.c How to set values through the key names.
@ -19,7 +19,7 @@ defined in a message and how to iterate through them.
\example 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 set_missing.f90 How to set a missing value in the header.
\example grib_set_missing.f90 How to set a missing value in the header.
\example grib_set_pv.f90 How to set the list of levels.
\example samples.f90 How to create a new message from a samples.
\example grib_clone.f90 How to clone a message.

View File

@ -27,7 +27,7 @@ that can be taken as a starting point to write more complex programs.\n
- \ref get_data.f90 "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 set_missing.f90 "set_missing.f90" how to set a missing value in the header.
- \ref grib_set_missing.f90 "grib_set_missing.f90" how to set a missing value in the header.
- \ref grib_set_pv.f90 "grib_set_pv.f90" how to set the list of levels.
- \ref samples.f90 "samples.f90" how to create a new message from a template.
- \ref grib_clone.f90 "grib_clone.f90" how to clone a message.

View File

@ -36,11 +36,11 @@ grib_clone
grib_copy_message
count_messages
samples
set_missing
grib_set_missing
"
for fn in $fnames; do
perl -p -i -e "s|$fn\.f90|<a href=\"https://software.ecmwf.int/wiki/display/ECC/$fn\" target=\"_blank\">$fn.f90</a>|" $F90_file
done
echo DONE
echo DONE

View File

@ -23,7 +23,7 @@ list( APPEND tests
grib_print_data
grib_set_keys
grib_set_bitmap
set_missing
grib_set_missing
grib_set_pv
samples
grib_count_messages

View File

@ -4,7 +4,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 \
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 set_missing.sh grib_set_pv.sh samples.sh grib_count_messages.sh \
grib_set_bitmap.sh grib_set_missing.sh grib_set_pv.sh samples.sh grib_count_messages.sh \
read_message.sh grib_count_messages_multi.sh \
read_from_file.sh grib_index.sh get_set_uuid.sh \
bufr_attributes.sh grib_clone.sh bufr_clone.sh \
@ -29,7 +29,7 @@ noinst_PROGRAMS = eccodes_f_grib_index \
eccodes_f_grib_print_data_static \
eccodes_f_grib_set_keys \
eccodes_f_grib_set_bitmap \
eccodes_f_set_missing \
eccodes_f_grib_set_missing \
eccodes_f_grib_set_pv \
eccodes_f_samples \
eccodes_f_grib_count_messages \
@ -71,7 +71,7 @@ eccodes_f_grib_print_data_SOURCES=grib_print_data.f90
eccodes_f_grib_print_data_static_SOURCES=grib_print_data_static.f90
eccodes_f_grib_set_keys_SOURCES=grib_set_keys.f90
eccodes_f_grib_set_bitmap_SOURCES=grib_set_bitmap.f90
eccodes_f_set_missing_SOURCES=set_missing.f90
eccodes_f_grib_set_missing_SOURCES=grib_set_missing.f90
eccodes_f_grib_set_pv_SOURCES=grib_set_pv.f90
eccodes_f_samples_SOURCES=samples.f90
eccodes_f_grib_count_messages_SOURCES=grib_count_messages.f90

View File

@ -25,7 +25,7 @@ program set
'../../data/reduced_gaussian_pressure_level.grib2','r')
call codes_open_file(outfile, &
'out_surface_level.grib2','w')
'f_out_surface_level.grib2','w')
! a new grib message is loaded from file
! igrib is the grib id to be used in subsequent calls

View File

@ -9,5 +9,5 @@
. ./include.sh
${examples_dir}eccodes_f_set_missing > /dev/null
rm -f out_surface_level.grib2
${examples_dir}eccodes_f_grib_set_missing > /dev/null
rm -f f_out_surface_level.grib2

View File

@ -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 set_missing.f90 "set_missing.f90"
!> \b Examples: \ref grib_set_missing.f90 "grib_set_missing.f90"
!>
!> @param id ID of the message loaded in memory
!> @param key key name

View File

@ -10,7 +10,7 @@
!> exit with an error message.\n Otherwise the error message can be
!> gathered with @ref grib_get_error_string.
!>
!> \b Examples: \ref set_missing.f90 "set_missing.f90"
!> \b Examples: \ref grib_set_missing.f90 "grib_set_missing.f90"
!>
!> @param gribid id of the grib loaded in memory
!> @param key key name