Interface CompileOptionsExperimental

interface CompileOptions {
    columns?: readonly string[];
    geometry?: GeometryColumnPlan;
    geometryAlias?: string;
    sources: readonly string[];
}

Properties

columns?: readonly string[]

All non-geometry column names available in the file, used to expand a returnGeometry-only projection and to validate that requested outFields are addressable. When omitted, * (minus geometry) is used.

Geometry column plan (from metadata detection), if the file is spatial.

geometryAlias?: string

Output alias for the projected GeoJSON geometry. Defaults to geometry.

sources: readonly string[]

Parquet file URL(s) / glob(s).