Class GeoParquetDataStoreFactory

  • All Implemented Interfaces:
    DataAccessFactory, DataStoreFactorySpi, Factory

    public class GeoParquetDataStoreFactory
    extends AbstractDuckDBDataStoreFactory
    implements DataStoreFactorySpi
    DataStoreFactory for GeoParquet files, powered by DuckDB.

    This factory creates DataStore instances that can read and query GeoParquet format files, both local and remote. GeoParquet is an open format for geospatial data that builds on the Apache Parquet columnar storage format, providing efficient access to large geospatial datasets.

    The implementation uses DuckDB and its extensions (spatial, parquet, httpfs) to handle the heavy lifting of reading and querying Parquet files. This provides excellent performance and compatibility with various storage backends including local files, HTTP/HTTPS, and S3.

    Usage example:

     Map<String, Object> params = new HashMap<>();
     params.put("dbtype", "geoparquet");
     params.put("uri", "file:/path/to/data.parquet");
    
     DataStore store = DataStoreFinder.getDataStore(params);