Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mommermi committed Jan 25, 2019
2 parents d0901ae + 6b6abf1 commit a4704d7
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion pp_calibrate.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

""" PP_CALIBRATE - match image databases against photometry catalogs
and derive magnitude zeropoint
Expand Down
2 changes: 1 addition & 1 deletion pp_combine.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

""" PP_COMBINE - combine frames based on wcs
v1.0: 2017-10-03, mommermiscience@gmail.com
Expand Down
4 changes: 2 additions & 2 deletions pp_distill.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

""" PP_DISTILL - distill calibrated image databases into one database
of select moving or fixed sources
Expand Down Expand Up @@ -330,7 +330,7 @@ def serendipitous_variablestars(catalogs, display=True):
+ 'a %.2f deg radius') %
(ra_deg, dec_deg, rad_deg))

field = coord.SkyCoord(ra=ra_deg, dec=dec_deg, unit=(u.dec, u.dec),
field = coord.SkyCoord(ra=ra_deg, dec=dec_deg, unit=(u.deg, u.deg),
frame='icrs')

vquery = Vizier(columns=['Name', 'RAJ2000', 'DEJ2000'])
Expand Down
2 changes: 1 addition & 1 deletion pp_extract.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

""" PP_EXTRACT - identify field sources using Source Extractor with
multi-threading capabilities
Expand Down
2 changes: 1 addition & 1 deletion pp_manident.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

""" MANIDENT - manual target identification tool for the Photometry Pipeline
Expand Down
2 changes: 1 addition & 1 deletion pp_photometry.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

""" PP_PHOTOMETRY - run curve-of-growth analysis on image files,
identify optimum aperture radius, and redo photometry
Expand Down
2 changes: 1 addition & 1 deletion pp_prepare.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

""" PP_PREPARE - prepare fits images for photometry pipeline
v1.0: 2016-02-27, mommermiscience@gmail.com
Expand Down
2 changes: 1 addition & 1 deletion pp_register.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

""" PP_REGISTER - wcs register frames
v1.0: 2015-12-30, mommermiscience@gmail.com
Expand Down
2 changes: 1 addition & 1 deletion pp_stackedphotometry.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

""" PP_STACKEDPHOTOMETRY - wrapper to perform photometry on stacked images
v1.0: 2017-10-19, mommermiscience@gmail.com
Expand Down
2 changes: 1 addition & 1 deletion pptool_mpcreport.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

""" PPTOOL_MPCREPORT - produce a file for submission of asteroid astrometry
to the Minor Planet center
Expand Down
2 changes: 1 addition & 1 deletion pptool_psfsub.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

""" PPTOOL_PSFSUB - PSF subtraction tool
v1.0: 2017-12-10, mommermiscience@gmail.com
Expand Down

0 comments on commit a4704d7

Please sign in to comment.