Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion ush/interp_atmos_master.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ export err=$?; err_chk
# trim and mask for all grids
for grid in "${grids[@]}"; do
trim_rh "${output_file_prefix}_${grid}"; export err=$?; err_chk
mod_icec "${output_file_prefix}_${grid}"; export err=$?; err_chk
count=$(${WGRIB2} "${output_file_prefix}_${grid}" -match "LAND|ICEC" |wc -l)
Comment thread Fixed
if [ ${count} -eq 2 ]; then
Comment thread Fixed
Comment thread Fixed
mod_icec "${output_file_prefix}_${grid}"; export err=$?; err_chk
fi
done

exit 0