-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #201 from ecmwf/feature/ECC-1766-EERIE
ECC-1766: EERIE project metadata support
- Loading branch information
Showing
5 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Class ed EERIE project climate keywords | ||
|
||
# CMIP related activity keyword | ||
codetable[2] activity "grib2/destine_activity.table" ; | ||
alias mars.activity = activity; | ||
|
||
# CMIP related experiment keyword | ||
codetable[2] experiment "grib2/destine_experiment.table" ; | ||
alias mars.experiment = experiment; | ||
|
||
# Climate run realization keyword, which relates to an initial condition perturbation | ||
unsigned[1] realization = 255 ; | ||
alias mars.realization = realization; | ||
|
||
# Remove mars domain from this data | ||
unalias mars.domain; | ||
|
||
# Add some padding just in case we want more keys in the future | ||
pad padding_loc43(30); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#!/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 | ||
|
||
REDIRECT=/dev/null | ||
|
||
# ECC-1766: EERIE project metadata support | ||
|
||
label="grib_ecc-1766_test" | ||
temp_grib=temp.$label.grib | ||
eerie_sample=temp.$label.eerie.grib | ||
sample_grib2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl | ||
|
||
tablesVersionLatest=$( ${tools_dir}/grib_get -p tablesVersionLatest $sample_grib2 ) | ||
|
||
# Setup GRIB message with MARS keys | ||
# Set latest tables version and add local section with MARS labeling | ||
${tools_dir}/grib_set -s tablesVersion=$tablesVersionLatest,setLocalDefinition=1 $sample_grib2 $temp_grib | ||
|
||
# Then change to EERIE project GRIB message --> grib2LocalSectionNumber=43 | ||
${tools_dir}/grib_set -s grib2LocalSectionNumber=43,class=ed $temp_grib $eerie_sample | ||
|
||
# Check EERIE related keys are present and correct | ||
grib_check_key_exists $eerie_sample activity,experiment,realization | ||
grib_check_key_equals $eerie_sample "activity,experiment,realization" "0 0 255" | ||
|
||
# Check domain key is unaliased | ||
[ $( ${tools_dir}/grib_get -f -p mars.domain $eerie_sample ) = "not_found" ] | ||
|
||
# Check an example where a few additional things are set | ||
${tools_dir}/grib_set -s activity=1,experiment=1,realization=1 $eerie_sample $temp_grib | ||
|
||
grib_check_key_equals $temp_grib "activity,experiment,realization" "1 1 1" | ||
grib_check_key_equals $temp_grib "activity:s,experiment:s" "CMIP6 hist" | ||
|
||
# Clean up | ||
rm -f $temp_grib $eerie_sample |