starstuff_types/
lib.rs

1/*!
2# Starstuff Types
3
4> 🚧 This is still a work in progress!!! 🚧
5
6A simple star catalog parser and primitive types for star coordinates and astronomical times.
7
8> Note: currently supports the [Yale Bright Stars Catalog](http://tdc-www.harvard.edu/catalogs/bsc5.html),  the [Hipparcos Catalog](https://heasarc.gsfc.nasa.gov/W3Browse/all/hipparcos.html), and the [Open Source Bright Star Catalog](https://github.com/johanley/star-catalog).
9  Run the `get_data.sh` script to fetch the catalogs.
10 */
11
12#[macro_use]
13extern crate assert_float_eq;
14
15pub mod angle;
16pub mod catalog;
17pub mod constellation;
18pub mod coord;
19pub mod star;
20pub mod time;