Time / Temporal Layer

Extract time component from datetime values as duration since midnight, similar to datetime.time() in Python or TIME() in SQL.

Example extractions:

DateTime ValueTime ComponentDuration Since Midnight
2024-01-15 00:00:0000:00:000 seconds
2024-01-15 12:30:4512:30:4545045 seconds
2024-01-15 23:59:5923:59:5986399 seconds
2024-01-15 15:45:30.50015:45:30.50056730.5 seconds

Common applications:

  • Daily pattern analysis
  • Time-based filtering
  • Schedule optimization
  • Operating hours analysis
  • Shift timing calculations
  • Time slot allocation
Table
0
0
Table

Transforms

[, ...]

Select

column

DateTime column to extract time from. Returns time-of-day component as duration, preserving any sub-second precision in the source data.

Name for the new column. If not provided, the system generates a unique name. If AsColumn matches an existing column, the existing column is replaced. The name should follow valid column naming conventions.