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"].
    1. import "experimental/geo"
    2. sampleGeoData
    3. |> geo.filterRows(region: {lat: 30.04, lon: 31.23, radius: 200.0})
    4. groupBy: ["id"],
    5. sortBy: ["_time"]

    Related articles