starfield 0.12.6

Astronomical data reduction toolkit with star catalogs, coordinate systems, and star finding algorithms (inspired by skyfield)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Data module for downloading and managing astronomical data
//!
//! This module provides functionality for downloading, caching, and loading
//! astronomical datasets like star catalogs.

mod downloader;
mod gaia_downloader;
pub mod horizons;
pub mod sbdb;

pub use downloader::{
    download_hipparcos, download_or_cache, ensure_cache_dir, get_cache_dir, resolve_url,
};
pub use gaia_downloader::{
    download_gaia_catalog, download_gaia_file, ensure_gaia_cache_dir, get_gaia_cache_dir,
    list_cached_gaia_files,
};