Filters objects matching all points of the given track (works only on track type data). It allows users to specify a particular track to find all other points in the table that fall within specified ranges-spatial and temporal-of all points of the given track. Additionally, the user can specify another track to see if the two intersect (or go close to each other within the specified ranges). The user also has the flexibility of using different metrics for the spatial distance calculation: Euclidean (flat geometry) or Great Circle (spherical geometry to approximate the Earth's surface distances). The filtered points are stored in a newly created result set. The return value of the function is the number of points in the resultant set (view).
This operation is synchronous, meaning that a response will not be returned until all the objects are fully available.
Input Parameter Description
Name | Type | Description | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
table_name | string | Name of the table on which the filter by track operation will be performed. Must be a currently existing table with track semantic type. | ||||||||
view_name | string | If provided, then this will be the name of the view containing the results. Has the same naming restrictions as tables. Default value is ''. | ||||||||
track_id | string | The ID of the track which will act as the filtering points. Must be an existing track within the given table. | ||||||||
target_track_ids | array of strings | Up to one track ID to intersect with the "filter" track. If any provided, it must be an valid track ID within the given set. | ||||||||
options | map of strings | Optional parameters. Default value is an empty map ( {} ).
|
Output Parameter Description
Name | Type | Description |
---|---|---|
count | long | The number of records passing the series filter. |