DatabaseDimensionCombination¶
- class lsst.daf.butler.DatabaseDimensionCombination(name: str, *, required: NamedValueAbstractSet[Dimension], implied: NamedValueAbstractSet[Dimension], metadata_columns: NamedValueAbstractSet[IntColumnSpec | StringColumnSpec | FloatColumnSpec | HashColumnSpec | BoolColumnSpec], is_cached: bool, always_join: bool, populated_by: Dimension | None, doc: str)¶
- Bases: - DimensionCombination,- DatabaseDimensionElement- A combination class that maps directly to a database table or query. - Parameters:
- namestr
- Name of the dimension. 
- requiredNamedValueAbstractSet[Dimension]
- Dimensions whose keys define the compound primary key for this combinations’s (logical) table, as well as references to their own tables. 
- impliedNamedValueAbstractSet[Dimension]
- Dimensions whose keys are included in this combinations’s (logical) table as foreign keys. 
- metadata_columnsNamedValueAbstractSet[MetadataColumnSpec]
- Field specifications for all non-key fields in this combination’s table. 
- is_cachedbool
- Whether this element’s records should be persistently cached in the client. 
- always_joinbool, optional
- If - True, always include this element in any query or data ID in which its- requireddimensions appear, because it defines a relationship between those dimensions that must always be satisfied.
- populated_byDimensionorNone
- The dimension that this element’s records are always inserted, exported, and imported alongside. 
- docstr
- Extended description of this element. 
 
- name
 - Notes - DatabaseDimensionCombinationobjects may belong to a- TopologicalFamily, but it is the responsibility of- DatabaseTopologicalFamilyConstructionVisitorto update the- topologyattribute of their members.- This class has a lot in common with - DatabaseDimension, but they are expected to diverge in future changes, and the only way to make them share method implementations would be via multiple inheritance. Given the trivial nature of all of those implementations, this does not seem worth the drawbacks (particularly the constraints it imposes on constructor signatures).- Attributes Summary - Return the record subclass for this element. - Additional unique key fields for this dimension element that are not the primary key ( - NamedValueAbstractSetof- KeyColumnSpec).- Indicate if the element should always be included. - Whether this element's records define one or more relationships that must be satisfied in rows over dimensions that include it. - Return all dimensions. - Extended description of this dimension element. - Return the governor dimension. - Return minimal graph that includes this element ( - DimensionGraph).- Whether this element should have its own table in the database. - Return the implied dimensions. - If not - None, another element whose implied values for this element form the set of allowable values.- Whether this element's records should be aggressively cached, because they are small in number and rarely inserted. - Additional metadata fields included in this element's table. - Additional metadata fields included in this element's table. - Return minimal dimension group that includes this element. - Return unique string identifier for this endpoint ( - str).- The dimension that this element's records are always inserted, exported, and imported alongside. - Return the required dimensions. - A description of the columns in this element's records and (at least conceptual) table. - Return this endpoint's - SPATIALfamily.- Return this endpoint's - TEMPORALfamily.- 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 - 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.
 - alternate_keys¶
- Additional unique key fields for this dimension element that are not the primary key ( - NamedValueAbstractSetof- KeyColumnSpec).- This is always empty for elements that are not dimensions. - If this dimension has required dependencies, the keys of those dimensions are also included in the unique constraints defined for these alternate keys. 
 - alwaysJoin¶
 - defines_relationships¶
 - dimensions¶
- Return all dimensions. - The union of - requiredand- implied, with all elements in- requiredbefore any elements in- implied.- 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.
 - documentation¶
 - governor¶
- Return the governor dimension. - This is the - GovernorDimensionthat is a required dependency of this element, or- Noneif there is no such dimension (- GovernorDimensionor- None).
 - graph¶
- Return minimal graph that includes this element ( - DimensionGraph).- self.graph.requiredincludes all dimensions whose primary key values are sufficient (often necessary) to uniquely identify- self(including- selfif- isinstance(self, Dimension).- self.graph.impliedincludes all dimensions also identified (possibly recursively) by this set.
 - has_own_table¶
- Whether this element should have its own table in the database. 
 - implied¶
 - implied_union_target¶
- If not - None, another element whose implied values for this element form the set of allowable values.- For example, in the default dimension universe, the allowed values for - bandis the union of all- bandvalues in the- physical_filtertable, so the- implied_union_targetfor- bandis- physical_filter.
 - is_cached¶
 - metadata¶
- Additional metadata fields included in this element’s table. - ( - NamedValueSetof- FieldSpec).
 - metadata_columns¶
 - minimal_group¶
- Return minimal dimension group that includes this element. - self.minimal_group.requiredincludes all dimensions whose primary key values are sufficient (often necessary) to uniquely identify- self(including- selfif- isinstance(self, Dimension).- self.minimal_group.impliedincludes all dimensions also identified (possibly recursively) by this set.
 - name¶
 - populated_by¶
 - required¶
 - schema¶
- A description of the columns in this element’s records and (at least conceptual) table. 
 - spatial¶
 - temporal¶
 - topology¶
 - 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_jsonand return something of the supplied class.- Parameters:
- json_strstr
- Representation of the dimensions in JSON format as created by - to_json().
- universeDimensionUniverse, optional
- The special graph of all known dimensions. Passed directly to - from_simple().
- registrylsst.daf.butler.Registry, optional
- Registry to use to convert simple name of a DatasetType to a full - DatasetType. Passed directly to- from_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_simplemethod.- Parameters:
- simplestr
- The value returned by - to_simple().
- universeDimensionUniverse
- The special graph of all known dimensions. 
- registrylsst.daf.butler.Registry, optional
- Registry from which a universe can be extracted. Can be - Noneif universe is provided explicitly.
 
- simple
- Returns:
- dataIdDimensionElement
- Newly-constructed object. 
 
- dataId
 
 - hasTable() bool¶
- Indicate if this element is associated with a table. - Return - Trueif this element is associated with a table (even if that table “belongs” to another element).