Interface GeoparquetDescriptionExperimental

interface GeoparquetDescription {
    crs?: string;
    geometryColumns: readonly string[];
    geometryEncoding?: GeometryEncoding;
    rowEstimate?: number;
    schema: readonly HonuaFieldInfo[];
}

Properties

crs?: string

CRS identifier.

geometryColumns: readonly string[]

Geometry column name(s) (currently one; array for forward-compat).

geometryEncoding?: GeometryEncoding

How the geometry is stored.

rowEstimate?: number

Footer-derived row estimate.

schema: readonly HonuaFieldInfo[]

Field schema, mirroring HonuaFieldInfo.