Geospatial grid system

Learn how to use geospatial grid systems to cluster geospatial data.

Geospatial data can be analyzed efficiently using grid systems to create geospatial clusters. You can use geospatial tools to aggregate, cluster, partition, reduce, join, and index geospatial data. These tools improve query runtime performance, reduce stored data size, and visualize aggregated geospatial data.

The following methods of geospatial clustering are supported:

The core functionalities of these methods are:

  • Calculate hash\index\cell token of geospatial coordinate. Different geospatial coordinates that belong to same cell will have same cell token value.
  • Calculate center point of hash\index\cell token. This point is useful because it may represent all the values in the cell.
  • Calculate cell polygon. Calculating cell polygons is useful in cell visualization or other calculations, for example, distance, or point in polygon checks.

Compare methods

CriteriaGeohashS2 CellH3 Cell
Levels of hierarchy183116
Cell shapeRectangleRectangleHexagon
Cell edgesstraightgeodesicstraight
Projection systemNone. Encodes latitude and longitude.Cube face centered quadratic transform.Icosahedron face centered gnomonic.
Neighbors count886
Noticeable featureCommon prefixes indicate points proximity.31 hierarchy levels.Cell shape is hexagonal.
PerformanceSuperbSuperbFast
Cover polygon with cellsNot supportedSupportedNot supported
Cell parentNot supportedNot SupportedSupported
Cell childrenNot supportedNot SupportedSupported
Cell ringsNot supportedNot SupportedSupported

Geohash functions

Function Name
geo_point_to_geohash()
geo_geohash_to_central_point()
geo_geohash_neighbors()
geo_geohash_to_polygon()

S2 Cell functions

Function Name
geo_point_to_s2cell()
geo_s2cell_to_central_point()
geo_s2cell_neighbors()
geo_s2cell_to_polygon()
geo_polygon_to_s2cells()

H3 Cell functions

Function Name
geo_point_to_h3cell()
geo_h3cell_to_central_point()
geo_h3cell_neighbors()
geo_h3cell_to_polygon()
geo_h3cell_parent()
geo_h3cell_children()
geo_h3cell_rings()