[][src]Crate netcdf3

Description

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

Examples

  • Read a file with FileReader.
  • Manage NetCDF-3 data set structures : dimensions, attributes and variables with Dataset.
  • Create, read, rename and remove variables (examples).
  • Create, read, rename and remove global attributes (examples).
  • Create, read, rename and remove variable attributes (examples).
  • Create, read, rename and remove dimensions (examples)

Re-exports

pub use error::IOError;
pub use error::InvalidDataSet;

Modules

error

Structs

Attribute

NetCDF-3 attribute

DataSet

NetCDF-3 data set

Dimension

NetCDF-3 dimension

FileReader

Allows to parse headers and read data from NetCDF-3 files.

Variable

NetCDF-3 variable

Enums

DataType

All data types supported by the NetCDF-3 format

DimensionType

Type of a dimension, fixed or unlimited size

Version

NetCDF-3 file versions (classic or 64-bit offset)

Functions

is_valid_name

Checks that name follows the NetCDF-3 naming convention.