eorst 0.1.0

An Earth Observation and Remote Sensing Toolkit
//! Earth Observation and Remote Sensig Tookit (EORST).
//!
//! This crate offers a library aiming to simplify the writing of raster processing pipelines in rust.
//! This library takes a lot of ideas from the [rasterio](https://github.com/mapbox/rasterio), [rios](https://github.com/ubarsc/rios) and [geowombat](https://github.com/jgrss/geowombat) python libraries.
//!
//!
//! Some features include:
//!  - Parallel read/write.
//!  - On-the-fly image reprojection.
//!  - Point raster sampling extraction.
//!  - Time series analysis.
//!  - Band math.
//!
//! ## How to use:
//!
//! ### As a library
//!
//! Just add eotrs to your dependencies in `cargo.toml` like:
//!
//! ```toml
//! [dependencies]
//! EORST = {version = "0.1"}
//! ```
//!
//! The main focus of this library is to support work of the [JRSRP](https://www.jrsrp.org.au/), but it could be useful for a wider audience as well.
//! Most of the current functionalites were developed to support the Spatial Biocondition prject, developed jointly
//! by [Quenslands Remote Sensing Centre](https://www.rsrc.org.au/) and the [Quensland Herbarium](https://www.qld.gov.au/environment/plants-animals/plants/herbarium)  
//!

pub mod common;
pub mod multirasterdataset;
pub mod singlerasterdataset;
mod tests;