Skip to content

Commit

Permalink
increased valid single sector argument range for northern pointings
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher J. Burke committed Oct 16, 2019
1 parent 39675d6 commit 58dc7c3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,11 @@ Alternatively, the python module is a single file, tess_stars2px.py, so one can
### AUTHORS
Original programming in C and focal plane geometry solutions by Alan Levine (MIT). This python translation by Christopher J. Burke (MIT). Testing and focal plane geometry refinements by Michael Fausnaugh & Roland Vanderspek (MIT). Testing by Thomas Barclay (NASA Goddard) and Jessica Roberts (Univ. of Colorado). By target name resolving implemented by Brett Morris (UW). Python help from Brigitta Sipocz and Martin Owens. Bug reports by Adina Feinstein (Univ. Chicago).

### VERSION: 0.3.6
### VERSION: 0.3.7

### WHAT'S NEW:
-Single sector only argument range needed updating to allow for North pointings

- Comments added broke previous version. Fixed.
- TESS Year 2 (Sectors 14-26) potential pointings added.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="tess-point",
version="0.3.6",
version="0.3.7",
author="Christopher J. Burke",
author_email="cjburke@mit.edu",
description="Determine pixel coordinates for TESS targets",
Expand Down
5 changes: 3 additions & 2 deletions tess_stars2px.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@
Jessica Roberts (Univ. of Colorado)
Sesame queries by Brett Morris (UW)
VERSION: 0.3.6
VERSION: 0.3.7
WHAT'S NEW:
-Single sector only argument range needed updating to allow for North pointings
-Comment shenanigans fixed
-Updated Sector 16 pointing to higher ecliptic scattered light avoidance position
Expand Down Expand Up @@ -1032,7 +1033,7 @@ def tess_stars2px_function_entry(starIDs, starRas, starDecs, trySector=None, scI
help="Filename for input Target TIC [int]; RA[deg]; Dec[dec]; in white space delimited text file Column 1, 2, and 3 respectively")
parser.add_argument("-o", "--outputFile", type=argparse.FileType('w'), \
help="Optional filename for output. Default is output to stdout ")
parser.add_argument("-s", "--sector", type=int, choices=range(1,14),\
parser.add_argument("-s", "--sector", type=int, choices=range(1,26),\
help="Search a single sector Number [int]")
parser.add_argument("-x", "--combinedFits", action='store_true', \
help="Output detector pixel coordinates for the 'Big' multi-detector combined fits file format")
Expand Down

0 comments on commit 58dc7c3

Please sign in to comment.