Skip to content

Commit

Permalink
tiny docs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
headtr1ck committed Jun 20, 2024
1 parent e8ee7a8 commit a192f68
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ <h2 id="creatingopeningclosing-a-netcdf-file">Creating/Opening/Closing a netCDF
If the file is open for write access (<code>mode='w', 'r+'</code> or <code>'a'</code>), you may
write any type of data including new dimensions, groups, variables and
attributes.
netCDF files come in five flavors (<code>NETCDF3_CLASSIC,
NETCDF3_64BIT_OFFSET, NETCDF3_64BIT_DATA, NETCDF4_CLASSIC&lt;code&gt;, and &lt;/code&gt;NETCDF4</code>).
netCDF files come in five flavors (<code>NETCDF3_CLASSIC</code>,
<code>NETCDF3_64BIT_OFFSET</code>, <code>NETCDF3_64BIT_DATA</code>, <code>NETCDF4_CLASSIC</code>, and <code>NETCDF4</code>).
<code>NETCDF3_CLASSIC</code> was the original netcdf binary format, and was limited
to file sizes less than 2 Gb. <code>NETCDF3_64BIT_OFFSET</code> was introduced
in version 3.6.0 of the library, and extended the original binary format
Expand Down
4 changes: 2 additions & 2 deletions src/netCDF4/_netCDF4.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ To create a netCDF file from python, you simply call the `Dataset`
constructor. This is also the method used to open an existing netCDF
file. If the file is open for write access (`mode='w', 'r+'` or `'a'`), you may
write any type of data including new dimensions, groups, variables and
attributes. netCDF files come in five flavors (`NETCDF3_CLASSIC,
NETCDF3_64BIT_OFFSET, NETCDF3_64BIT_DATA, NETCDF4_CLASSIC`, and `NETCDF4`).
attributes. netCDF files come in five flavors (`NETCDF3_CLASSIC`,
`NETCDF3_64BIT_OFFSET`, `NETCDF3_64BIT_DATA`, `NETCDF4_CLASSIC`, and `NETCDF4`).
`NETCDF3_CLASSIC` was the original netcdf binary format, and was limited
to file sizes less than 2 Gb. `NETCDF3_64BIT_OFFSET` was introduced
in version 3.6.0 of the library, and extended the original binary format
Expand Down

0 comments on commit a192f68

Please sign in to comment.