From 1b7871bd553aa4941916b6639f7a6c4fe6f48199 Mon Sep 17 00:00:00 2001 From: Stuart Mumford Date: Wed, 4 Dec 2024 09:58:52 +0000 Subject: [PATCH] Add changelog --- CHANGES.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index cca5803e..e17ffcbf 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,16 @@ 0.22.0 (unreleased) ------------------- +- Coordinate frames now have a "native" order and then are sorted based on ``axes_order``. [#457] + +- ``WCS.numerical_inverse`` no longer accepts high level objects (``with_units=`` is not supported) use ``WCS.inverse``. [#457] + +- ``CoordinateFrame.coordinates`` has been replaced by ``CoordinateFrame.to_high_level_coordinates`` [#457] + +- ``CoordinateFrame.to_quantity`` has been replaced by ``CoordinateFrame.from_high_level_coordinates``. [#457] + +- Inputs to ``CelestialFrame``, such as ``axes_names`` are now explicitly in lon, lat order and will re sorted based on ``axes_order=``. [#457] + - Replace usages of ``copy_arrays`` with ``memmap`` [#503] - Fix an issue with units in ``wcs_from_points``. [#507]