Work with geo-temporal data

Use the Flux Geo package to filter geo-temporal data and group by geographic location or track.

The Geo package is experimental and subject to change at any time. By using it, you agree to the risks of experimental functions.

To work with geo-temporal data:

  1. Import the experimental/geo package.

    1. import "experimental/geo"
  2. Load geo-temporal data. See below for sample geo-temporal data.

  3. Do one or more of the following:

Shape data to work with the Geo package

Functions in the Flux Geo package require lat and lon fields and an s2_cell_id tag. Rename latitude and longitude fields and generate S2 cell ID tokens.

  1. import "experimental/geo"
  2. sampleGeoData
  3. |> geo.shapeData(latField: "latitude", lonField: "longitude", level: 10)

Filter geo-temporal data by region

Use the geo.filterRows function to filter geo-temporal data by box-shaped, circular, or polygonal geographic regions.

  1. import "experimental/geo"
  2. sampleGeoData
  3. |> geo.filterRows(
  4. region: {lat: 30.04, lon: 31.23, radius: 200.0},
  5. strict: true
  6. )

Group geo-temporal data

Use the geo.groupByArea() to group geo-temporal data by area and geo.asTracks() to group data into tracks or routes.

  1. import "experimental/geo"
  2. sampleGeoData
  3. |> geo.groupByArea(newColumn: "geoArea", level: 5)
  4. |> geo.asTracks(groupBy: ["id"],sortBy: ["_time"])

Sample data

Many of the examples in this section use a sampleGeoData variable that represents a sample set of geo-temporal data. The Bird Migration Sample Data available on GitHub provides sample geo-temporal data that meets the requirements of the Flux Geo package.

Load annotated CSV sample data

Use the experimental csv.from() function to load the sample bird migration annotated CSV data from GitHub:

  1. import `experimental/csv`
  2. sampleGeoData = csv.from(
  3. url: "https://github.com/influxdata/influxdb2-sample-data/blob/master/bird-migration-data/bird-migration.csv"
  4. )

csv.from(url: ...) downloads sample data each time you execute the query (~1.3 MB). If bandwidth is a concern, use the to() function to write the data to a bucket, and then query the bucket with from().

Write sample data to InfluxDB with line protocol

Use curl and the influx write command to write bird migration line protocol to InfluxDB. Replace example-bucket with your destination bucket:

  1. curl https://raw.githubusercontent.com/influxdata/influxdb2-sample-data/master/bird-migration-data/bird-migration.line \
  2. --output ./tmp-data
  3. influx write -b example-bucket @./tmp-data
  4. rm -f ./tmp-data

Use Flux to query the bird migration data and assign it to the sampleGeoData variable:

  1. sampleGeoData = from(bucket: "example-bucket")
  2. |> range(start: 2019-01-01T00:00:00Z, stop: 2019-12-31T23:59:59Z)
  3. |> filter(fn: (r) => r._measurement == "migration")