Point table |
The Point table contains entries for each of the rows that appear in a vehicle list. These entries represent all of the valid points that have been received from the vehicle, across all of its operational statuses (driving, idling, or stopped).
Note |
---|
For field-level details, see the Point columns column descriptions and the Point diagnostics. |
The following tips can help you get the most out of your Point table queries:
When you write templates that access this table, follow these requirements:
Specify the Symbolic Name for the table version to use:
TableID = Point-2.0
Specify an Intent that this table supports:
Input templates: In your [Output] section, be sure to map an input value to every table column that is flagged as being a primary key or required.
[Filter] UnitId(ExternalIdName) = Equals("ABC123") # You can either use the Equals function as shown # or use the In function: In([Id1,Id2,Id3]) Time = Between(TimeStart,TimeEnd) # Timestamp variables from User or Calculated section
[Filter] Time = Between(TimeStart,TimeEnd) # Timestamp variables from User or Calculated section
[Filter] Time = GreaterThan(TimeStart)
[Filter] DriverId = Equals(12345) # You can either use the Equals function as shown # or use the In function: In(["Id1","Id2","Id3"]) Time = Between(TimeStart,TimeEnd) # Timestamp variables from User or Calculated section. # You can either use the Between Function as shown # or use the GreaterThan function: GreaterThan(TimeStart)
[Filter] Tag = In(["Id1", "Id2", "Id3"])