supernovas 0.2.0

Safe Rust wrapper around the SuperNOVAS astrometry library
Documentation
1
2
3
4
5
6
7
8
9
//! Astronomical sources: catalog stars, planets, ephemeris bodies, etc.
//!
//! Currently only [`CatalogEntry`] (sidereal sources) is implemented; other
//! source kinds (planets, orbital, ephemeris-driven) follow as their use
//! cases come up.

mod catalog_entry;

pub use catalog_entry::CatalogEntry;