You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
893 B

  1. python3-netcdf4 is a Python3 interface to the netCDF C library.
  2. netCDF version 4 has many features not found in earlier versions of the
  3. library and is implemented on top of HDF5. This module can read and
  4. write files in both the new netCDF 4 and the old netCDF 3 format, and
  5. can create files that are readable by HDF5 clients. The API modelled
  6. after Scientific.IO.NetCDF, and should be familiar to users of that
  7. module.
  8. Most new features of netCDF 4 are implemented, such as multiple
  9. unlimited dimensions, groups and data compression. All the new numeric
  10. data types (such as 64 bit and unsigned integer types) are implemented.
  11. Compound (struct), variable length (vlen) and enumerated (enum) data
  12. types are supported, but not the opaque data type. Mixtures of compound,
  13. vlen and enum data types (such as compound types containing enums, or
  14. vlens containing compound types) are not supported.