fits-io 0.2.0

A pure-Rust FITS file reading and writing library inspired by CFITSIO, focused on safety, clarity, and performance.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Turning pixel positions into sky coordinates, and back.
//!
//! A FITS header describes this mapping with the WCS keywords: CRPIXn says which
//! pixel is the reference point, CRVALn what sky coordinate that pixel sits at,
//! CDELTn the scale, CROTA2 the rotation, and CTYPEn which projection carries
//! the plane onto the sphere.

mod distortion;
mod projection;
mod spherical;
#[allow(clippy::module_inception)]
mod wcs;

pub use self::projection::Projection;
pub use self::wcs::Wcs;