You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
geo.py: fix divide-by-zero warning in Aitoff transform
An attempt to do this had been make by masking zero values
in the denominator; but at least with current numpy, this is
not enough, because the __div__ method of the first argument
is used. The solution is to ensure that the first argument
is also a masked array.
0 commit comments