mirror of https://github.com/ecmwf/eccodes.git
Bump up version number
This commit is contained in:
parent
07bad3cf4b
commit
95c4c85e9e
|
@ -1 +1 @@
|
|||
set( ${PROJECT_NAME}_VERSION_STR "0.16.0" )
|
||||
set( ${PROJECT_NAME}_VERSION_STR "2.0.0" )
|
||||
|
|
|
@ -1,48 +0,0 @@
|
|||
#!/bin/sh
|
||||
# Copyright 2005-2016 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.
|
||||
#
|
||||
|
||||
#
|
||||
# ----------------------------------------------------------------------------------
|
||||
# Note: the grib_convert tool is now deprecated! So this test is no longer relevant
|
||||
# ----------------------------------------------------------------------------------
|
||||
#
|
||||
|
||||
. ./include.sh
|
||||
|
||||
REDIRECT=/dev/null
|
||||
|
||||
cat > rules<<EOF
|
||||
edition=2;
|
||||
EOF
|
||||
|
||||
${tools_dir}grib_convert -g rules ${data_dir}/gts.grib ${data_dir}/out.grib2
|
||||
|
||||
cgts=`${tools_dir}grib_count ${data_dir}/gts.grib`
|
||||
cout=`${tools_dir}grib_count ${data_dir}/out.grib2`
|
||||
|
||||
if [ $cgts != $cout ]
|
||||
then
|
||||
echo "error in gts test"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
rm -f ${data_dir}/out.grib2 rules
|
||||
|
||||
|
||||
#if [ ! -f "${data_dir}/lfpw.grib1" ]
|
||||
#then
|
||||
# echo no data to convert
|
||||
# exit 0
|
||||
#fi
|
||||
#tmpdata=grib_api.grib
|
||||
#rm -f $tmpdata || true
|
||||
#${tools_dir}grib_convert ${data_dir}/mf.rules ${data_dir}/lfpw.grib1 $tmpdata 2> $REDIRECT > $REDIRECT
|
||||
#${tools_dir}grib_compare -f ${data_dir}/lfpw.grib2 $tmpdata
|
||||
#rm -f $tmpdata rules || true
|
|
@ -1,18 +0,0 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
echo The following grib_convert rules convert all the grib messages
|
||||
echo contained in the input files in grib edition 2 and if a 2 metre
|
||||
echo temperature is found also the keys contained in the culy bracket are
|
||||
echo changed.\\n
|
||||
echo "\code "
|
||||
echo "editionNumber = 2;"
|
||||
echo "if( indicatorOfParameter == 11 && indicatorOfTypeOfLevel == 105)"
|
||||
echo "{"
|
||||
echo " productDefinitionTemplateNumber = 1;"
|
||||
echo " typeOfFirstFixedSurface = 103;"
|
||||
echo " scaleFactorOfFirstFixedSurface = 0;"
|
||||
echo " scaledValueOfFirstFixedSurface = 2;"
|
||||
echo "}"
|
||||
echo "\endcode"
|
||||
echo
|
|
@ -1,22 +0,0 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
echo "Dumping in a WMO documentation style with hexadecimal octet values (-H)\\n"
|
||||
echo "and with the aliases of each key listed in square brackets (-a).\\n\\n"
|
||||
echo grib_dump -Ha ../data/reduced_gaussian_model_level.grib1\\n
|
||||
echo "\\verbatim"
|
||||
./grib_dump -Ha ../data/reduced_gaussian_model_level.grib1
|
||||
echo "\\endverbatim\\n"
|
||||
|
||||
echo "\\n \\n How to obtain all the key names available in a grib file.\\n\\n"
|
||||
echo grib_dump -D ../data/regular_latlon_surface.grib1
|
||||
echo "\\verbatim "
|
||||
./grib_dump -D ../data/regular_latlon_surface.grib1
|
||||
echo "\\endverbatim\\n"
|
||||
|
||||
echo "\\n\\n How to obtain a C code example from a grib file.\\n\\n"
|
||||
echo grib_dump -C ../data/regular_latlon_surface.grib1\\n
|
||||
echo "\\code "
|
||||
./grib_dump -C ../data/regular_latlon_surface.grib1
|
||||
echo "\\endcode\\n"
|
||||
|
|
@ -13,8 +13,8 @@
|
|||
PACKAGE_NAME='eccodes'
|
||||
|
||||
# Package version
|
||||
ECCODES_MAJOR_VERSION=0
|
||||
ECCODES_MINOR_VERSION=16
|
||||
ECCODES_MAJOR_VERSION=2
|
||||
ECCODES_MINOR_VERSION=0
|
||||
ECCODES_REVISION_VERSION=0
|
||||
|
||||
ECCODES_CURRENT=1
|
||||
|
|
Loading…
Reference in New Issue