netcdf3 0.2.0

A pure Rust library for reading and writing NetCDF-3 files
Documentation

netcdf3

LICENSE Documentation Build Status Crates.io Version Minimum rustc version

Description

A pure Rust library for reading and writing NetCDF-3 files.

Technical features

  • Read classic and 64-bit offset NetCDF-3 file :
    • Open file and parse the header.
    • Read variables data from a file.
    • Get NC_CHAR array as UTF-8 String.
    • Get variable data as a N-dimensional array (using the crate ndarray).
  • Manage NetCDF-3 data set structures : dimensions, attributes and variables (create, read, rename, remove).
  • Write classic and 64-bit offset NetCDF-3 file.

Examples

Examples are available in the documentation of the project here.