mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 08:35:20 +00:00
e2287959a8
* Geo functions - en/ru sync. * Fixed bug with levels. * Apply suggestions from code review Co-authored-by: Ivan Blinkov <github@blinkov.ru> Co-authored-by: BayoNet <da-daos@yandex.ru> * Geo functions splitted into 3 files. * Links fixed. * Link fixed. * Anchor fixed. * Add into TOC. * Temporarily removed anchors. * Working on TOC. * Links to original article. * TOC and links in English and Russian. * TOC in English, content in index. * Link fixed. * TOC in Russian, with content in index file. * Added index file to geo functions * fixed links in ru Co-authored-by: Olga Revyakina <revolg@yandex-team.ru> Co-authored-by: Ivan Blinkov <github@blinkov.ru> Co-authored-by: BayoNet <da-daos@yandex.ru> Co-authored-by: Sergei Shtykov <bayonet@yandex-team.ru>
141 lines
4.5 KiB
Markdown
141 lines
4.5 KiB
Markdown
---
|
||
toc_title: Geographical Coordinates
|
||
toc_priority: 62
|
||
---
|
||
|
||
|
||
# Functions for Working with Geographical Coordinates {#geographical-coordinates}
|
||
|
||
## greatCircleDistance {#greatcircledistance}
|
||
|
||
Calculates the distance between two points on the Earth’s surface using [the great-circle formula](https://en.wikipedia.org/wiki/Great-circle_distance).
|
||
|
||
``` 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**
|
||
|
||
The distance between two points on the Earth’s surface, in meters.
|
||
|
||
Generates an exception when the input parameter values fall outside of the range.
|
||
|
||
**Example**
|
||
|
||
``` sql
|
||
SELECT greatCircleDistance(55.755831, 37.617673, -55.755831, -37.617673)
|
||
```
|
||
|
||
``` text
|
||
┌─greatCircleDistance(55.755831, 37.617673, -55.755831, -37.617673)─┐
|
||
│ 14132374.194975413 │
|
||
└───────────────────────────────────────────────────────────────────┘
|
||
```
|
||
|
||
## greatCircleAngle {#greatcircleangle}
|
||
|
||
Calculates the central angle between two points on the Earth’s 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 │
|
||
└─────┘
|
||
```
|
||
|
||
## pointInEllipses {#pointinellipses}
|
||
|
||
Checks whether the point belongs to at least one of the ellipses.
|
||
Coordinates are geometric in the Cartesian coordinate system.
|
||
|
||
``` 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**
|
||
|
||
``` sql
|
||
SELECT pointInEllipses(10., 10., 10., 9.1, 1., 0.9999)
|
||
```
|
||
|
||
``` text
|
||
┌─pointInEllipses(10., 10., 10., 9.1, 1., 0.9999)─┐
|
||
│ 1 │
|
||
└─────────────────────────────────────────────────┘
|
||
```
|
||
|
||
## pointInPolygon {#pointinpolygon}
|
||
|
||
Checks whether the point belongs to the polygon on the plane.
|
||
|
||
``` 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**
|
||
|
||
``` sql
|
||
SELECT pointInPolygon((3., 3.), [(6, 0), (8, 4), (5, 8), (0, 2)]) AS res
|
||
```
|
||
|
||
``` text
|
||
┌─res─┐
|
||
│ 1 │
|
||
└─────┘
|
||
```
|
||
|
||
|
||
[Original article](https://clickhouse.tech/docs/en/sql-reference/functions/geo/coordinates) <!--hide-->
|