Metadata-Version: 2.1
Name: astro-polaris
Version: 0.1.3
Summary: Astrodynamics library in Python
Home-page: https://github.com/Yuricst/polaris
Author: Yuri Shimane
Author-email: yuri.shimane@gmail.com
License: MIT
Keywords: astrodynamics python CR3BP
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: matplotlib (>=3.3.2)
Requires-Dist: numpy (>=1.20.0)
Requires-Dist: numba (>=0.51.2)
Requires-Dist: pandas (>=1.1.4)
Requires-Dist: scipy (>=1.5.2)

# polaris
 polaris --- PythOnLibrary for AstRodynamIcS

<p align="center">
  <img src="./etc/polaris_logo.png" width="550" title="hover text">
</p>

polaris is a Python library for preliminary spacecraft trajectory design. 

### Dependencies
- numba
- numpy
- pandas
- scipy

Although not necessary to run polaris, the following packages are also used within the example scripts and Jupyter notebooks:
- tqdm
- plotly

### Installation
Clone this repository with
```bash
$ git clone https://github.com/Yuricst/polaris.git
```

### Usage
```python
import polaris.SolarSystemConstants as ssc
import polaris.Propagator as prop
```

For examples, go to ```./examples/``` to see Jupyter notebook tutorials. 
The full documentation is available at https://github.com/Yuricst/polaris/wiki. 


