Skip to content

Commit

Permalink
Update changelog and README to reflect patch release (#8960)
Browse files Browse the repository at this point in the history
  • Loading branch information
tapastro authored Nov 14, 2024
1 parent ffa0266 commit e9a482d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 9 deletions.
9 changes: 9 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
1.16.1 (2024-10-30)
===================

resample_spec
-------------

- Update NIRSpec spectral resampling to add a missing correction factor in resampled
WCS tangent plane transformation. [#8908]

1.16.0 (2024-09-20)
===================

Expand Down
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,12 +216,13 @@ the specified context and less than the context for the next release.

| jwst tag | DMS build | SDP_VER | CRDS_CONTEXT | Released | Ops Install | Notes |
|---------------------|-----------|----------|--------------|------------|-------------|-----------------------------------------------|
| 1.16.0 | B11.1rc1 | TBD | 1281 | 2024-09-20 | TBD | First release candidate for B11.1 |
| 1.15.1 | B11.0 | 2024.2.2 | 1242 | 2024-07-08 | 2024-09-12 | Final release candidate for B11.0 |
| 1.15.0 | B11.0rc1 | | 1241 | 2024-06-26 | | First release candidate for B11.0 |
| 1.14.1 | | | 1238 | 2024-06-27 | | PyPI-only release for external users |
| 1.14.0 | B10.2.1 | 2024.1.1 | 1238 | 2024-03-29 | 2024-06-12 | Final release candidate for B10.2.1 |
| 1.13.4 | | | 1185 | 2024-01-25 | | PyPI-only release for external users |
| 1.16.1 | B11.1.1 | 2024.3.1 | 1298 | 2024-11-13 | TBD | Final release candidate for B11.1 |
| 1.16.0 | B11.1 | 2024.3.0 | 1298 | 2024-09-20 | TBD | First release candidate for B11.1 |
| 1.15.1 | B11.0 | 2024.2.2 | 1293 | 2024-07-08 | 2024-09-12 | Final release candidate for B11.0 |
| 1.15.0 | B11.0rc1 | | 1274 | 2024-06-26 | | First release candidate for B11.0 |
| 1.14.1 | | | 1240 | 2024-06-27 | | PyPI-only release for external users |
| 1.14.0 | B10.2.1 | 2024.1.1 | 1240 | 2024-03-29 | 2024-06-12 | Final release candidate for B10.2.1 |
| 1.13.4 | | | 1210 | 2024-01-25 | | PyPI-only release for external users |
| 1.13.3 | B10.1 | 2023.4.0 | 1181 | 2024-01-05 | | Final release candidate for B10.1 |
| 1.13.2 | B10.1rc3 | 2023.4.0 | 1181 | 2023-12-21 | | Third release candidate for B10.1 |
| 1.13.1 | B10.1rc2 | 2023.4.0 | 1181 | 2023-12-19 | | Second release candidate for B10.1 |
Expand Down
5 changes: 2 additions & 3 deletions jwst/resample/resample_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,8 +362,8 @@ def build_nirspec_output_wcs(self, input_models, refmodel=None):
# Correct the intercept for the new minimum value.
# Also account for integer pixel size to make sure the
# data is centered in the array.
offset_y = ny/2 * pix_to_tan_slope_y - diff_y/2
offset_x = ny/2 * pix_to_tan_slope_x - diff_x/2
offset_y = ny / 2 * pix_to_tan_slope_y - diff_y / 2
offset_x = ny / 2 * pix_to_tan_slope_x - diff_x / 2

if slope_sign_y > 0:
zero_value_y = min_tan_y
Expand All @@ -375,7 +375,6 @@ def build_nirspec_output_wcs(self, input_models, refmodel=None):
else:
zero_value_x = max_tan_x


pix_to_ytan.intercept = zero_value_y - slope_sign_y * offset_y
pix_to_xtan.intercept = zero_value_x - slope_sign_x * offset_x

Expand Down

0 comments on commit e9a482d

Please sign in to comment.