Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The trimTemporal function

TextIf the temporal attribute(s) on which an expression in a select operator is evaluated is a GenericTemporalType, i.e. a map from points in times to values, the trimTemporal function is useful.

Code Block
testSelect = SELECT({
	predicate = 'tdistance > 15000'                
},calcDistance)
              
testTrim = MAP({
	expressions = ['TrimTemporal(tdistance, ValidTimes)']
},testSelect)

...