Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix segmentation fault in topo filtering code when processing ESG grids #238

Merged
Prev Previous commit
Next Next commit
bugfix/topo_filter
Add quotes to filter topo namelist variables.  This fixed
a program failure when using the Gnu compiler.

Issue #236.
  • Loading branch information
GeorgeGayno-NOAA committed Dec 10, 2020
commit 1c7e4b3e984b3bc9699a628cb57cf6c71f9f18fb
4 changes: 2 additions & 2 deletions ush/fv3gfs_filter_topo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ fi

cat > input.nml <<EOF
&filter_topo_nml
grid_file = $mosaic_grid
topo_file = $topo_file
grid_file = "$mosaic_grid"
topo_file = "$topo_file"
mask_field = "land_frac"
regional = $regional
stretch_fac = $stretch
Expand Down