mirror of https://github.com/ecmwf/eccodes.git
35 lines
1.0 KiB
Bash
Executable File
35 lines
1.0 KiB
Bash
Executable File
#!/bin/sh
|
|
# (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.
|
|
#
|
|
|
|
. ./include.ctest.sh
|
|
|
|
label="grib_g1monthlydate_test"
|
|
sample_g1=$ECCODES_SAMPLES_PATH/GRIB1.tmpl
|
|
temp=temp.$label.grib
|
|
|
|
${tools_dir}/grib_set -s marsType=fc,marsStream=wamo $sample_g1 $temp
|
|
grib_check_key_equals $temp "mars.date,monthlyVerificationDate" "20060301 20060301"
|
|
${tools_dir}/grib_dump $temp
|
|
|
|
|
|
# Date as string with month names
|
|
# --------------------------------
|
|
# Year missing
|
|
${tools_dir}/grib_set -s yearOfCentury=255 $sample_g1 $temp
|
|
grib_check_key_equals $temp "dataDate:s" "mar-16"
|
|
|
|
# Year and day missing
|
|
${tools_dir}/grib_set -s yearOfCentury=255,day=255 $sample_g1 $temp
|
|
grib_check_key_equals $temp "dataDate:s" "mar"
|
|
|
|
|
|
# Clean up
|
|
rm -f $temp
|