cfdm.core.CoordinateReference¶
-
class
cfdm.core.
CoordinateReference
(coordinates=None, datum=None, coordinate_conversion=None, source=None, copy=True)[source]¶ Bases:
cfdm.core.abstract.container.Container
A coordinate reference construct of the CF data model.
A coordinate reference construct relates the coordinate values of the coordinate system to locations in a planetary reference frame.
The domain of a field construct may contain various coordinate systems, each of which is constructed from a subset of the dimension and auxiliary coordinate constructs. For example, the domain of a four-dimensional field construct may contain horizontal (y-x), vertical (z), and temporal (t) coordinate systems. There may be more than one of each of these, if there is more than one coordinate construct applying to a particular spatiotemporal dimension (for example, there could be both latitude-longitude and y-x projection coordinate systems). In general, a coordinate system may be constructed implicitly from any subset of the coordinate constructs, yet a coordinate construct does not need to be explicitly or exclusively associated with any coordinate system.
A coordinate system of the field construct can be explicitly defined by a coordinate reference construct which relates the coordinate values of the coordinate system to locations in a planetary reference frame and consists of the following:
References to the dimension coordinate and auxiliary coordinate constructs that define the coordinate system to which the coordinate reference construct applies. Note that the coordinate values are not relevant to the coordinate reference construct, only their properties.
A definition of a datum specifying the zeroes of the dimension and auxiliary coordinate constructs which define the coordinate system. The datum may be implied by the metadata of the referenced dimension and auxiliary coordinate constructs, or explicitly provided.
A coordinate conversion, which defines a formula for converting coordinate values taken from the dimension or auxiliary coordinate constructs to a different coordinate system. A coordinate reference construct relates the coordinate values of the field to locations in a planetary reference frame.
New in version (cfdm): 1.7.0
Initialisation
- Parameters
- coordinates: sequence of
str
, optional Identify the related dimension and auxiliary coordinate constructs by their construct identifiers. Ignored if the source parameter is set.
The coordinates may also be set after initialisation with the
set_coordinates
andset_coordinate
methods.- Parameter example:
coordinates=['dimensioncoordinate2']
- Parameter example:
coordinates=('dimensioncoordinate0', 'dimensioncoordinate1')
- datum:
Datum
, optional Set the datum component of the coordinate reference construct. Ignored if the source parameter is set.
The datum may also be set after initialisation with the
set_datum
method.- coordinate_conversion:
CoordinateConversion
, optional Set the coordinate conversion component of the coordinate reference construct. Ignored if the source parameter is set.
The coordinate conversion may also be set after initialisation with the
set_coordinate_conversion
method.- source: optional
Initialise the coordinates, datum and coordinate conversion from those of source.
Note that if source is a
CoordinateReference
instance thencfdm.core.CoordinateReference(source=source)
is equivalent tosource.copy()
.- copy:
bool
, optional If False then do not deep copy input parameters prior to initialisation. By default arguments are deep copied.
- coordinates: sequence of
Inspection¶
Attributes
Return a description of the construct type. |
Coordinates¶
Methods
Remove a reference to a coordinate construct. |
|
Whether a reference to a coordinate construct has been set. |
|
Set a reference to a coordinate construct. |
|
Return all references to coordinate constructs. |
|
Remove all references to coordinate constructs. |
|
Set references to coordinate constructs. |
Datum¶
Methods
Remove the datum component. |
|
Return the datum component. |
|
Set the datum component. |
Attributes
|
Return the datum component. |
Coordinate conversion¶
Methods
Remove the coordinate conversion component. |
|
Get the coordinate conversion component. |
|
Set the coordinate conversion component. |
Attributes
|
Return the coordinate conversion component. |
Miscellaneous¶
Methods
Return a deep copy. |
Special¶
Methods
Called by the |
Docstring substitutions¶
Methods
Return the special docstring substitutions. |
|
Returns the substitutions that apply to methods of the class. |
|
Returns the class {{package}} substitutions package depth. |
|
Returns method names excluded in the class substitutions. |