Interface SemanticDuckDbCompileOptions<TRecord, TSpatiality>Experimental

Pure, credential-free inputs for semantic DuckDB compilation.

interface SemanticDuckDbCompileOptions<TRecord, TSpatiality> {
    geometry?: SemanticDuckDbGeometrySource;
    query: SemanticQuery<TRecord, "geoparquet", TSpatiality>;
    resource: GeoParquetResourceHandleV1;
    schema: SourceSchemaV2;
    spatialStrategy?: "exact" | "bbox-envelope";
}

Type Parameters

Properties

query: SemanticQuery<TRecord, "geoparquet", TSpatiality>
spatialStrategy?: "exact" | "bbox-envelope"

Exact by default; bbox reduction is opt-in and always reported as approximate.