Specification for storing geospatial vector data (point, line, polygon) in Parquet
GeoParquet
About
This repository defines a specification for how to store geospatial vector data (point, lines, polygons) in Apache Parquet, a popular columnar storage format for tabular data - see this vendor explanation for more on what that means. Our goal is to further standardize how geospatial data is represented in Parquet to enhance geospatial interoperability among tools using Parquet today, and hopefully help push forward what's possible with 'cloud-native geospatial' workflows. There are now more than 20 different tools and libraries in 7 different languages that support GeoParquet, you can learn more at geoparquet.org.
Contributors include developers from GeoPandas, GeoTrellis, OpenLayers, Vis.gl, Voltron Data, Microsoft, CARTO, Planet & Unfolded. Anyone is welcome to join the project, by building implementations, trying it out, giving feedback through issues and contributing to the spec via pull requests. The geoarrow specification is related to GeoParquet and embraces geospatial in Arrow in a compatible way, with this specification focused solely on Parquet. We are an OGC official Standards Working Group and are on the path to be an OGC standard.
The latest stable specification and JSON schema are published at geoparquet.org/releases/.
The community has agreed on this release, but it is still pending OGC approval. We are currently working on the process to get it officially OGC approved as soon as possible by the OGC Membership. Released versions of GeoParquet will not be changed, so if changes are needed for OGC approval, it will be released with a new version number.
The 'dev' versions of the spec are available in this repo:
- Specification (dev version - not stable, go to the stable specification instead)
- JSON Schema
- Examples
geometry and geography types and the GeoParquet 2 specification provides guidance for geospatial tools for these types, along with some optional metadata not covered in the core Parquet specification.
Validating GeoParquet
There are two tools that validate the metadata and the actual data. It is recommended to use one of them to ensure any GeoParquet you produce or are given is completely valid according to the specification:
- GPQ - the
validatecommand generates a report withgpq validate example.parquet. - GDAL/OGR Validation Script - a Python script that can check compliance with
python3 validategeoparquet.py --check-data my_geo.parquet
Goals
There are a few core goals driving the initial development.
- Establish a great geospatial format for workflows that excel with columnar data - Most data science and 'business intelligence' workflows have been moving
- Introduce columnar data formats to the geospatial world - And most of the geospatial world is not yet benefitting from all the breakthroughs in data analysis
- Enable interoperability among cloud data warehouses - BigQuery, Snowflake, Redshift and others all support spatial operations but importing and exporting data
- Persist geospatial data from Apache Arrow - GeoParquet is developed in parallel with a GeoArrow spec, to
And our broader goal is to innovate with 'cloud-native vector' providing a stable base to try out new ideas for cloud-native & streaming workflows.
Features
A quick overview of what GeoParquet supports (or at least plans to support).
- Multiple spatial reference systems - Many tools will use GeoParquet for high-performance analysis, so it's important to be able to use data in its
- Multiple geometry columns - There is a default geometry column, but additional geometry columns can be included.
- Great compression / small files - Parquet is designed to compress very well, so data benefits by taking up less disk space & being more efficient over
- Work with both planar and spherical coordinates - Most cloud data warehouses support spherical coordinates, and so GeoParquet aims to help persist those
- Great at read-heavy analytic workflows - Columnar formats enable cheap reading of a subset of columns, and Parquet in particular enables efficient filtering
- Support for data partitioning - Parquet has a nice ability to partition data into different files for efficiency, and we aim to enable geospatial partitions.
Versioning
As of version 1.0 the specification follows Semantic Versioning, so at that point any breaking change will require the spec to go to the next major version number, e.g. 1.0.0 to 2.0.0.
Current Implementations & Examples
Examples of GeoParquet files following the current spec can be found in the examples/ folder. For information on all the tools and libraries implementing GeoParquet, as well as sample data, see the implementations section of the website.