Skip to content

Commit

Permalink
add descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
jlmaurer committed Jul 18, 2023
1 parent feaf741 commit 3365c5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/)
and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Latest updates:
+ Fix bug in fillna3D for NaNs at elevations higher than present in the weather model
+ write delays even if they contain nans
+ check that the aoi is contained within HRRR extent
+ move the ray building out of the _build_cube_ray and into its own function for cleaner testing
Expand Down
2 changes: 1 addition & 1 deletion tools/RAiDER/models/weatherModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ def _checkForNans(self):
Fill in NaN-values
'''
self._p = fillna3D(self._p)
self._t = fillna3D(self._t, fill_value=1e16)
self._t = fillna3D(self._t, fill_value=1e16) # to avoid division by zero later on
self._e = fillna3D(self._e)


Expand Down

0 comments on commit 3365c5a

Please sign in to comment.