Skip to content

Commit

Permalink
fixed bug in point_stat config file, closes github issue #243
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemccabe committed Jun 12, 2019
1 parent bb81652 commit cf6c253
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ desc = "NA";
// Verification grid
//
regrid = {
to_grid = "${REGRID_TO_GRID}";
to_grid = ${REGRID_TO_GRID};
method = BILIN;
width = 2;
vld_thresh = 0.5;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ desc = "NA";
// Verification grid
//
regrid = {
to_grid = "${REGRID_TO_GRID}";
to_grid = ${REGRID_TO_GRID};
method = BILIN;
width = 2;
vld_thresh = 0.5;
Expand Down
2 changes: 1 addition & 1 deletion ush/point_stat_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def set_environment_variables(self, fcst_field=None, obs_field=None, c=None):
# Set the environment variables
self.add_env_var(b'MODEL', str(self.c_dict['MODEL']))

regrid_to_grid = str(self.c_dict['REGRID_TO_GRID'])
regrid_to_grid = self.c_dict['REGRID_TO_GRID']
self.add_env_var(b'REGRID_TO_GRID', regrid_to_grid)
# os.environ['REGRID_TO_GRID'] = regrid_to_grid

Expand Down

0 comments on commit cf6c253

Please sign in to comment.