Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ number of the code change for that issue. These PRs can be viewed at:
3.xx.x (unreleased)
===================

- Removed rounding of IDCSCALE values. [#2063]

- Fixed metawcs ecsv filename issue and removed lingering files. [#2073]

- Removed deprecated functions in align.py and related HAP tests. [#2072]
Expand Down
2 changes: 1 addition & 1 deletion drizzlepac/runastrodriz.py
Original file line number Diff line number Diff line change
Expand Up @@ -2234,7 +2234,7 @@ def _update_idcscale(filename):
if fhdu_idscale is None:
cd11 = hdul[('sci', sciext + 1)].header['CD1_1']
cd21 = hdul[('sci', sciext + 1)].header['CD2_1']
fhdu_idscale = round(np.sqrt(np.power(cd11, 2) + np.power(cd21, 2)) * 3600., 3)
fhdu_idscale = np.sqrt(np.power(cd11, 2) + np.power(cd21, 2)) * 3600
# Set the value of the IDCSCALE keyword
for extn in range(num_sci):
msg = 'Adding IDCSCALE {} to {}[sci,{}]'.format(fhdu_idscale, hdul.filename(), extn + 1)
Expand Down