Skip to content
pyautark (soon)

@urban-toolkit/autk-db


@urban-toolkit/autk-db / CsvGeometryLayerType

Type Alias: CsvGeometryLayerType

CsvGeometryLayerType = Extract<LayerType, "points" | "polylines" | "polygons">

Defined in: use-cases/load-csv/interfaces.ts:103

Restricts CSV-derived geometry to vector layer families supported by the database.

CSV imports can only produce point, polyline, or polygon layers because raster outputs are not inferred from tabular rows.

Example

ts
const layerType: CsvGeometryLayerType = 'points';

Released under the MIT License.