11================
2- File
2+ Files
33================
44
5- ``pnetcdf.File `` is a high-level object representing an netCDF file,
6- which provides a Pythonic interface to create, read and write within
7- an netCDF file. A File object serves as the root container for dimensions,
8- variables, and attributes. Together they describe the meaning of data and
9- relations among data fields stored in a netCDF file.
5+ An instance of class ``pnetcdf.File `` is a high-level object representing a
6+ netCDF file. The class methods provide a set of Pythonic interfaces to create,
7+ read and write a netCDF file. A `` File `` instance serves as the root container
8+ for dimensions, variables, and attributes. Together they describe the meaning
9+ of data and relations among data objects stored in a netCDF file.
1010
1111.. autoclass :: pnetcdf::File
1212 :members: __init__, close, filepath, redef, enddef, begin_indep, end_indep,
@@ -17,21 +17,21 @@ relations among data fields stored in a netCDF file.
1717 inq_header_size, inq_put_size, inq_header_extent, inq_nreqs
1818 :exclude-members: dimensions, variables, file_format, indep_mode, path
1919
20- Read-only Python Attributes of File Class
21- The following class members are read-only and should not be modified by the
20+ Read-only python fields of class :class: ` pnetcdf.File `
21+ The following class fields are read-only and should not be modified by the
2222 user.
2323
2424 .. attribute :: dimensions
2525
2626 The dimensions dictionary maps the names of dimensions defined in this
27- file as an instance of the `` pnetcdf.Dimension `` class .
27+ file as an instance of the :class: ` pnetcdf.Dimension `.
2828
2929 **Type: ** `dict `
3030
3131 .. attribute :: variables
3232
3333 The variables dictionary maps the names of variables defined in this file
34- as an instance of the `` pnetcdf.Variable `` class .
34+ as an instance of the :class: ` pnetcdf.Variable `.
3535
3636 **Type: ** `dict `
3737
0 commit comments