diff --git a/README.md b/README.md index edaa0f8..5c148d4 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/setup.py b/setup.py index 884f748..740506d 100644 --- a/setup.py +++ b/setup.py @@ -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", diff --git a/tess_stars2px.py b/tess_stars2px.py index 5633755..8c64252 100644 --- a/tess_stars2px.py +++ b/tess_stars2px.py @@ -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 @@ -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")