midas_processor 1.2.0

High-performance Rust tool for converting UK Met Office MIDAS weather datasets from BADC-CSV to optimized Parquet format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # MIDAS Dataset Processing Library
//!
//! High-performance streaming conversion of MIDAS meteorological CSV datasets to Parquet format.
//! Handles BADC-CSV format with metadata extraction and schema validation.

pub mod cli;
pub mod config;
pub mod error;
pub mod header;
pub mod models;
pub mod processor;
pub mod schema;

pub use error::{MidasError, Result};
pub use models::{DatasetType, ProcessingStats, StationMetadata};
pub use processor::DatasetProcessor;