Firebolt’s geospatial capabilities are currently in public preview. We are gathering feedback and further refining this feature.
GEOGRAPHY data type
This topic describes the Firebolt implementation of the GEOGRAPHY
data type.
Overview
The GEOGRAPHY
data type represents geospatial data on the earth’s surface. It represents Points, LineStrings, Polygons, or combinations of these. Points in Firebolt’s GEOGRAPHY
data type represent points on the WGS84 reference spheroid (SRID 4326). All edges between points in LineStrings and Polygons are geodesics, meaning they represent the shortest path between points along the Earth’s curvature. Functions that use the GEOGRAPHY
data type model the Earth as a sphere with a radius of 6,371,008 meters.
GEOGRAPHY types in Firebolt
Firebolt supports the following GEOGRAPHY
types, with examples provided in the Well-Known Text (WKT) format for spatial data representation:
- Point: A 0-dimensional object representing a single location in coordinate space.
- Example:
POINT (1 2)
- Example:
- LineString: A 1-dimensional line made up of a contiguous sequence of line segments, where each segment connects two points. The end of one segment forms the start of the next.
- Example:
LINESTRING (1 2, 3 4, 5 6)
- Example:
- Polygon: A 2-dimensional area, defined by an outer boundary (shell) and optionally one or more inner boundaries (holes).
- Example:
POLYGON ((0 0 ,4 0 ,4 4 ,0 4 ,0 0 ), (1 1 ,2 1 ,2 2 ,1 2 ,1 1 )
- Example:
- MultiPoint: A collection of multiple Points.
- Example:
MULTIPOINT ((0 0), (1 2))
- Example:
- MultiLineString: A collection of multiple LineStrings.
- Example:
MULTILINESTRING ((0 0,1 1,1 2), (2 3,3 2,5 4))
- Example:
- MultiPolygon: A collection of Polygons that do not overlap or share adjacent boundaries, although they may touch at finite Points.
- Example:
MULTIPOLYGON (((1 5, 5 5, 5 1, 1 1, 1 5)), ((6 5, 9 1, 6 1, 6 5)))
- Example:
- GeometryCollection: A mixed collection of Geographies.
- Example:
GEOMETRYCOLLECTION (POINT(2 3), LINESTRING(2 3, 3 4))
- Example:
Input and output
Firebolt supports creating GEOGRAPHY
from the industry standard GeoJSON, Well-Known Text (WKT), and Well-Known Binary (WKB) representations, as well as the extended formats EWKT and EWKB introduced by the PostGIS extension. See the corresponding function documentations for further detail.
Cast from BYTEA
The cast from BYTEA
to GEOGRAPHY
behaves exactly like the ST_GEOGFROMWKB function.
Cast to BYTEA
The cast from GEOGRAPHY
to BYTEA
behaves exactly like the ST_ASEWKB function.
Cast from TEXT
The cast from TEXT
to GEOGRAPHY
automatically detects the decoding used and supports the Extended Well-Known Text (EWKT), GeoJSON, and hex-encoded Extended Well-Known Binary (EWKB) formats. It behaves exactly like ST_GEOGFROMTEXT for Well-Known Text (WKT) inputs, like ST_GEOGFROMGEOJSON for GeoJSON inputs, and like ST_GEOGFROMWKB(DECODE(input, ‘HEX’)) for hex-encoded Well-Known Binary (WKB) inputs.
Cast to TEXT
The cast from GEOGRAPHY
to TEXT
returns the hexadecimal representation of the output of the ST_ASEWKB function in upper case letters.
Normalization
For all input formats, Firebolt applies normalization steps to the input. These steps ensure that Firebolt can perform operations efficiently and correctly.
- All shapes that overlap a Polygon will be removed. This means that Polygons may be merged if they overlap and LineStrings may be cut to only include the parts outside of any Polygons.
- Duplicate Points in MultiPoints and GeometryCollections are removed.
- Duplicate vertices in LineStrings are removed.
- Any empty shapes will be removed.
- Polygon orientations are adjusted such that the interior of the Polygon is the smaller possible option. This means that any Polygon can cover at most half of the earth.
Invalid inputs
Additionally, Firebolt fixes some otherwise invalid inputs when reading:
- Polygons are split at self-intersections.
- Degenerate parts of Polygons are removed, potentially splitting the Polygon. Parts of Polygons are considered degenerate if they collapse to a single line or point.
- A special case of removing these degeneracies occurs when Polygon holes share a boundary edge with the Polygon. In this case, the hole is removed from the Polygon and the outer boundary is reshaped accordingly, but only if the edge vertices of the hole are also vertices of the Polygon.
Snapping
Functions that determine relations between GEOGRAPHY
objects perform a process called snapping on their inputs. During snapping, any points of the inputs objects that are less than 1 micrometer apart from each other are moved to be exactly the same. For example, this means that a Point that is less than 1 micrometer away from a Polygon is treated as being on the Polygon’s boundary and two Polygons that are separated by less than 1 micrometer are treated as intersecting.
Comparison, sorting, and grouping
Objects with a GEOGRAPHY
data type cannot be compared. This means that ORDER BY
or comparison operators are not supported on GEOGRAPHY
columns.
This also means that GEOGRAPHY
columns cannot be used in GROUP BY
clauses because they cannot be compared for equality.
Driver version requirements
The following minimum driver versions are required to use the GEOGRAPHY
data type: