No project description provided
Project description
TESS Proposal Tool
Under development tool to help create TESS proposals and target lists.
Use Case 1: Filling in missing TICs in a target list
If you have a list of RAs, Decs, and optionally TESS magnitudes and you would like to crossmatch them against TIC, you can do this with the tessproposaltool
. You can do this from the command line using:
tpt radec_file.csv -o output.csv
Which will result in a file output.csv
that contains the corrected RA, Dec, TESS magnitude and TIC numbers.
Your file should have a structure that contains RAs, Decs, and optionally TESS magnitudes, e.g.:
ra,dec,tmag
40.2986,56.7305,9.39
110.093,-22.2673,13.51
116.243,-30.0918,9.5
152.633,-59.3549,10.05
163.437,-58.4871,9.91
165.091,-60.7688,12.974
To do this inside Python you can use
from tessproposaltool import fill_tics
# read in your radecs, or convert them into a pandas dataframe
RA, Dec, Tmag = ..., ..., ...
df = pd.DataFrame(np.asarray([RA, Dec, Tmag]).T, columns=['ra', 'dec', 'tmag'])
new_df = fill_tics(df)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file tessproposaltool-0.1.2.tar.gz
.
File metadata
- Download URL: tessproposaltool-0.1.2.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.9.13 Darwin/22.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6bdf1aac58f12a71e79e090252579525a4a749e206c9ad0380ce476b4ab03f89 |
|
MD5 | 42181ff83ba97636bee2481541560520 |
|
BLAKE2b-256 | 8cc15bd606bb5e053e70ee9d52f86c9ab47726d98e6b4b3f0a6daa255bdda503 |
File details
Details for the file tessproposaltool-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: tessproposaltool-0.1.2-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.9.13 Darwin/22.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d7d94cf329fe86ea3b03df91b3764c584d06526dabb31d47888b70a51aa2853 |
|
MD5 | 0d02e641cb6be906b03d9b54d9cd05eb |
|
BLAKE2b-256 | 26cc93f181dde2dfd965ce665e2944cbdf95a4ade1516d3d65d74fd80cddca82 |