Interface GeoArrowGeometryBuffersExperimental

interface GeoArrowGeometryBuffers {
    coordinateLayout: GeoArrowCoordinateLayout;
    coordinates: Readonly<Record<
        | "x"
        | "y"
        | "z"
        | "m"
        | "interleaved", undefined | Float64Array>>;
    crs?: GeoArrowCrs;
    crsType?: GeoArrowCrsType;
    dimensions: GeoArrowDimensions;
    edges: GeoArrowEdges;
    field: string;
    kind: GeoArrowGeometryKind;
    offsets?: Int32Array;
    ringOffsets?: Int32Array;
    validity?: Uint8Array;
}

Properties

coordinateLayout: GeoArrowCoordinateLayout
coordinates: Readonly<Record<
    | "x"
    | "y"
    | "z"
    | "m"
    | "interleaved", undefined | Float64Array>>
crsType?: GeoArrowCrsType
dimensions: GeoArrowDimensions
field: string
offsets?: Int32Array
ringOffsets?: Int32Array
validity?: Uint8Array