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
Copy file name to clipboardExpand all lines: doc/user-guide/io.rst
+18-8
Original file line number
Diff line number
Diff line change
@@ -37,16 +37,16 @@ netCDF are based on the even more widely used HDF5 file-format.
37
37
38
38
__https://www.unidata.ucar.edu/software/netcdf/
39
39
40
+
Reading and writing netCDF files with xarray requires :std:doc:`scipy <scipy:index>`, `netCDF4-Python`__ or :std:doc:`h5netcdf <h5netcdf:index>` libraries to be installed (the two latter are able
41
+
to read/write netCDF V4 files and use the compression options described below).
42
+
40
43
.. tip::
41
44
42
45
If you aren't familiar with this data format, the `netCDF FAQ`_ is a good
43
-
place to start.
46
+
place to start. A comprehensive documentation is available in the Unidata NetCDF Users Guide's `The netCDF File Format`_ section.
@@ -70,6 +70,15 @@ By default, the file is saved as netCDF4 (assuming netCDF4-Python is
70
70
installed). You can control the format and engine used to write the file with
71
71
the ``format`` and ``engine`` arguments.
72
72
73
+
.. warning::
74
+
75
+
There are several `Limitations of NetCDF`_ which can have influence on `Large File Support`_, `Data Types`_, `Dealing with strings`_ or the like depending on the requested ``format`` (see :py:meth:`Dataset.to_netcdf` for details). In general, using ``netcdf4``/``h5netcdf`` engine with ``format="NETCDF4"`` (default) is recommended.
76
+
77
+
.. _Limitations of NetCDF: https://docs.unidata.ucar.edu/nug/current/netcdf_introduction.html#limitations
0 commit comments