geopackage-ts
    Preparing search index...

    Interface GeometryData

    Represents the fully parsed contents of a GeoPackage geometry binary blob.

    This structure mirrors the GeoPackage Binary Geometry header fields together with the decoded WKB geometry payload.

    interface GeometryData {
        byteOrder: ByteOrder;
        empty: boolean;
        envelope: Envelope | null;
        extended: boolean;
        geometry: Geometry | null;
        srsId: number;
    }
    Index

    Properties

    byteOrder: ByteOrder

    The byte order used for numeric values in the binary blob.

    empty: boolean

    Whether the geometry is flagged as empty in the header.

    envelope: Envelope | null

    The bounding envelope stored in the header, or null if no envelope is present.

    When writing, if this is null the envelope will be computed automatically from the geometry.

    extended: boolean

    Whether the GeoPackage Binary Geometry uses the extended format.

    When true, the blob may contain extension-specific data beyond the standard WKB payload.

    geometry: Geometry | null

    The decoded geometry, or null if the blob is flagged as empty.

    srsId: number

    Spatial Reference System identifier for this geometry (matches gpkg_spatial_ref_sys.srs_id).