DimensionCombination¶
- class lsst.daf.butler.DimensionCombination¶
Bases:
DimensionElement
Element with extra information.
A
DimensionElement
that provides extra metadata and/or relationship endpoint information for a combination of dimensions.Attributes Summary
Return the record subclass for this element.
Indicate if the element should always be included.
Return all dimensions.
Return the governor dimension.
Return minimal graph that includes this element (
DimensionGraph
).Return the implied dimensions.
Additional metadata fields included in this element's table.
Return unique string identifier for this endpoint (
str
).Return the required dimensions.
Return this endpoint's
SPATIAL
family.Return this endpoint's
TEMPORAL
family.Return the relationship families to which this endpoint belongs.
Name of another table this element's records are drawn from.
Methods Summary
from_json
(json_str[, universe, registry])Return new class from JSON string.
from_simple
(simple[, universe, registry])Construct a new object from the simplified form.
hasTable
()Indicate if this element is associated with a table.
to_json
([minimal])Convert this class to JSON form.
to_simple
([minimal])Convert this class to a simple python type.
Attributes Documentation
- RecordClass¶
Return the record subclass for this element.
The
DimensionRecord
subclass used to hold records for this element (type
).Because
DimensionRecord
subclasses are generated dynamically, this type cannot be imported directly and hence can only be obtained from this attribute.
- alwaysJoin¶
Indicate if the element should always be included.
If
True
, always include this element in any query or data ID in which itsrequired
dimensions appear, because it defines a relationship between those dimensions that must always be satisfied.
- dimensions¶
Return all dimensions.
The union of
required
andimplied
, with all elements inrequired
before any elements inimplied
.This differs from
self.graph.dimensions
both in order and in content:as in
self.implied
, implied dimensions are not expanded recursively here;implied dimensions appear after required dimensions here, instead of being topologically ordered.
As a result, this set is ordered consistently with
self.RecordClass.fields
.
- governor¶
Return the governor dimension.
This is the
GovernorDimension
that is a required dependency of this element, orNone
if there is no such dimension (GovernorDimension
orNone
).
- graph¶
Return minimal graph that includes this element (
DimensionGraph
).self.graph.required
includes all dimensions whose primary key values are sufficient (often necessary) to uniquely identifyself
(includingself
ifisinstance(self, Dimension)
.self.graph.implied
includes all dimensions also identified (possibly recursively) by this set.
- implied¶
Return the implied dimensions.
Other dimensions that are uniquely identified directly by a record of this dimension element.
For elements with a database representation, these are exactly the dimensions used to form foreign key constraints whose fields are not (wholly) also part of the primary key.
Unlike
self.graph.implied
, this set is not expanded recursively.
- metadata¶
Additional metadata fields included in this element’s table.
(
NamedValueSet
ofFieldSpec
).
- required¶
Return the required dimensions.
Dimensions that are necessary to uniquely identify a record of this dimension element.
For elements with a database representation, these dimension are exactly those used to form the (possibly compound) primary key, and all dimensions here that are not
self
are also used to form foreign keys.For
Dimension
instances, this should be exactly the same asgraph.required
, but that may not be true forDimensionElement
instances in general. When they differ, there are multiple combinations of dimensions that uniquely identify this element, but this one is more direct.
- topology¶
Return the relationship families to which this endpoint belongs.
It is keyed by the category for that family.
Methods Documentation
- classmethod from_json(json_str: str, universe: DimensionUniverse | None = None, registry: Registry | None = None) SupportsSimple ¶
Return new class from JSON string.
Converts a JSON string created by
to_json
and return something of the supplied class.- Parameters:
- json_str
str
Representation of the dimensions in JSON format as created by
to_json()
.- universe
DimensionUniverse
, optional The special graph of all known dimensions. Passed directly to
from_simple()
.- registry
lsst.daf.butler.Registry
, optional Registry to use to convert simple name of a DatasetType to a full
DatasetType
. Passed directly tofrom_simple()
.
- json_str
- Returns:
- constructedAny
Newly-constructed object.
- classmethod from_simple(simple: str, universe: DimensionUniverse | None = None, registry: Registry | None = None) DimensionElement ¶
Construct a new object from the simplified form.
Usually the data is returned from the
to_simple
method.- Parameters:
- simple
str
The value returned by
to_simple()
.- universe
DimensionUniverse
The special graph of all known dimensions.
- registry
lsst.daf.butler.Registry
, optional Registry from which a universe can be extracted. Can be
None
if universe is provided explicitly.
- simple
- Returns:
- dataId
DimensionElement
Newly-constructed object.
- dataId
- hasTable() bool ¶
Indicate if this element is associated with a table.
Return
True
if this element is associated with a table (even if that table “belongs” to another element).