Skip to content

Commit

Permalink
Update changelog for new version, remove deprecated code
Browse files Browse the repository at this point in the history
  • Loading branch information
bhazelton authored and jpober committed Feb 2, 2023
1 parent 7d20436 commit 5a957f7
Show file tree
Hide file tree
Showing 6 changed files with 206 additions and 1,601 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## [Unreleased]


## [0.2.0] - 2023-01-01

### Added
- Add support for all astropy coordinate frames with the new `skycoord` attribute (which
contains an astropy SkyCoord object) on point objects and the new `hpx_frame` attribute
Expand Down Expand Up @@ -40,6 +43,22 @@ favor of the `lon_column` and `lat_column` as a part of supporting more frames i
votable files.
- The `to_recarray` and `from_recarray` methods.

### Removed
- Removed support for the older input parameter order to `SkyModel.__init__`.
- Removed support for passing `freq_array`, `reference_freq` or `stokes` to
`SkyModel.__init__` as anything other than appropriate Quantities.
- `set_spectral_type_params` and `read_idl_catalog` methods have been
removed from `SkyModel`
- Removed the `read_healpix_hdf5`, `healpix_to_sky`, `write_healpix_hdf5`,
`skymodel_to_array`, `array_to_skymodel`, `source_cuts`, `read_votable_catalog`,
`read_gleam_catalog`, `read_text_catalog`, `read_idl_catalog`, `write_catalog_to_file`
functions (many similar methods on `SkyModel` remain).
- Removed support for passing telescope_location directly to the
`SkyModel.coherency_calc` method.
- Removed support for votable_files with tables with no name or ID.
- Removed `frequency` column and alias like `flux_density_I` for flux columns in output
of `SkyModel.to_recarray`,

## [0.1.3] - 2022-02-22

### Added
Expand Down
15 changes: 1 addition & 14 deletions pyradiosky/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,4 @@
# package is not installed
pass

from .skymodel import (
SkyModel,
array_to_skymodel,
healpix_to_sky,
read_gleam_catalog,
read_healpix_hdf5,
read_idl_catalog,
read_text_catalog,
read_votable_catalog,
skymodel_to_array,
source_cuts,
write_catalog_to_file,
write_healpix_hdf5,
)
from .skymodel import SkyModel
Loading

0 comments on commit 5a957f7

Please sign in to comment.