vortex-geo 0.76.0

Geospatial encodings and layouts for Vortex files
Documentation
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

//! Arrow interop tests for the geospatial extension types, exercising the session wiring set up
//! by [`crate::initialize`].

mod point;
mod wkb;

use std::sync::LazyLock;

use vortex_session::VortexSession;

/// A session with the geospatial types and functions registered.
static SESSION: LazyLock<VortexSession> = LazyLock::new(|| {
    let session = vortex_array::array_session();
    crate::initialize(&session);
    session
});