TimespanProxy¶
- class lsst.daf.butler.queries.expression_factory.TimespanProxy(expression: IntColumnLiteral | StringColumnLiteral | FloatColumnLiteral | HashColumnLiteral | UUIDColumnLiteral | DateTimeColumnLiteral | TimespanColumnLiteral | RegionColumnLiteral | DimensionKeyReference | DimensionFieldReference | DatasetFieldReference | UnaryExpression | BinaryExpression)¶
Bases:
ExpressionProxyAn
ExpressionProxyspecialized for timespan columns and literals.- Parameters:
- expression
tree.ColumnExpression Expression that backs this proxy.
- expression
Attributes Summary
An expression representing the lower bound (inclusive).
An expression representing the upper bound (exclusive).
A boolean expression that tests whether this expression is NULL.
Methods Summary
overlaps(other)Return a boolean expression representing an overlap test between this timespan and another timespan or a datetime.
Attributes Documentation
- begin¶
An expression representing the lower bound (inclusive).
- end¶
An expression representing the upper bound (exclusive).
- is_null¶
A boolean expression that tests whether this expression is NULL.
Methods Documentation
- overlaps(other: TimespanProxy | Timespan | astropy.time.Time) tree.Predicate¶
Return a boolean expression representing an overlap test between this timespan and another timespan or a datetime.
- Parameters:
- other
TimespanProxyorTimespan Expression or literal to compare to.
- other
- Returns:
- predicate
tree.Predicate Boolean expression object.
- predicate