Files
clawhdf5/crates/clawhdf5-netcdf4/README.md
T

622 B

rustyhdf5-netcdf4

crates.io docs.rs

NetCDF-4 read support built on rustyhdf5 — pure Rust, no C dependencies.

Features

  • Read NetCDF-4 / HDF5-backed .nc files
  • Dimension, variable, and CF convention support
  • Climate and scientific data access

Usage

use rustyhdf5_netcdf4::NetCDF4File;

let nc = NetCDF4File::open("climate.nc").unwrap();
let temp = nc.variable("temperature").unwrap();

License

MIT