diff --git a/content/influxdb/v2.0/reference/flux/stdlib/experimental/geo/_index.md b/content/influxdb/v2.0/reference/flux/stdlib/experimental/geo/_index.md index f1ad11ddd..f9be0e9dc 100644 --- a/content/influxdb/v2.0/reference/flux/stdlib/experimental/geo/_index.md +++ b/content/influxdb/v2.0/reference/flux/stdlib/experimental/geo/_index.md @@ -74,6 +74,14 @@ to add `s2_cell_id` tags to data that includes fields with latitude and longitud ) ``` +## Latitude and longitude values +Flux supports latitude and longitude values in **decimal degrees** (WGS 84). + +| Coordinate | Minimum | Maximum | +|:---------- | -------:| -------:| +| Latitude | -90.0 | 90.0 | +| Longitude | -180.0 | 180.0 | + ## Region definitions Many functions in the Geo package filter data based on geographic region. Define geographic regions using the following shapes: @@ -162,7 +170,7 @@ Define GIS geometry using the following: ### linestring Define a geographic linestring path using an object containing the following properties: -- **linestring**: string containing comma-separatedlongitude and latitude +- **linestring**: string containing comma-separated longitude and latitude coordinate pairs (`lon lat,`): ```js diff --git a/content/v2.0/reference/flux/stdlib/experimental/geo/st_dwithin.md b/content/v2.0/reference/flux/stdlib/experimental/geo/st_dwithin.md index 4ee092ee4..011ba846f 100644 --- a/content/v2.0/reference/flux/stdlib/experimental/geo/st_dwithin.md +++ b/content/v2.0/reference/flux/stdlib/experimental/geo/st_dwithin.md @@ -49,7 +49,7 @@ _See [GIS geometry definitions](/v2.0/reference/flux/stdlib/experimental/geo/#gi _**Data type:** Object_ ### distance -Maximum allowed distance between the region and geometry. +Maximum distance allowed between the region and geometry. _Define distance units with the [`geo.units` option](/v2.0/reference/flux/stdlib/experimental/geo/#define-distance-units)._ _**Data type:** Float_