Interface GeoparquetDescriptionExperimental

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

Properties

bbox?: readonly number[]

Dataset bbox from validated GeoParquet metadata.

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.

rowGroupCount?: number

Footer-derived Parquet row-group count.

schema: readonly HonuaFieldInfo[]

Field schema, mirroring HonuaFieldInfo.