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
//! Struct for working with fits images

/// Reading and writing images stored tile-compressed inside a table.
pub mod compression;
mod group;
mod image;
mod image_data;
mod normalizer;

pub use self::group::Group;
pub(crate) use self::group::decode_group;
pub use self::image::Image;
pub use self::image_data::ImageData;
pub use self::normalizer::Normalizer;