ClickHouse/docs/en/sql-reference/functions/geo.md

555 lines
14 KiB
Markdown
Raw Normal View History

2020-04-03 13:23:32 +00:00
---
toc_priority: 62
2020-06-19 10:21:39 +00:00
toc_title: Geographical Coordinates
2020-04-03 13:23:32 +00:00
---
2020-03-20 10:10:48 +00:00
# Functions for Working with Geographical Coordinates {#functions-for-working-with-geographical-coordinates}
2020-03-20 10:10:48 +00:00
## greatCircleDistance {#greatcircledistance}
Calculates the distance between two points on the Earths surface using [the great-circle formula](https://en.wikipedia.org/wiki/Great-circle_distance).
2020-03-20 10:10:48 +00:00
``` sql
greatCircleDistance(lon1Deg, lat1Deg, lon2Deg, lat2Deg)
```
**Input parameters**
- `lon1Deg` — Longitude of the first point in degrees. Range: `[-180°, 180°]`.
- `lat1Deg` — Latitude of the first point in degrees. Range: `[-90°, 90°]`.
- `lon2Deg` — Longitude of the second point in degrees. Range: `[-180°, 180°]`.
- `lat2Deg` — Latitude of the second point in degrees. Range: `[-90°, 90°]`.
Positive values correspond to North latitude and East longitude, and negative values correspond to South latitude and West longitude.
**Returned value**
2020-03-20 10:10:48 +00:00
The distance between two points on the Earths surface, in meters.
Generates an exception when the input parameter values fall outside of the range.
**Example**
2020-03-20 10:10:48 +00:00
``` sql
SELECT greatCircleDistance(55.755831, 37.617673, -55.755831, -37.617673)
```
2020-03-20 10:10:48 +00:00
``` text
┌─greatCircleDistance(55.755831, 37.617673, -55.755831, -37.617673)─┐
│ 14132374.194975413 │
└───────────────────────────────────────────────────────────────────┘
```
## greatCircleAngle {#greatcircleangle}
Calculates the central angle between two points on the Earths surface using [the great-circle formula](https://en.wikipedia.org/wiki/Great-circle_distance).
``` sql
greatCircleAngle(lon1Deg, lat1Deg, lon2Deg, lat2Deg)
```
**Input parameters**
- `lon1Deg` — Longitude of the first point in degrees.
- `lat1Deg` — Latitude of the first point in degrees.
- `lon2Deg` — Longitude of the second point in degrees.
- `lat2Deg` — Latitude of the second point in degrees.
**Returned value**
The central angle between two points in degrees.
**Example**
``` sql
SELECT greatCircleAngle(0, 0, 45, 0) AS arc
```
``` text
┌─arc─┐
│ 45 │
└─────┘
```
2020-03-20 10:10:48 +00:00
## pointInEllipses {#pointinellipses}
Checks whether the point belongs to at least one of the ellipses.
Coordinates are geometric in the Cartesian coordinate system.
2020-03-20 10:10:48 +00:00
``` sql
pointInEllipses(x, y, x₀, y₀, a₀, b₀,...,xₙ, yₙ, aₙ, bₙ)
```
**Input parameters**
- `x, y` — Coordinates of a point on the plane.
- `xᵢ, yᵢ` — Coordinates of the center of the `i`-th ellipsis.
- `aᵢ, bᵢ` — Axes of the `i`-th ellipsis in units of x, y coordinates.
The input parameters must be `2+4⋅n`, where `n` is the number of ellipses.
**Returned values**
`1` if the point is inside at least one of the ellipses; `0`if it is not.
**Example**
2020-03-20 10:10:48 +00:00
``` sql
SELECT pointInEllipses(10., 10., 10., 9.1, 1., 0.9999)
```
2020-03-20 10:10:48 +00:00
``` text
┌─pointInEllipses(10., 10., 10., 9.1, 1., 0.9999)─┐
│ 1 │
└─────────────────────────────────────────────────┘
```
2020-03-20 10:10:48 +00:00
## pointInPolygon {#pointinpolygon}
Checks whether the point belongs to the polygon on the plane.
2020-03-20 10:10:48 +00:00
``` sql
pointInPolygon((x, y), [(a, b), (c, d) ...], ...)
```
**Input values**
- `(x, y)` — Coordinates of a point on the plane. Data type — [Tuple](../../sql-reference/data-types/tuple.md) — A tuple of two numbers.
- `[(a, b), (c, d) ...]` — Polygon vertices. Data type — [Array](../../sql-reference/data-types/array.md). Each vertex is represented by a pair of coordinates `(a, b)`. Vertices should be specified in a clockwise or counterclockwise order. The minimum number of vertices is 3. The polygon must be constant.
- The function also supports polygons with holes (cut out sections). In this case, add polygons that define the cut out sections using additional arguments of the function. The function does not support non-simply-connected polygons.
**Returned values**
`1` if the point is inside the polygon, `0` if it is not.
If the point is on the polygon boundary, the function may return either 0 or 1.
**Example**
2020-03-20 10:10:48 +00:00
``` sql
SELECT pointInPolygon((3., 3.), [(6, 0), (8, 4), (5, 8), (0, 2)]) AS res
```
2020-03-20 10:10:48 +00:00
``` text
┌─res─┐
│ 1 │
└─────┘
```
2020-03-20 10:10:48 +00:00
## geohashEncode {#geohashencode}
Encodes latitude and longitude as a geohash-string, please see (http://geohash.org/, https://en.wikipedia.org/wiki/Geohash).
2020-03-20 10:10:48 +00:00
``` sql
geohashEncode(longitude, latitude, [precision])
```
**Input values**
- longitude - longitude part of the coordinate you want to encode. Floating in range`[-180°, 180°]`
- latitude - latitude part of the coordinate you want to encode. Floating in range `[-90°, 90°]`
- precision - Optional, length of the resulting encoded string, defaults to `12`. Integer in range `[1, 12]`. Any value less than `1` or greater than `12` is silently converted to `12`.
**Returned values**
- alphanumeric `String` of encoded coordinate (modified version of the base32-encoding alphabet is used).
**Example**
2020-03-20 10:10:48 +00:00
``` sql
SELECT geohashEncode(-5.60302734375, 42.593994140625, 0) AS res
```
2020-03-20 10:10:48 +00:00
``` text
┌─res──────────┐
│ ezs42d000000 │
└──────────────┘
```
2020-03-20 10:10:48 +00:00
## geohashDecode {#geohashdecode}
Decodes any geohash-encoded string into longitude and latitude.
**Input values**
- encoded string - geohash-encoded string.
**Returned values**
- (longitude, latitude) - 2-tuple of `Float64` values of longitude and latitude.
**Example**
2020-03-20 10:10:48 +00:00
``` sql
SELECT geohashDecode('ezs42') AS res
```
2020-03-20 10:10:48 +00:00
``` text
┌─res─────────────────────────────┐
│ (-5.60302734375,42.60498046875) │
└─────────────────────────────────┘
```
2020-03-18 18:43:51 +00:00
## geoToH3 {#geotoh3}
Returns [H3](https://uber.github.io/h3/#/documentation/overview/introduction) point index `(lon, lat)` with specified resolution.
2020-03-20 10:10:48 +00:00
[H3](https://uber.github.io/h3/#/documentation/overview/introduction) is a geographical indexing system where Earths surface divided into even hexagonal tiles. This system is hierarchical, i. e. each hexagon on the top level can be splitted into seven even but smaller ones and so on.
This index is used primarily for bucketing locations and other geospatial manipulations.
2020-03-20 10:10:48 +00:00
**Syntax**
2020-03-20 10:10:48 +00:00
``` sql
geoToH3(lon, lat, resolution)
```
2020-03-20 10:10:48 +00:00
**Parameters**
- `lon` — Longitude. Type: [Float64](../../sql-reference/data-types/float.md).
- `lat` — Latitude. Type: [Float64](../../sql-reference/data-types/float.md).
- `resolution` — Index resolution. Range: `[0, 15]`. Type: [UInt8](../../sql-reference/data-types/int-uint.md).
**Returned values**
- Hexagon index number.
- 0 in case of error.
Type: `UInt64`.
**Example**
Query:
2020-03-20 10:10:48 +00:00
``` sql
SELECT geoToH3(37.79506683, 55.71290588, 15) as h3Index
```
Result:
2020-03-20 10:10:48 +00:00
``` text
┌────────────h3Index─┐
│ 644325524701193974 │
└────────────────────┘
```
2020-03-20 10:10:48 +00:00
## geohashesInBox {#geohashesinbox}
Returns an array of geohash-encoded strings of given precision that fall inside and intersect boundaries of given box, basically a 2D grid flattened into array.
**Input values**
- longitude\_min - min longitude, floating value in range `[-180°, 180°]`
- latitude\_min - min latitude, floating value in range `[-90°, 90°]`
- longitude\_max - max longitude, floating value in range `[-180°, 180°]`
- latitude\_max - max latitude, floating value in range `[-90°, 90°]`
- precision - geohash precision, `UInt8` in range `[1, 12]`
Please note that all coordinate parameters should be of the same type: either `Float32` or `Float64`.
**Returned values**
- array of precision-long strings of geohash-boxes covering provided area, you should not rely on order of items.
- \[\] - empty array if *min* values of *latitude* and *longitude* arent less than corresponding *max* values.
2020-03-20 10:10:48 +00:00
Please note that function will throw an exception if resulting array is over 10000000 items long.
**Example**
2020-03-20 10:10:48 +00:00
``` sql
SELECT geohashesInBox(24.48, 40.56, 24.785, 40.81, 4) AS thasos
```
2020-03-20 10:10:48 +00:00
``` text
┌─thasos──────────────────────────────────────┐
│ ['sx1q','sx1r','sx32','sx1w','sx1x','sx38'] │
└─────────────────────────────────────────────┘
```
2020-03-20 10:10:48 +00:00
## h3GetBaseCell {#h3getbasecell}
Returns the base cell number of the H3 index.
**Syntax**
2020-03-20 10:10:48 +00:00
``` sql
h3GetBaseCell(index)
```
**Parameter**
- `index` — Hexagon index number. Type: [UInt64](../../sql-reference/data-types/int-uint.md).
**Returned value**
- Hexagon base cell number.
Type: [UInt8](../../sql-reference/data-types/int-uint.md).
**Example**
Query:
2020-03-20 10:10:48 +00:00
``` sql
SELECT h3GetBaseCell(612916788725809151) as basecell;
```
Result:
2020-03-20 10:10:48 +00:00
``` text
┌─basecell─┐
│ 12 │
└──────────┘
```
2020-03-20 10:10:48 +00:00
## h3HexAreaM2 {#h3hexaream2}
Returns average hexagon area in square meters at the given resolution.
2020-03-20 10:10:48 +00:00
**Syntax**
2020-03-20 10:10:48 +00:00
``` sql
h3HexAreaM2(resolution)
```
**Parameter**
- `resolution` — Index resolution. Range: `[0, 15]`. Type: [UInt8](../../sql-reference/data-types/int-uint.md).
**Returned value**
- Area in square meters.
Type: [Float64](../../sql-reference/data-types/float.md).
**Example**
Query:
2020-03-20 10:10:48 +00:00
``` sql
SELECT h3HexAreaM2(13) as area;
```
Result:
2020-03-20 10:10:48 +00:00
``` text
┌─area─┐
│ 43.9 │
└──────┘
```
2020-03-20 10:10:48 +00:00
## h3IndexesAreNeighbors {#h3indexesareneighbors}
Returns whether or not the provided H3 indexes are neighbors.
**Syntax**
2020-03-20 10:10:48 +00:00
``` sql
h3IndexesAreNeighbors(index1, index2)
```
2020-03-20 10:10:48 +00:00
**Parameters**
- `index1` — Hexagon index number. Type: [UInt64](../../sql-reference/data-types/int-uint.md).
- `index2` — Hexagon index number. Type: [UInt64](../../sql-reference/data-types/int-uint.md).
**Returned value**
- `1` — Indexes are neighbours.
- `0` — Indexes are not neighbours.
Type: [UInt8](../../sql-reference/data-types/int-uint.md).
**Example**
Query:
2020-03-20 10:10:48 +00:00
``` sql
SELECT h3IndexesAreNeighbors(617420388351344639, 617420388352655359) AS n;
```
Result:
2020-03-20 10:10:48 +00:00
``` text
┌─n─┐
│ 1 │
└───┘
```
2020-03-20 10:10:48 +00:00
## h3ToChildren {#h3tochildren}
Returns an array of child indexes for the given H3 index.
**Syntax**
2020-03-20 10:10:48 +00:00
``` sql
h3ToChildren(index, resolution)
```
2020-03-20 10:10:48 +00:00
**Parameters**
- `index` — Hexagon index number. Type: [UInt64](../../sql-reference/data-types/int-uint.md).
- `resolution` — Index resolution. Range: `[0, 15]`. Type: [UInt8](../../sql-reference/data-types/int-uint.md).
**Returned values**
- Array of the child H3-indexes.
Type: [Array](../../sql-reference/data-types/array.md)([UInt64](../../sql-reference/data-types/int-uint.md)).
**Example**
Query:
2020-03-20 10:10:48 +00:00
``` sql
SELECT h3ToChildren(599405990164561919, 6) AS children;
```
Result:
2020-03-20 10:10:48 +00:00
``` text
┌─children───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
│ [603909588852408319,603909588986626047,603909589120843775,603909589255061503,603909589389279231,603909589523496959,603909589657714687] │
└────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
```
2020-03-20 10:10:48 +00:00
## h3ToParent {#h3toparent}
Returns the parent (coarser) index containing the given H3 index.
**Syntax**
2020-03-20 10:10:48 +00:00
``` sql
h3ToParent(index, resolution)
```
2020-03-20 10:10:48 +00:00
**Parameters**
- `index` — Hexagon index number. Type: [UInt64](../../sql-reference/data-types/int-uint.md).
- `resolution` — Index resolution. Range: `[0, 15]`. Type: [UInt8](../../sql-reference/data-types/int-uint.md).
**Returned value**
- Parent H3 index.
Type: [UInt64](../../sql-reference/data-types/int-uint.md).
**Example**
Query:
2020-03-20 10:10:48 +00:00
``` sql
SELECT h3ToParent(599405990164561919, 3) as parent;
```
Result:
2020-03-20 10:10:48 +00:00
``` text
┌─────────────parent─┐
│ 590398848891879423 │
└────────────────────┘
```
2020-03-20 10:10:48 +00:00
## h3ToString {#h3tostring}
Converts the `H3Index` representation of the index to the string representation.
2020-03-20 10:10:48 +00:00
``` sql
h3ToString(index)
```
**Parameter**
- `index` — Hexagon index number. Type: [UInt64](../../sql-reference/data-types/int-uint.md).
**Returned value**
- String representation of the H3 index.
Type: [String](../../sql-reference/data-types/string.md).
**Example**
2020-03-20 10:10:48 +00:00
Query:
2020-03-20 10:10:48 +00:00
``` sql
SELECT h3ToString(617420388352917503) as h3_string;
```
Result:
2020-03-20 10:10:48 +00:00
``` text
┌─h3_string───────┐
│ 89184926cdbffff │
└─────────────────┘
```
2020-03-20 10:10:48 +00:00
## stringToH3 {#stringtoh3}
Converts the string representation to the `H3Index` (UInt64) representation.
**Syntax**
2020-03-20 10:10:48 +00:00
``` sql
stringToH3(index_str)
```
**Parameter**
- `index_str` — String representation of the H3 index. Type: [String](../../sql-reference/data-types/string.md).
**Returned value**
- Hexagon index number. Returns 0 on error. Type: [UInt64](../../sql-reference/data-types/int-uint.md).
**Example**
Query:
2020-03-20 10:10:48 +00:00
``` sql
SELECT stringToH3('89184926cc3ffff') as index;
```
Result:
2020-03-20 10:10:48 +00:00
``` text
┌──────────────index─┐
│ 617420388351344639 │
└────────────────────┘
```
2020-03-20 10:10:48 +00:00
## h3GetResolution {#h3getresolution}
Returns the resolution of the H3 index.
**Syntax**
2020-03-20 10:10:48 +00:00
``` sql
h3GetResolution(index)
```
**Parameter**
- `index` — Hexagon index number. Type: [UInt64](../../sql-reference/data-types/int-uint.md).
**Returned value**
- Index resolution. Range: `[0, 15]`. Type: [UInt8](../../sql-reference/data-types/int-uint.md).
**Example**
Query:
2020-03-20 10:10:48 +00:00
``` sql
SELECT h3GetResolution(617420388352917503) as res;
```
Result:
2020-03-20 10:10:48 +00:00
``` text
┌─res─┐
│ 9 │
└─────┘
```
[Original article](https://clickhouse.tech/docs/en/sql-reference/functions/geo/) <!--hide-->