Group geo-temporal data
- Specify a new column to store the unique area identifier for each point with the
newColumn
parameter.
Group data by track or route
- Specify columns that uniquely identify each track or route with the
groupBy
parameter. - Specify which columns to sort by with the
sortBy
parameter. Default is["_time"]
.
import "experimental/geo"
sampleGeoData
|> geo.filterRows(region: {lat: 30.04, lon: 31.23, radius: 200.0})
groupBy: ["id"],
sortBy: ["_time"]