1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! # rossby
//!
//! A blazingly fast, in-memory, NetCDF-to-API server.
//!
//! This library provides the core functionality for loading NetCDF files into memory
//! and serving them via a high-performance HTTP API with support for interpolation
//! and visualization.
//!
//! ## Key Features
//!
//! - **Zero-configuration NetCDF serving**: Load any NetCDF file and instantly serve it via HTTP API
//! - **Blazing-fast performance**: In-memory data storage with microsecond query latency
//! - **Rich interpolation support**: Multiple interpolation methods for flexible data access
//! - **Beautiful visualizations**: Matplotlib-inspired colormaps for image generation
//!
//! ## Architecture
//!
//! - **Data Layer**: Loads NetCDF files into memory for fast access
//! - **API Layer**: Exposes data through a RESTful HTTP API
//! - **Processing**: Supports multiple interpolation methods and colormap rendering
pub use Config;
pub use ;
pub use ;
pub use ;