Skip to content

Instantly share code, notes, and snippets.

@Jap8nted
Jap8nted / geoparquet.cpp
Created February 18, 2023 12:24 — forked from jpswinski/geoparquet.cpp
Minimal example C++ code to write a GeoParquet file using Apache Arrow
/*
* File: geoparquet.cpp
*
* Purpose: A minimal example to build a GeoParquet file using Apache Arrow.
*
* Prerequisites: The Apache Arrow library is needed and can be installed as follows
* $ git clone https://github.com/apache/arrow.git
* $ cd arrow/cpp
* $ mkdir build
* $ cd build