Skip to content

Spatial Extension

The spatial extension provides support for geospatial data processing in DuckDB. For an overview of the extension, see our blog post.

Installing and Loading

To install the spatial extension, run:

INSTALL spatial;

Note that the spatial extension is not autoloadable. Therefore, you need to load it before using it:

LOAD spatial;