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
Issue
Creating a radiotools.atmosphere.refractivity.RefractivityTable with curved=True throws an error by the attempt at creating an inhomogenous numpy array. In get_cached_table_curved_atmosphere, the list self._distances is appended with arrays of different sizes (distances = np.arange(...) with variable ending and fixed stepsize). Creating an array from this (line 234) throws the error.
Minimal working example
from radiotools.atmosphere import refractivity
tab = refractivity.RefractivityTable(curved=True)
Issue
Creating a
radiotools.atmosphere.refractivity.RefractivityTable
withcurved=True
throws an error by the attempt at creating an inhomogenous numpy array. Inget_cached_table_curved_atmosphere
, the listself._distances
is appended with arrays of different sizes (distances = np.arange(...)
with variable ending and fixed stepsize). Creating an array from this (line 234) throws the error.Minimal working example
radiotools/radiotools/atmosphere/refractivity.py
Lines 222 to 234 in 60d0be0
The text was updated successfully, but these errors were encountered: