Closed thekester closed 4 months ago
This pull request fixes the issue with numpy integration by replacing np.math.atan2 with np.arctan2.
np.math.atan2
np.arctan2
SDS_preprocess.py
DeprecationWarning
np.math
math
Closes #515
great, thanks @thekester for another fix.
Description
This pull request fixes the issue with numpy integration by replacing
np.math.atan2
withnp.arctan2
.Changes Made
np.math.atan2
withnp.arctan2
inSDS_preprocess.py
.DeprecationWarning
:np.math
is a deprecated alias for the standard librarymath
module (Deprecated in Numpy 1.25).Related Issue
Closes #515