Dimension¶
-
class
lsst.daf.butler.Dimension¶ Bases:
lsst.daf.butler.DimensionElementA named data-organization concept that can be used as a key in a data ID.
Attributes Summary
RecordClassThe DimensionRecordsubclass used to hold records for this element (type).alternateKeysAdditional unique key fields for this dimension that are not the primary key ( NamedValueAbstractSetofFieldSpec).alwaysJoinIf True, always include this element in any query or data ID in which itsrequireddimensions appear, because it defines a relationship between those dimensions that must always be satisfied.dimensionsThe union of requiredandimplied, with all elements inrequiredbefore any elements inimplied.governorThe GovernorDimensionthat is a required dependency of this element, orNoneif there is no such dimension (GovernorDimensionorNone).graphMinimal graph that includes this element ( DimensionGraph).impliedOther dimensions that are uniquely identified directly by a record of this dimension element. metadataAdditional metadata fields included in this element’s table ( NamedValueSetofFieldSpec).nameUnique string identifier for this endpoint ( str).primaryKeyThe primary key field for this dimension ( FieldSpec).requiredDimensions that are necessary to uniquely identify a record of this dimension element. spatialThis endpoint’s SPATIALfamily.temporalThis endpoint’s TEMPORALfamily.topologyThe relationship families to which this endpoint belongs, keyed by the category for that family. uniqueKeysAll fields that can individually be used to identify records of this element, given the primary keys of all required dependencies ( NamedValueAbstractSetofFieldSpec).viewOfName of another table this element’s records are drawn from ( strorNone).Methods Summary
from_json(json_str, universe, registry)Convert a JSON string created by to_jsonand return something of the supplied class.from_simple(simple, universe, registry)Construct a new object from the data returned from the to_simplemethod.hasTable()Return Trueif this element is associated with a table (even if that table “belongs” to another element).to_json(minimal)Convert this class to JSON form. to_simple(minimal)Convert this class to a simple python type suitable for serialization. Attributes Documentation
-
RecordClass¶ The
DimensionRecordsubclass used to hold records for this element (type).Because
DimensionRecordsubclasses are generated dynamically, this type cannot be imported directly and hence can only be obtained from this attribute.
-
alternateKeys¶ Additional unique key fields for this dimension that are not the primary key (
NamedValueAbstractSetofFieldSpec).If this dimension has required dependencies, the keys of those dimensions are also included in the unique constraints defined for these alternate keys.
-
alwaysJoin¶ If
True, always include this element in any query or data ID in which itsrequireddimensions appear, because it defines a relationship between those dimensions that must always be satisfied.
-
dimensions¶ The union of
requiredandimplied, with all elements inrequiredbefore any elements inimplied.This differs from
self.graph.dimensionsboth 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.- as in
-
governor¶ The
GovernorDimensionthat is a required dependency of this element, orNoneif there is no such dimension (GovernorDimensionorNone).
-
graph¶ Minimal graph that includes this element (
DimensionGraph).self.graph.requiredincludes all dimensions whose primary key values are sufficient (often necessary) to uniquely identifyself(includingselfifisinstance(self, Dimension).self.graph.impliedincludes all dimensions also identified (possibly recursively) by this set.
-
implied¶ 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 (
NamedValueSetofFieldSpec).
-
primaryKey¶ The primary key field for this dimension (
FieldSpec).Note that the database primary keys for dimension tables are in general compound; this field is the only field in the database primary key that is not also a foreign key (to a required dependency dimension table).
-
required¶ 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
selfare also used to form foreign keys.For
Dimensioninstances, this should be exactly the same asgraph.required, but that may not be true forDimensionElementinstances in general. When they differ, there are multiple combinations of dimensions that uniquely identify this element, but this one is more direct.
-
topology¶ The relationship families to which this endpoint belongs, keyed by the category for that family.
-
uniqueKeys¶ All fields that can individually be used to identify records of this element, given the primary keys of all required dependencies (
NamedValueAbstractSetofFieldSpec).
Methods Documentation
-
classmethod
from_json(json_str: str, universe: Optional[DimensionUniverse] = None, registry: Optional[Registry] = None) → SupportsSimple¶ Convert a JSON string created by
to_jsonand 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().
Returns: - constructed : Any
Newly-constructed object.
- json_str :
-
classmethod
from_simple(simple: str, universe: Optional[DimensionUniverse] = None, registry: Optional[Registry] = None) → DimensionElement¶ Construct a new object from the data returned from the
to_simplemethod.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
Noneif universe is provided explicitly.
Returns: - dataId :
DimensionElement Newly-constructed object.
- simple :
-
hasTable() → bool¶ Return
Trueif this element is associated with a table (even if that table “belongs” to another element).
-
to_json(minimal: bool = False) → str¶ Convert this class to JSON form.
The class type is not recorded in the JSON so the JSON decoder must know which class is represented.
Parameters: - minimal :
bool, optional Use minimal serialization. Requires Registry to convert back to a full type.
Returns: - json :
str The class in JSON string format.
- minimal :
-