622 B
622 B
rustyhdf5-netcdf4
NetCDF-4 read support built on rustyhdf5 — pure Rust, no C dependencies.
Features
- Read NetCDF-4 / HDF5-backed
.ncfiles - 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