Skip to main content
This page provides information about working with spatial data in CockroachDB.

Supported data types

Supported data types include:
  • Geometric objects such as , , and in 2-dimensional space. These are projected onto the flat surface of a plane and are represented in SQL by the GEOMETRY data type.
  • Geographic objects, which are also made up of , , , etc., in 2-dimensional space. They are projected onto the surface of a sphere and are represented in SQL by the GEOGRAPHY data type. (Technically, they are projected onto a spheroid: “a sphere with a bulge”). The spheroid projection means that:
    • The X and Y coordinates of 2-dimensional points are longitude and latitude values.
    • The paths between geographic objects are not straight lines; they are curves, and so the distances between objects are calculated using great circle math.

Compatibility

Just as CockroachDB strives for , our spatial data support is designed to be as compatible as possible with the functionality provided by the PostGIS extension. CockroachDB is compatible with PostGIS Version 3.0 and up. CockroachDB does not implement the full list of PostGIS built-in functions and operators. Also, (see the Performance section below). For a list of the spatial functions CockroachDB supports, see . If your application needs support for functions that are not yet implemented, please contact Support. For a list of other known limitations, see .

ORM compatibility

The following ORM spatial libraries are fully compatible with CockroachDB’s spatial features:
Most PostGIS-compatible client libraries are incompatible with CockroachDB’s spatial features without an adapter.

Troubleshooting

For general CockroachDB troubleshooting information, see . If you need help troubleshooting an issue with our spatial support, please get in touch using our .

Performance

In order to avoid full table scans, make sure to add to any columns that are accessed as part of a predicate in the clause. For geospatial columns, the index will only be used if the column is accessed using an index-accelerated geospatial function from the list below (all of these functions work on GEOMETRY data types; a * means that a function also works on GEOGRAPHY data types):
  • (*)
  • (*)
  • ST_ContainsProperly
  • ST_Crosses
  • ST_DWithin (*)
  • ST_DFullyWithin
  • (*)
To use a version of a function from the list above that will explicitly not use the index, add an underscore (_) to the beginning of the function name, e.g., . You can check which queries are using which indexes using the statement. For more information about general query tuning (including index usage), see . The syntax for adding an to a geometry column is CREATE INDEX index_name ON table_name USING GIST (column_name). For example, to add an index to the geom column of the :
This creates a (spatial) on the geom column. Because CockroachDB is a scale-out, multi-node database, our spatial indexing strategy is based on a space-filling curve/quad-tree design (also known as “divide the space”), rather than the R-Tree data structure used by some other spatial databases (also known as “divide the objects”). Other databases that use a “divide the space” strategy include Microsoft SQL Server and MongoDB. For more detailed information about how CockroachDB’s spatial indexes work, see . If you encounter behavior that you think is due to a performance issue, please get in touch using our .

Examples

Load NYC data for the PostGIS tutorial

Follow the steps below to load the SQL for the NYC data used in the Introduction to PostGIS tutorial.
CockroachDB can work with the tutorial up to Chapter 22, with the following exceptions:
  • Do not try to load Shapefiles via the GUI as shown in the tutorial. Instead, follow the steps below to load the SQL data directly into CockroachDB. (We have already converted the tutorial Shapefiles to SQL for you.)
  • CockroachDB does not support GML or KML data.
  • CockroachDB does not support SVG.

Before you begin

  • Install a build of CockroachDB with support for spatial data by following the instructions at .
  • and connect to that cluster from a :
    Leave this shell open for use in the examples below.

Step 1. Load the NYC data

Clone the data set:
Load the SQL files into your CockroachDB cluster:
The command above will take a few minutes to run.

Step 2. Follow the PostGIS tutorial

When the cluster is finished loading the data, open a SQL shell and start working through the Introduction to PostGIS tutorial:

Use a sample Shapefile dataset

This page has instructions for querying spatial data imported into CockroachDB. On this page, we use a sample from the National Oceanic and Atmospheric Administration.

Before you begin

  • Install a build of CockroachDB with support for spatial data by following the instructions at .
  • and connect to that cluster from a :
    Leave this shell open for use in the example below.

Step 1. Import spatial data

Import some sample spatial data into CockroachDB by following the instructions at .

Step 2. Query spatial data

After you have imported , you can query the spatial data from SQL. For example, we may be interested in the 1999 Oklahoma tornado outbreak, which is described by Wikipedia as:
a significant tornado outbreak that affected much of the Central and parts of the Eastern United States, with the highest record-breaking wind speeds of 302 ± 22 mph (486 ± 35 km/h). During this week-long event, 154 tornadoes touched down (including one in Canada), more than half of them on May 3 and 4 when activity reached its peak over Oklahoma, Kansas, Nebraska, Texas, and Arkansas.
According to the wiki page linked above, there were 152 tornadoes confirmed between May 2-8, 1999 (one in Canada). We can try to verify this number against the NWS’s tornado data set with the following query:
It might be interesting to look into why these numbers are different! Next, let’s get a list of starting points for all of the tornadoes in the outbreak that started in Oklahoma:
We can see that almost half of all of the tornadoes in this outbreak began in Oklahoma. It might be interesting to draw these points on a map. The image below shows the points from the query above drawn as a simple polygon on a map of Oklahoma. The boxes around the polygon show the coverings for the polygon. 1999 Oklahoma tornado outbreak map view (Map data © 2020 Google)

See also