Returns the type IDs of all events in a trajectory object as an integer array.
Syntax
integer[] ST_eventTypes(trajectory traj);Parameters
| Parameter | Type | Description |
|---|---|---|
traj | trajectory | The trajectory object. |
Examples
WITH traj AS (
SELECT '{"trajectory":{"version":1,"type":"STPOINT","leafcount":2,"start_time":"2010-01-01 11:30:00","end_time":"2010-01-01 12:30:00","spatial":"SRID=4326;LINESTRING(1 1,3 5)","timeline":["2010-01-01 11:30:00","2010-01-01 12:30:00"],"attributes":{"leafcount":2,"velocity":{"type":"integer","length":4,"nullable":true,"value":[1,null]},"speed":{"type":"float","length":8,"nullable":true,"value":[null,1.0]},"angle":{"type":"string","length":64,"nullable":true,"value":["test",null]}, "tngel2":{"type":"timestamp","length":8,"nullable":true,"value":["2010-01-01 12:30:00",null]},"bearing":{"type":"bool","length":1,"nullable":true,"value":[null,true]}},"events":[{"1":"Fri Jan 01 14:30:00 2010"},{"2":"Fri Jan 01 14:30:00 2010"}]}}'::trajectory a)
SELECT ST_eventTypes(a) FROM traj;Output:
st_eventtypes
---------------
{1,2}The trajectory in this example contains two events with type IDs 1 and 2.
该文章对您有帮助吗?