DatabaseDimension¶
- class lsst.daf.butler.DatabaseDimension(name: str, *, required: NamedValueSet[Dimension], implied: NamedValueAbstractSet[Dimension], metadata_columns: NamedValueAbstractSet[IntColumnSpec | StringColumnSpec | FloatColumnSpec | HashColumnSpec | BoolColumnSpec], unique_keys: NamedValueAbstractSet[IntColumnSpec | StringColumnSpec | HashColumnSpec], implied_union_target: str | None, is_cached: bool, doc: str)¶
Bases:
Dimension
,DatabaseDimensionElement
A
Dimension
class that maps directly to a database table or query.- Parameters:
- name
str
Name of the dimension.
- required
NamedValueSet
[Dimension
] Other dimensions whose keys are part of the compound primary key for this dimension’s (logical) table, as well as references to their own tables. The
required
parameter does not includeself
(it can’t, of course), but the corresponding attribute does - it is added by the constructor.- implied
NamedValueAbstractSet
[Dimension
] Other dimensions whose keys are included in this dimension’s (logical) table as foreign keys.
- metadata_columns
NamedValueAbstractSet
[MetadataColumnSpec
] Field specifications for all non-key fields in this dimension’s table.
- unique_keys
NamedValueAbstractSet
[KeyColumnSpec
] Fields that can each be used to uniquely identify this dimension (given values for all required dimensions). The first of these is used as (part of) this dimension’s table’s primary key, while others are used to define unique constraints.
- implied_union_target
str
orNone
If not
None
, the name of an element whose implied values for this element form the set of allowable values.- is_cached
bool
Whether this element’s records should be persistently cached in the client.
- doc
str
Extended description of this element.
- name
Notes
DatabaseDimension
objects may belong to aTopologicalFamily
, but it is the responsibility ofDatabaseTopologicalFamilyConstructionVisitor
to update thetopology
attribute of their members.Attributes Summary
Return the record subclass for this element.
Return alternate keys.
Additional unique key fields for this dimension element that are not the primary key (
NamedValueAbstractSet
ofKeyColumnSpec
).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 primary key field for this dimension (
FieldSpec
).The primary key field for this dimension (
KeyColumnSpec
).Return the required dimensions.
A description of the columns in this element's records and (at least conceptual) table.
Return this endpoint's
SPATIAL
family.Return this endpoint's
TEMPORAL
family.Return the relationship families to which this endpoint belongs.
Return the unique fields.
Descriptions of unique identifiers for this dimension.
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_arrow
(dimensions[, spec])Return an object that converts the primary key value for this dimension to column in an Arrow 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.
- alternateKeys¶
Return alternate keys.
Additional unique key fields for this dimension that are not the primary key (
NamedValueAbstractSet
ofFieldSpec
).If this dimension has required dependencies, the keys of those dimensions are also included in the unique constraints defined for these alternate keys.
- alternate_keys¶
- 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.
- defines_relationships¶
Whether this element’s records define one or more relationships that must be satisfied in rows over dimensions that include it.
- 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
.
- documentation¶
- 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.
- has_own_table¶
Whether this element should have its own table in the database.
- implied¶
- implied_union_target¶
- is_cached¶
- metadata¶
Additional metadata fields included in this element’s table.
(
NamedValueSet
ofFieldSpec
).
- metadata_columns¶
- minimal_group¶
Return minimal dimension group that includes this element.
self.minimal_group.required
includes all dimensions whose primary key values are sufficient (often necessary) to uniquely identifyself
(includingself
ifisinstance(self, Dimension)
.self.minimal_group.implied
includes all dimensions also identified (possibly recursively) by this set.
- name¶
- populated_by¶
- primaryKey¶
Return 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).
- primary_key¶
The primary key field for this dimension (
KeyColumnSpec
).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¶
- schema¶
A description of the columns in this element’s records and (at least conceptual) table.
- spatial¶
- temporal¶
- topology¶
- uniqueKeys¶
Return the unique fields.
All fields that can individually be used to identify records of this element, given the primary keys of all required dependencies (
NamedValueAbstractSet
ofFieldSpec
).
- unique_keys¶
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).
- to_arrow(dimensions: DimensionGroup, spec: KeyColumnSpec | None = None) arrow_utils.ToArrow ¶
Return an object that converts the primary key value for this dimension to column in an Arrow table.
- Parameters:
- dimensions
DimensionGroup
Full set of dimensions over which the rows of the table are unique or close to unique. This is used to determine whether to use Arrow’s dictionary encoding to compress duplicate values.
- spec
KeyColumnSpec
, optional Column specification for this dimension. If not provided, a copy of
primary_key
the the field name replaced with the dimension name will be used, which is appropriate for when this dimension appears in data ID or the dimension record tables of other dimension elements.
- dimensions
- Returns:
- converter
arrow_utils.ToArrow
Converter for this dimension’s primary key.
- converter