Interface DecodedGeoArrowRowExperimental

interface DecodedGeoArrowRow {
    dictionaryValue?: null | string;
    featureId?: number;
    geometry:
        | null
        | GeoArrowPosition
        | GeoArrowLineString
        | GeoArrowPolygon;
    timestamp?: null | bigint;
}

Properties

dictionaryValue?: null | string
featureId?: number
geometry:
    | null
    | GeoArrowPosition
    | GeoArrowLineString
    | GeoArrowPolygon
timestamp?: null | bigint