Metadata-Version: 2.1
Name: backtracks
Version: 0.3.0
Summary: Python package to fit relative astrometry with background star motion tracks.
Author-email: William Balmer <wbalmer1@jhu.com>, Gilles Otten <gpplotten@asiaa.sinica.edu.tw>, Tomas Stolker <stolker@strw.leidenuniv.nl>
Project-URL: Homepage, https://github.com/wbalmer/backtrack
Project-URL: Issues, https://github.com/wbalmer/backtrack/issues
Classifier: Programming Language :: Python :: 3
Requires-Python: <3.10,>=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: astropy
Requires-Dist: astroquery
Requires-Dist: corner
Requires-Dist: dynesty
Requires-Dist: matplotlib
Requires-Dist: numpy
Requires-Dist: novas
Requires-Dist: novas-de405
Requires-Dist: orbitize
Requires-Dist: pandas
Requires-Dist: seaborn
Requires-Dist: schwimmbad
Requires-Dist: scipy

# backtrack
Python package to fit relative astrometry with background star motion tracks.

Written by Gilles Otten (@gotten), William Balmer (@wbalmer), and Tomas Stolker (@tomasstolker).

Work in progress, as of Jun. 15th, 2023.

eDR3 Distance prior summary file from this [source](https://arxiv.org/pdf/2012.05220.pdf), published in [Bailer-Jones+2021](https://arxiv.org/abs/2012.05220).

Current example (HD131399Ab) uses data from Wagner+22 and Nielsen+17. Thank you to Kevin Wagner for providing the latest astrometry!

Log-likelihood borrowed heavily from `orbitize!` (BSD 3-clause).

Currently requires and python 3.9 ish and `astropy`, `corner`, `dynesty`, `matplotlib`, `numpy`, `novas`, `novas_de405`, `orbitize` and their dependencies. Note that `novas` is not supported on Windows. You can create a working environment using conda+pip via a few lines of code:

```
conda create python=3.9 -n backtrack
conda activate backtrack
conda install pip
git clone https://github.com/wbalmer/backtrack.git
cd backtrack
pip install -e .
```

Then, test your installation (takes a while to sample fully):

```
cd tests
python hd131399a.py
```
