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
feature: added support for Python 3.7, 3.8, and 3.9
feature: added support for installation inside CASA 6.x. Support for CASA 5.x and earlier is dropped.
Bugfix:
when exporting visibilities with export_uvtable the weights of each polarisation were averaged, while they should be summed (the weight of the weighted average is the sum of the weights).
bugfix: string encoding (which was implemented to obtain Python 2 and 3 compatibility in CASA 5) was causing errors in CASA 6 (see #43).
Documentation:
Major revamp to documentation, now structured in multiple pages.
Documentation moved to uvplot.readthedocs.io, which has many advantages and natively supports docs versioning.
on some systems, a default encoding differing from utf-8 would cause the installation to fail (#34)
numpy v1.16.3 introduced allow_pickle=False by default in numpy.load. Setting it to True manually, to ensure npz files containing uvtables can be read (#36).
add UVTable.freqs_avg float containing the average frequency of all the stored uvpoints.
add UVTable.freqs_wrt_avg array containing the frequency of all the stored uvpoints normalised to the average frequency. Useful for spectral extrapolations.
UVTable object: fix the conversion of u, v coordinates from the observing wavelength (stored in UVTable.u, UVTable.v) to meters (stored in UVTable.u_m, UVTable.v_m).