Type Alias ColumnarGeoJsonGeometryExperimental

ColumnarGeoJsonGeometry: {
    coordinates: GeoArrowPoint | GeoArrowLineString | GeoArrowPolygon;
    type: ColumnarGeoJsonGeometryType;
}

GeoJSON geometry emitted onto a converted feature.

Positions carry two components for xy and three for xyz geometry, in [x, y] / [x, y, z] order. xym and xyzm batches are rejected rather than silently stripped, because GeoJSON has no representation for an M coordinate and dropping it would be a lossy conversion presented as a successful one.