Skip to content

Commit 2c8fb9a

Browse files
authored
Merge pull request #133 from annierose3/transfer_ir_manual_corr
Transfer ir manual corr
2 parents 25c8a95 + 9cbc326 commit 2c8fb9a

File tree

22 files changed

+272
-2618
lines changed

22 files changed

+272
-2618
lines changed

.github/workflows/ci_html_build.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@ on:
77

88
workflow_dispatch:
99

10-
permissions:
11-
contents: write
12-
id-token: write
13-
14-
1510
jobs:
1611
Generate_HTML:
1712
if: github.event.pull_request.merged == true

index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# STScI Notebook Repository HQ
1+
# STScI HST Notebook Repository HQ
22
This page provides links to notebooks created by various Hubble Space
33
Telescope instrument teams and software groups, including:
44

5-
[Advanced Camera for Surveys (ACS)](https://www.stsci.edu/hst/instrumentation/acs);
5+
- [Advanced Camera for Surveys (ACS)](https://www.stsci.edu/hst/instrumentation/acs)
66

7-
[Cosmic Origins Spectrograph (COS)](https://www.stsci.edu/hst/instrumentation/cos);
7+
- [Cosmic Origins Spectrograph (COS)](https://www.stsci.edu/hst/instrumentation/cos)
88

9-
[DrizzlePac](https://www.stsci.edu/scientific-community/software/drizzlepac);
9+
- [DrizzlePac](https://www.stsci.edu/scientific-community/software/drizzlepac)
1010

11-
[Near Infrared Camera and Multi-Object Spectrometer (NICMOS)](https://www.stsci.edu/hst/instrumentation/legacy/nicmos);
11+
- [Near Infrared Camera and Multi-Object Spectrometer (NICMOS)](https://www.stsci.edu/hst/instrumentation/legacy/nicmos)
1212

13-
[Space Telescope Imaging Spectrograph (STIS)](https://www.stsci.edu/hst/instrumentation/stis);
13+
- [Space Telescope Imaging Spectrograph (STIS)](https://www.stsci.edu/hst/instrumentation/stis)

notebooks/ACS/acs_cte_forward_model/requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@ astroquery==0.4.6
44
matplotlib==3.7.0
55
numpy==1.23.4
66
photutils==1.6.0
7+
crds==11.17.7
8+
stsci.tools==4.1.0
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
acstools==3.5.0
1+
acstools==3.6.1
22
astropy==5.2.1
33
astroquery==0.4.6
44
matplotlib==3.7.0
55
numpy==1.23.4
6+
photutils==1.9.0

notebooks/ACS/acs_pixel_area_maps/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ stsci.imagestats==1.6.3
55
stsci.skypac==1.0.9
66
stsci.stimage==0.2.6
77
stsci.tools==4.0.1
8+
matplotlib==3.7.0
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
astropy==5.2.1
22
astroquery==0.4.6
33
stwcs==1.7.2
4+
crds==11.17.0
5+
matplotlib==3.7.0

notebooks/ACS/acs_saturation_trails/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ astroquery==0.4.6
33
matplotlib==3.7.0
44
numpy==1.23.4
55
photutils==1.6.0
6-
scipy==1.9.1
6+
scipy==1.11.3
77
stsci.image==2.3.5
88
stsci.imagestats==1.6.3
99
stsci.skypac==1.0.9

notebooks/ACS/acs_subarrays/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ acstools==3.5.0
22
astropy==5.2.1
33
astroquery==0.4.6
44
stwcs==1.7.2
5+
crds==11.17.0

notebooks/COS/Extract/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ astroquery==0.4.6
33
calcos==3.4.4
44
matplotlib==3.7.0
55
numpy==1.23.4
6-
scipy==1.9.1
6+
scipy==1.10.0

notebooks/COS/LSF/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ astropy==5.2.1
22
astroquery==0.4.6
33
matplotlib==3.7.0
44
numpy==1.23.4
5-
scipy==1.9.1
5+
scipy==1.10.0

notebooks/STIS/CoronagraphyViz/STIS_Coronagraphy_Visualization_v2.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@
360360
" elif feature == 'disk':\n",
361361
" if ('disk_width' not in kwargs) or ('disk_height' not in kwargs):\n",
362362
" raise NameError(\"Disk width and/or height not specified.\")\n",
363-
" el = Ellipse((0, 0), kwargs['disk_width'], kwargs['disk_height'], -orient-45+featurepa, fill=0, fc=None, lw=5, ec='magenta') # angle was incorrectly featurepa+90\n",
363+
" el = Ellipse((0, 0), kwargs['disk_width'], kwargs['disk_height'], angle=-orient-45+featurepa, fill=0, fc=None, lw=5, ec='magenta') # angle was incorrectly featurepa+90\n",
364364
" ax_cart.add_patch(el)\n",
365365
"\n",
366366
" else:\n",

notebooks/STIS/cross-correlation/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ astropy==5.2.1
22
astroquery==0.4.6
33
matplotlib==3.7.0
44
numpy==1.23.4
5-
scipy==1.9.1
5+
scipy==1.10.0
66
stistools==1.4.4
Loading

notebooks/STIS/view_data/view_data.ipynb

Lines changed: 2 additions & 7 deletions
Large diffs are not rendered by default.

notebooks/WFC3/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
WFC3Library
2-
===========
1+
WFC3 Notebooks
2+
==============
33

44
Here the user will find the latest Python-based software notebooks for the Wide
55
Field Camera 3 (WFC3) on the Hubble Space Telescope (HST). For our primary WFC3

0 commit comments

Comments
 (0)