Skip to content

Commit

Permalink
Removed double conversion of mm -> m
Browse files Browse the repository at this point in the history
  • Loading branch information
bobkopp authored Jan 12, 2023
1 parent 08f6fc1 commit 2e3249a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def project_station(station_data, slproj_data, proj_qnts, testz, allowance_freq,
id_var[:] = site_id
year_var[:] = proj_years
q_var[:] = proj_qnts
localslq[:] = np.quantile(lcl_msl_samples,proj_qnts) / 1000.0 # Convert to meters
localslq[:] = np.quantile(lcl_msl_samples,proj_qnts)
heights_var[:] = testz
loc_var[:] = loc
mhhw_var[:] = mhhw
Expand Down

0 comments on commit 2e3249a

Please sign in to comment.