From d83428c15203f60b6f2100293e8374af7428660f Mon Sep 17 00:00:00 2001 From: "Walter.Kolczynski" Date: Wed, 25 Aug 2021 03:04:39 -0500 Subject: [PATCH] Remove check for existence of tiled fix files The existing of some fix files was being checked with fallback values used if the files are missing. However, this approach does not work with the tiled fix files, as they are passed as 'tileX', while the files are tile1, tile2, etc. This was causing the files checked to always fall back to their non-tiled versions. In the future, we should check for the existence of all fix files, not just the five that were checked here, appropriately handling the tiled versions. Refs: #416 --- ush/forecast_postdet.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ush/forecast_postdet.sh b/ush/forecast_postdet.sh index d6395f4c79..5438f87234 100755 --- a/ush/forecast_postdet.sh +++ b/ush/forecast_postdet.sh @@ -374,10 +374,6 @@ EOF FNSMCC=${FNSMCC:-"$FIX_AM/global_soilmgldas.statsgo.t${JCAP}.${LONB}.${LATB}.grb"} # If the appropriate resolution fix file is not present, use the highest resolution available (T1534) - [[ ! -f $FNALBC ]] && FNALBC="$FIX_AM/global_snowfree_albedo.bosu.t1534.3072.1536.rg.grb" - [[ ! -f $FNVETC ]] && FNVETC="$FIX_AM/global_vegtype.igbp.t1534.3072.1536.rg.grb" - [[ ! -f $FNSOTC ]] && FNSOTC="$FIX_AM/global_soiltype.statsgo.t1534.3072.1536.rg.grb" - [[ ! -f $FNABSC ]] && FNABSC="$FIX_AM/global_mxsnoalb.uariz.t1534.3072.1536.rg.grb" [[ ! -f $FNSMCC ]] && FNSMCC="$FIX_AM/global_soilmgldas.statsgo.t1534.3072.1536.grb" # NSST Options