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
Provide a general description of the issue or problem.
The reproject_to method explicitly has a shape_out keyword argument. Previously, the reason for this was because the shape_out needed to potentially be manually extracted from the low-level WCS:
raiseValueError("shape_out must be specified if target_wcs does not have the array_shape attribute.")
However, this logic is now included in reproject_to as of v0.11.1. Currently, due to the minimum version policy, we need to continue support versions older than v0.11.1. Once that period has passed, shape_out can be removed as an explicit keyword argument and the above logic can be removed.
The text was updated successfully, but these errors were encountered:
Provide a general description of the issue or problem.
The
reproject_to
method explicitly has ashape_out
keyword argument. Previously, the reason for this was because theshape_out
needed to potentially be manually extracted from the low-level WCS:ndcube/ndcube/ndcube.py
Lines 759 to 766 in 64b5f99
However, this logic is now included in
reproject_to
as of v0.11.1. Currently, due to the minimum version policy, we need to continue support versions older than v0.11.1. Once that period has passed,shape_out
can be removed as an explicit keyword argument and the above logic can be removed.The text was updated successfully, but these errors were encountered: