Data structure holding results from the LPKX geoprocessing task.

interface GeoProcessedLpkxData {
    bbox: number[];
    createdFeatureClasses: string;
    lyrxJson: LyrxResult;
    outCrs?: string;
    workspaceId: string;
}

Properties

bbox: number[]

The bounding box result.

createdFeatureClasses: string

The data source result.

lyrxJson: LyrxResult

The parsed Lyrx result.

outCrs?: string

The output CRS result.

workspaceId: string

The workspace result.