Module netCDF4_classic :: Class Dataset
[hide private]
[frames] | no frames]

Class Dataset



object --+
         |
        Dataset
Known Subclasses:
MFDataset.MFDataset.Dataset

A netCDF Dataset is a collection of dimensions, variables and attributes. Together they describe the meaning of data and relations among data fields stored in a netCDF file.

Constructor: Dataset(filename, mode="r", clobber=True, format='NETCDF4_CLASSIC')

Parameters:

filename - Name of netCDF file to hold dataset.

Keywords:

mode - access mode. r means read-only; no data can be modified. w means write; a new file is created, an existing file with the same name is deleted. a and r+ mean append (in analogy with serial files); an existing file is opened for reading and writing.

clobber - if True (default), opening a file with mode='w' will clobber an existing file with the same name. if False, an exception will be raised if a file with the same name already exists.

format - underlying file format (one of 'NETCDF4_CLASSIC', 'NETCDF3_CLASSIC' or 'NETCDF3_64BIT'. Only relevant if mode = 'w' (if mode = 'r','a' or 'r+' the file format is automatically detected). Default 'NETCDF4_CLASSIC', which means the data is stored in an HDF5 file, but using only netCDF 3 compatibile API features. netCDF 3 clients must be recompiled and linked against the netCDF 4 library to read files in NETCDF4_CLASSIC format. The advantage is that the files are also readable by HDF5 clients, and you get to use on-the-fly zlib compression (which makes for much smaller files). 'NETCDF3_CLASSIC' is the classic netCDF 3 file format that does not handle 2+ Gb files very well. 'NETCDF3_64BIT' is the 64-bit offset version of the netCDF 3 file format, which fully supports 2+ GB files, but is only compatible with clients linked against netCDF version 3.6.0 or later.

Returns:

a Dataset instance. All further operations on the netCDF Dataset are accomplised via Dataset instance methods.

A list of attribute names corresponding to global netCDF attributes defined for the Dataset can be obtained with the ncattrs() method. These attributes can be created by assigning to an attribute of the Dataset instance. A dictionary containing all the netCDF attribute name/value pairs is provided by the __dict__ attribute of a Dataset instance.

The instance variables dimensions, variables amd file_format are read-only (and should not be modified by the user).

Instance Methods [hide private]
  __delattr__(...)
x.__delattr__('name') <==> del x.name
  __getattribute__(...)
x.__getattribute__('name') <==> x.name
  __init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
  __new__(T, S, ...)
  __setattr__(...)
x.__setattr__('name', value) <==> x.name = value
  _enddef(...)
  _redef(...)
  close(...)
Close the Dataset.
  createDimension(...)
Creates a new dimension with the given dimname and size.
  createVariable(...)
Creates a new variable with the given varname, datatype, and dimensions.
  ncattrs(...)
return names of netCDF attribute for this Dataset in a list
  renameDimension(...)
rename a Dimension named oldname to newname.
  renameVariable(...)
rename a Variable named oldname to newname
  set_fill_off(...)
Sets the fill mode for a Dataset open for writing to off.
  set_fill_on(...)
Sets the fill mode for a Dataset open for writing to on.
  sync(...)
Writes all buffered data in the Dataset to the disk file.

Inherited from object: __hash__, __reduce__, __reduce_ex__, __repr__, __str__


Class Variables [hide private]
  _dsetid = <member '_dsetid' of 'netCDF4_classic.Dataset' objects>

Instance Variables [hide private]
  dimensions = <member 'dimensions' of 'netCDF4_classic.Dataset' ob...
The dimensions dictionary maps the names of dimensions defined for this Dataset to instances of the Dimension class.
  file_format = <member 'file_format' of 'netCDF4_classic.Dataset' o...
The file_format attribute describes the netCDF file format version, one of NETCDF3_CLASSIC, NETCDF4_CLASSIC or NETCDF3_64BIT.
  variables = <member 'variables' of 'netCDF4_classic.Dataset' obj...
The variables dictionary maps the names of variables defined for this Dataset to instances of the Variable class.

Properties [hide private]

Inherited from object: __class__


Method Details [hide private]

__delattr__(...)

 
x.__delattr__('name') <==> del x.name
Overrides: object.__delattr__

__getattribute__(...)

 
x.__getattribute__('name') <==> x.name
Overrides: object.__getattribute__

__init__(...)
(Constructor)

 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Overrides: object.__init__

__new__(T, S, ...)

 
Returns:
a new object with type S, a subtype of T

Overrides: object.__new__

__setattr__(...)

 
x.__setattr__('name', value) <==> x.name = value
Overrides: object.__setattr__

_enddef(...)

 
None

_redef(...)

 
None

close(...)

 

Close the Dataset.

close()

createDimension(...)

 

Creates a new dimension with the given dimname and size.

createDimension(dimname, size=None)

size must be a positive integer or None, which stands for "unlimited" (default is None). The return value is the Dimension class instance describing the new dimension. To determine the current maximum size of the dimension, use the len function on the Dimension instance. To determine if a dimension is 'unlimited', use the isunlimited() method of the Dimension instance.

createVariable(...)

 

Creates a new variable with the given varname, datatype, and dimensions. If dimensions are not given, the variable is assumed to be a scalar.

createVariable(varname, datatype, dimensions=(), zlib=True, complevel=6, shuffle=True, fletcher32=False, chunking='seq', least_significant_digit=None, fill_value=None)

The datatype is a string with the same meaning as the dtype.str attribute of arrays in module nump. Supported data types are: 'S1' (NC_CHAR), 'i1' (NC_BYTE), 'i2' (NC_SHORT), 'i4' (NC_INT), 'f4' (NC_FLOAT) and 'f8' (NC_DOUBLE). The old single character Numeric typecodes ('f','d','c','i','h','b') are also accepted.

Data from netCDF variables are presented to python as numpy arrays with the corresponding data type.

dimensions must be a tuple containing dimension names (strings) that have been defined previously using createDimension. The default value is an empty tuple, which means the variable is a scalar.

If the optional keyword zlib is True, the data will be compressed in the netCDF file using gzip compression (default True).

The optional keyword complevel is an integer between 1 and 9 describing the level of compression desired (default 6).

If the optional keyword shuffle is True, the HDF5 shuffle filter will be applied before compressing the data (default True). This significantly improves compression.

If the optional keyword fletcher32 is True, the Fletcher32 HDF5 checksum algorithm is activated to detect errors. Default False.

If the optional keyword chunking is 'seq' (Default) HDF5 chunk sizes are set to favor sequential access. If chunking='sub', chunk sizes are set to favor subsetting equally in all dimensions.

The optional keyword fill_value can be used to override the default netCDF _FillValue (the value that the variable gets filled with before any data is written to it). If fill_value is set to False, then the variable is not pre-filled.

If the optional keyword parameter least_significant_digit is specified, variable data will be truncated (quantized). This produces 'lossy', but significantly more efficient compression. For example, if least_significant_digit=1, data will be quantized using numpy.around(scale*data)/scale, where scale = 2**bits, and bits is determined so that a precision of 0.1 is retained (in this case bits=4). From http://www.cdc.noaa.gov/cdc/conventions/cdc_netcdf_standard.shtml: "least_significant_digit -- power of ten of the smallest decimal place in unpacked data that is a reliable value." Default is None, or no quantization, or 'lossless' compression.

The return value is the Variable class instance describing the new variable.

A list of names corresponding to netCDF variable attributes can be obtained with the Variable method ncattrs(). A dictionary containing all the netCDF attribute name/value pairs is provided by the __dict__ attribute of a Variable instance.

Variable instances behave much like array objects. Data can be assigned to or retrieved from a variable with indexing and slicing operations on the Variable instance. A Variable instance has seven standard attributes: dimensions, dtype, shape and least_significant_digit Application programs should never modify these attributes. The dimensions attribute is a tuple containing the names of the dimensions associated with this variable. The dtype attribute is a string describing the variable's data type (i4, f8, S1, etc). The shape attribute is a tuple describing the current sizes of all the variable's dimensions. The least_significant_digit attributes describes the power of ten of the smallest decimal place in the data the contains a reliable value. Data is truncated to this decimal place when it is assigned to the Variable instance. If None, the data is not truncated.

ncattrs(...)

 

return names of netCDF attribute for this Dataset in a list

ncattrs()

renameDimension(...)

 

rename a Dimension named oldname to newname.

renameDimension(oldname, newname)

renameVariable(...)

 

rename a Variable named oldname to newname

renameVariable(oldname, newname)

set_fill_off(...)

 

Sets the fill mode for a Dataset open for writing to off.

set_fill_off()

This will prevent the data from being pre-filled with fill values, which may result in some performance improvements. However, you must then make sure the data is actually written before being read.

set_fill_on(...)

 

Sets the fill mode for a Dataset open for writing to on.

set_fill_on()

This causes data to be pre-filled with fill values. The fill values can be controlled by the variable's _Fill_Value attribute, but is usually sufficient to the use the netCDF default _Fill_Value (defined separately for each variable type). The default behavior of the netCDF library correspongs to set_fill_on. Data which are equal to the _Fill_Value indicate that the variable was created, but never written to.

sync(...)

 

Writes all buffered data in the Dataset to the disk file.

sync()

Class Variable Details [hide private]

_dsetid

None
Value:
<member '_dsetid' of 'netCDF4_classic.Dataset' objects>                
      

Instance Variable Details [hide private]

dimensions

The dimensions dictionary maps the names of dimensions defined for this Dataset to instances of the Dimension class.
Value:
<member 'dimensions' of 'netCDF4_classic.Dataset' objects>             
      

file_format

The file_format attribute describes the netCDF file format version, one of NETCDF3_CLASSIC, NETCDF4_CLASSIC or NETCDF3_64BIT. To read or write files in NETCDFr format, use the netCDF4 module.
Value:
<member 'file_format' of 'netCDF4_classic.Dataset' objects>            
      

variables

The variables dictionary maps the names of variables defined for this Dataset to instances of the Variable class.
Value:
<member 'variables' of 'netCDF4_classic.Dataset' objects>