Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Just check for a float dtype, instead of force changing it. #354

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions reproject/interpolation/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,9 @@ def _reproject_full(
the same coordinate information. The transformation is computed once and
"broadcast" across those images.
"""
# Make sure image is floating point
array = np.asarray(array, dtype=float)
# Make sure image is floating point.
if not np.issubdtype(array.dtype, np.floating):
raise ValueError("Input array must be floating point.")
# shape_out must be exactly a tuple type
shape_out = tuple(shape_out)
_validate_wcs(wcs_in, wcs_out, array.shape, shape_out)
Expand Down