Interface GeoArrowPointColumnInputExperimental

interface GeoArrowPointColumnInput {
    coordinateLayout?: GeoArrowCoordinateLayout;
    crs?: GeoArrowCrs;
    crsType?: GeoArrowCrsType;
    dimensions?: GeoArrowDimensions;
    edges?: GeoArrowEdges;
    field?: string;
    kind: "point";
    values: readonly (null | GeoArrowPosition)[];
}

Hierarchy

  • GeoArrowGeometryColumnBase
    • GeoArrowPointColumnInput

Properties

coordinateLayout?: GeoArrowCoordinateLayout

Both official layouts are supported; separated is the GeoArrow-recommended default.

crsType?: GeoArrowCrsType

Disambiguates a serialized CRS value; invalid without crs.

dimensions?: GeoArrowDimensions
field?: string
kind
values: readonly (null | GeoArrowPosition)[]