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

FIX: Bring WCS commits from DRAGONS #74

Merged
merged 1 commit into from
Dec 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion astrodata/wcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -690,8 +690,17 @@ def read_wcs_from_header(header):
crval = []
cdelt = []

# Handle more than 1 undefined (i.e., not CTYPEi) axis
untyped_axes = 0
for i in range(1, wcsaxes + 1):
ctype.append(header.get(f"CTYPE{i}", "LINEAR"))
try:
this_ctype = header[f"CTYPE{i}"]

except KeyError:
this_ctype = f"LINEAR{untyped_axes+1 if untyped_axes else ''}"
untyped_axes += 1

ctype.append(this_ctype)
cunit.append(header.get(f"CUNIT{i}", None))
crpix.append(header.get(f"CRPIX{i}", 0.0))
crval.append(header.get(f"CRVAL{i}", 0.0))
Expand Down
Loading