mirror of https://github.com/ecmwf/eccodes.git
ECC-1467: Basic shell constructs
This commit is contained in:
parent
213b250904
commit
c6717fffab
|
@ -11,32 +11,32 @@
|
||||||
. ./include.ctest.sh
|
. ./include.ctest.sh
|
||||||
|
|
||||||
# Constant Fields
|
# Constant Fields
|
||||||
gfiles+="constant_field.grib1 " # grid_simple, edition=1
|
gfiles="constant_field.grib1" # grid_simple, edition=1
|
||||||
gfiles+="constant_field.grib2 " # grid_simple, edition=2
|
gfiles="$gfiles constant_field.grib2" # grid_simple, edition=2
|
||||||
|
|
||||||
# Grid Simple
|
# Grid Simple
|
||||||
gfiles+="sst_globus0083.grib " # grid_simple, edition=1
|
gfiles="$gfiles sst_globus0083.grib" # grid_simple, edition=1
|
||||||
gfiles+="reduced_latlon_surface.grib1 " # grid_simple, edition=1
|
gfiles="$gfiles reduced_latlon_surface.grib1" # grid_simple, edition=1
|
||||||
gfiles+="reduced_latlon_surface.grib2 " # grid_simple, edition=2
|
gfiles="$gfiles reduced_latlon_surface.grib2" # grid_simple, edition=2
|
||||||
gfiles+="regular_latlon_surface.grib1 " # grid_simple, edition=1
|
gfiles="$gfiles regular_latlon_surface.grib1" # grid_simple, edition=1
|
||||||
gfiles+="regular_latlon_surface.grib2 " # grid_simple, edition=2
|
gfiles="$gfiles regular_latlon_surface.grib2" # grid_simple, edition=2
|
||||||
|
|
||||||
# Spherical Complex
|
# Spherical Complex
|
||||||
gfiles+="spherical_pressure_level.grib1 " # spectral_complex, edition=1
|
gfiles="$gfiles spherical_pressure_level.grib1" # spectral_complex, edition=1
|
||||||
gfiles+="spherical_pressure_level.grib2 " # spectral_complex, edition=2
|
gfiles="$gfiles spherical_pressure_level.grib2" # spectral_complex, edition=2
|
||||||
|
|
||||||
# Grid Complex
|
# Grid Complex
|
||||||
gfiles+=" " # grid_complex, edition=1
|
#gfiles="$gfiles " # grid_complex, edition=1
|
||||||
gfiles+="gfs.complex.mvmu.grib2 " # grid_complex, edition=2, g22order_packing
|
gfiles="$gfiles gfs.complex.mvmu.grib2" # grid_complex, edition=2, g22order_packing
|
||||||
|
|
||||||
# Second Order
|
# Second Order
|
||||||
#gfiles+="lfpw.grib1 " # grid_second_order, edition=1
|
#gfiles="$gfiles lfpw.grib1" # grid_second_order, edition=1
|
||||||
#gfiles+=" " # grid_second_order, edition=2
|
#gfiles="$gfiles " # grid_second_order, edition=2
|
||||||
|
|
||||||
# CCSDS
|
# CCSDS
|
||||||
if [ $HAVE_AEC -eq 1 ]; then
|
if [ $HAVE_AEC -eq 1 ]; then
|
||||||
echo "Adding extra files (HAVE_AEC=1)"
|
echo "Adding extra files (HAVE_AEC=1)"
|
||||||
gfiles+="ccsds.grib2 "
|
gfiles="$gfiles ccsds.grib2"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for f in $gfiles; do
|
for f in $gfiles; do
|
||||||
|
|
Loading…
Reference in New Issue