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

[WIP] Updating the input for tweakreg #89

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
ff61a96
Reset to remove the uncleared notebook. Should be okay now
catherine-martlin Mar 26, 2019
b5b9dd3
First Pass: PanSTARRS 1 DR2 notebook with light curves
theresadower Feb 1, 2019
ec43657
ps1 dr2 tap small cleanup
theresadower Feb 1, 2019
65941ae
Update PS1_DR2_TAP.ipynb
theresadower Feb 1, 2019
d014f24
PS1_DR2_TAP.ipynb:
rlwastro Feb 18, 2019
27336ca
updating PanSTARRS DR2, first use case complete
theresadower Feb 27, 2019
c99dd0b
PS1 DR2 TAP notebook with all use cases from MAST API notebook
theresadower Feb 27, 2019
cacbde3
update DR2 notebook, typo (and rerun travis)
theresadower Feb 28, 2019
133fa10
This was leftover copypasta from debugging, sorry, good catch.
Mar 4, 2019
2982500
Cosmetic changes from review
theresadower Mar 11, 2019
9268b6e
Updated to use astroquery.mast resolver
theresadower Mar 11, 2019
b68e3ed
Typos, text clarification, from offline comments.
theresadower Mar 11, 2019
384c46d
Merge pull request #64 from theresadower/master
Apr 2, 2019
61ca093
Reset to remove the uncleared notebook. Should be okay now
catherine-martlin Mar 26, 2019
637fb8e
Merge branch 'fix_align_multiple_visits' of https://github.com/cather…
catherine-martlin Apr 8, 2019
e9c2c8e
Add a NIRCam notebook (#75)
pllim Apr 8, 2019
e71e806
Removed unnecessary sorting
catherine-martlin Apr 8, 2019
e9ba7a1
Reset to remove the uncleared notebook. Should be okay now
catherine-martlin Mar 26, 2019
a655c24
Removed unnecessary sorting
catherine-martlin Apr 8, 2019
2454e0a
Merge branch 'fix_align_multiple_visits' of https://github.com/cather…
catherine-martlin Apr 8, 2019
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
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
" productSubGroupDescription='FLC')\n",
"\n",
"# Move to working directory (not necessary, but outputs will all be in the same place if this is done)\n",
"input_flcs = glob.glob(os.path.join('mastDownload', 'HST', '*', '*flc.fits'))\n",
"input_flcs = sorted(glob.glob(os.path.join('mastDownload', 'HST', '*', '*flc.fits')))\n",
catherine-martlin marked this conversation as resolved.
Show resolved Hide resolved
"for flc in input_flcs:\n",
" shutil.copy(flc, os.path.basename(flc))\n",
"shutil.rmtree('mastDownload') #remove mast download dir now that we've moved the files"
Expand Down Expand Up @@ -130,8 +130,7 @@
"#Remove the second file in the W4 association to simplify this notebook example and define the input file list.\n",
"\n",
"os.remove('j9irw4b3q_flc.fits')\n",
"input_flcs = glob.glob('*flc.fits')\n",
"print(input_flcs)"
"input_flcs = ['j9irw3fwq_flc.fits', 'j9irw5kaq_flc.fits', 'j9irw4b1q_flc.fits']"
]
},
{
Expand Down Expand Up @@ -687,7 +686,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.6"
"version": "3.5.6"
}
},
"nbformat": 4,
Expand Down