Skip to content

Commit

Permalink
Sector argparse limit increaed to 39; proxy acknowledge added
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher J. Burke committed Apr 11, 2020
1 parent 7a924c4 commit b3d32f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -32,7 +32,7 @@ Alternatively, the python module is a single file, tess_stars2px.py, so one can
- tess_stars2px can be called from a python program. See example_use_tess_strs2py_byfunction.py for this way to use tess_stars2px

### 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).
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). Proxy implementation by Dishendra Mishra.

### VERSION: 0.4.2

Expand Down
6 changes: 4 additions & 2 deletions tess_stars2px.py
Expand Up @@ -18,10 +18,12 @@
Testing by Thomas Barclay (NASA Goddard) &
Jessica Roberts (Univ. of Colorado)
Sesame queries by Brett Morris (UW)
Proxy Support added by Dishendra Mishra
VERSION: 0.4.1
VERSION: 0.4.2
WHAT'S NEW:
-Proxy support
-***FIXED: TIC ids that overflow 32bit integers were not being resolved correctly. Now Fixed by using 64 bit integers
-Missing check on last sector 39 fixed
-Fixed pixel limits in function entry
Expand Down Expand Up @@ -1057,7 +1059,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,39),\
parser.add_argument("-s", "--sector", type=int, choices=range(1,40),\
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 b3d32f4

Please sign in to comment.