You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Medium-level [netCDF](http://www.unidata.ucar.edu/software/netcdf/) bindings for Rust, allowing easy reading and writing of array-like structures to a file.
12
+
netCDF can read and write `hdf5` files, which is a commonly used file format in scientific computing.
12
13
13
14
## Status
14
15
@@ -32,14 +33,10 @@ All variable data is read into a contiguous buffer, or inta an [ndarray](https:/
32
33
33
34
## Building
34
35
35
-
This crate depends on libnetcdf. The Travis build runs on Ubuntu 16.04 Xenial and installs libnetcdf via apt, which results in netcdf v.4.4.0. netcdf is not widely tested on other versions of netcdf.
36
+
This crate depends on `libnetcdf`, but a static build from source is also supported, which can be enabled using the `static` feature.
36
37
37
-
You can build the library and run the tests via Docker like this:
38
+
The crate is built on several platforms using github actions, and is currently known to build form from source on all major platforms (linux, macos, windows (gnu+msvc)), and through the package installers `conda` and `apt`.
0 commit comments