mirror of https://github.com/ecmwf/eccodes.git
67 lines
3.3 KiB
Bash
Executable File
67 lines
3.3 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_cfNames_test"
|
|
temp=temp.${label}
|
|
sample1=$ECCODES_SAMPLES_PATH/GRIB1.tmpl
|
|
sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl
|
|
|
|
${tools_dir}/grib_set -s discipline=192,parameterCategory=128,parameterNumber=137 $sample2 $temp
|
|
grib_check_key_equals $temp cfName lwe_thickness_of_atmosphere_mass_content_of_water_vapor
|
|
|
|
${tools_dir}/grib_set -s productDefinitionTemplateNumber=8,discipline=0,parameterNumber=20,parameterCategory=2,typeOfStatisticalProcessing=1 $sample2 $temp
|
|
grib_check_key_equals $temp cfName kinetic_energy_dissipation_in_atmosphere_boundary_layer
|
|
${tools_dir}/grib_set -s stepType=accum,discipline=0,parameterNumber=20,parameterCategory=2 $sample2 $temp
|
|
grib_check_key_equals $temp cfName kinetic_energy_dissipation_in_atmosphere_boundary_layer
|
|
${tools_dir}/grib_set -s productDefinitionTemplateNumber=8,paramId=145 $sample2 $temp
|
|
grib_check_key_equals $temp cfName kinetic_energy_dissipation_in_atmosphere_boundary_layer
|
|
${tools_dir}/grib_set -s paramId=145 $sample2 $temp
|
|
grib_check_key_equals $temp cfName kinetic_energy_dissipation_in_atmosphere_boundary_layer
|
|
|
|
${tools_dir}/grib_set -s paramId=137 $sample2 $temp
|
|
grib_check_key_equals $temp cfName lwe_thickness_of_atmosphere_mass_content_of_water_vapor
|
|
|
|
${tools_dir}/grib_set -s indicatorOfParameter=137,table2Version=128 $sample1 $temp
|
|
grib_check_key_equals $temp cfName lwe_thickness_of_atmosphere_mass_content_of_water_vapor
|
|
|
|
${tools_dir}/grib_set -s productDefinitionTemplateNumber=8,paramId=145 $sample2 $temp
|
|
grib_check_key_equals $temp cfName kinetic_energy_dissipation_in_atmosphere_boundary_layer
|
|
|
|
${tools_dir}/grib_set -s indicatorOfParameter=122,table2Version=1 $sample1 $temp
|
|
grib_check_key_equals $temp cfName surface_upward_sensible_heat_flux
|
|
|
|
${tools_dir}/grib_set -s indicatorOfParameter=121,table2Version=1 $sample1 $temp
|
|
grib_check_key_equals $temp cfName surface_upward_latent_heat_flux
|
|
|
|
${tools_dir}/grib_set -s indicatorOfParameter=145,table2Version=151 $sample1 $temp
|
|
grib_check_key_equals $temp cfName sea_surface_height_above_geoid
|
|
|
|
${tools_dir}/grib_set -s indicatorOfParameter=163,table2Version=151 $sample1 $temp
|
|
grib_check_key_equals $temp cfName depth_of_isosurface_of_sea_water_potential_temperature
|
|
|
|
|
|
${tools_dir}/grib_set -s paramId=181 $sample1 $temp
|
|
grib_check_key_equals $temp cfName surface_downward_northward_stress
|
|
${tools_dir}/grib_set -s paramId=181 $sample2 $temp
|
|
grib_check_key_equals $temp cfName surface_downward_northward_stress
|
|
${tools_dir}/grib_set -s discipline=192,parameterCategory=151,parameterNumber=153 $sample2 $temp
|
|
grib_check_key_equals $temp cfName surface_downward_eastward_stress
|
|
|
|
${tools_dir}/grib_set -s discipline=0,parameterCategory=1,parameterNumber=10 $sample2 $temp
|
|
grib_check_key_equals $temp cfName lwe_thickness_of_convective_precipitation_amount
|
|
|
|
${tools_dir}/grib_set -s discipline=0,parameterCategory=1,parameterNumber=11 $sample2 $temp
|
|
grib_check_key_equals $temp cfName lwe_thickness_of_surface_snow_amount
|
|
|
|
# Clean up
|
|
rm -f $temp
|