26 lines
622 B
Markdown
26 lines
622 B
Markdown
# rustyhdf5-netcdf4
|
|
|
|
[](https://crates.io/crates/rustyhdf5-netcdf4)
|
|
[](https://docs.rs/rustyhdf5-netcdf4)
|
|
|
|
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
|
|
|
|
```rust
|
|
use rustyhdf5_netcdf4::NetCDF4File;
|
|
|
|
let nc = NetCDF4File::open("climate.nc").unwrap();
|
|
let temp = nc.variable("temperature").unwrap();
|
|
```
|
|
|
|
## License
|
|
|
|
MIT
|