geo.ST_Distance() function

The geo.ST_Distance() function is experimental and subject to change at any time. By using this function, you accept the risks of experimental functions.

The geo.ST_Distance() function returns the distance between the specified region and specified geographic information system (GIS) geometry. Define distance units with the geo.units option.

*Function type: Transformation*

  1. import "experimental/geo"
  2. geo.ST_Distance(
  3. region: {lat: 40.7, lon: -73.3, radius: 20.0},
  4. geometry: {lon: 39.7515, lat: 15.08433}
  5. )
  6. // Returns 10734.184618677662 (km)

Parameters

region

The region to test. Specify record properties for the shape. See Region definitions.

*Data type: Record*

geometry

The GIS geometry to test. Can be either point or linestring geometry. See GIS geometry definitions.

*Data type: Record*

Examples

Test if geographic points are inside of a region
  1. import "experimental/geo"
  2. region = {
  3. minLat: 40.51757813,
  4. maxLat: 40.86914063,
  5. minLon: -73.65234375,
  6. maxLon: -72.94921875
  7. }
  8. data
  9. |> geo.toRows()
  10. |> map(fn: (r) => ({
  11. r with st_contains: ST_Distance(region: region, geometry: {lat: r.lat, lon: r.lon})
  12. }))
Calculate the distance between geographic points and a region
  1. import "experimental/geo"
  2. region = {
  3. minLat: 40.51757813,
  4. maxLat: 40.86914063,
  5. minLon: -73.65234375,
  6. maxLon: -72.94921875
  7. }
  8. data
  9. |> geo.toRows()
  10. |> map(fn: (r) => ({
  11. r with st_distance: ST_Distance(region: region, geometry: {lat: r.lat, lon: r.lon})
  12. }))

Related articles

functions geo GIS