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: README.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,8 @@
9
9
## News
10
10
For details on the latest updates, see the [Changelog](https://github.com/Unidata/netcdf4-python/blob/master/Changelog).
11
11
12
+
2/15/2020: Version [1.5.6](https://pypi.python.org/pypi/netCDF4/1.5.6) released. Added `Dataset.fromcdl` and `Dataset.tocdl`, which require `ncdump` and `ncgen` utilities to be in `$PATH`. Removed python 2.7 support.
13
+
12
14
12/20/2020: Version [1.5.5.1](https://pypi.python.org/pypi/netCDF4/1.5.5.1) released.
13
15
Updated binary wheels for OSX and linux that link latest netcdf-c and hdf5 libs.
<p>call ncgen via subprocess to create Dataset from <ahref="https://www.unidata.ucar.edu/software/netcdf/docs/netcdf_utilities_guide.html#cdl_guide">CDL</a>
2545
-
text representation.</p>
2545
+
<p>call <code>ncgen</code> via subprocess to create Dataset from <ahref="https://www.unidata.ucar.edu/software/netcdf/docs/netcdf_utilities_guide.html#cdl_guide">CDL</a>
2546
+
text representation. Requires <code>ncgen</code> to be installed and in <code>$PATH</code>.</p>
<p>call ncdump via subprocess to create <ahref="https://www.unidata.ucar.edu/software/netcdf/docs/netcdf_utilities_guide.html#cdl_guide">CDL</a>
2575
-
text representation of Dataset</p>
2575
+
<p>call <code>ncdump</code> via subprocess to create <ahref="https://www.unidata.ucar.edu/software/netcdf/docs/netcdf_utilities_guide.html#cdl_guide">CDL</a>
2576
+
text representation of Dataset. Requires <code>ncdump</code> to be installed and in <code>$PATH</code>.</p>
2576
2577
2577
-
<p><strong><code>coordvars</code></strong>: if True, write out coordinate variable data (Default False).</p>
2578
+
<p><strong><code>coordvars</code></strong>: include coordinate variable data (via <code>ncdump -c</code>). Default False</p>
2578
2579
2579
-
<p><strong><code>data</code></strong>: if True, write out all variable data (Default False).</p>
2580
+
<p><strong><code>data</code></strong>: if True, write out variable data (Default False).</p>
2580
2581
2581
2582
<p><strong><code>outfile</code></strong>: If not None, file to output ncdump to. Default is to return a string.</p>
0 commit comments