@loaders.gl/las
Version:
Framework-independent loader for the LAS and LAZ formats
46 lines (39 loc) • 1.17 kB
text/typescript
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// LASER (LAS) FILE FORMAT
import type {Loader, LoaderOptions} from '@loaders.gl/loader-utils';
import type {LASMesh} from './lib/las-types';
import {LASFormat} from './las-format';
// __VERSION__ is injected by babel-plugin-version-inline
// @ts-ignore TS2304: Cannot find name '__VERSION__'.
const VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest';
export type LASLoaderOptions = LoaderOptions & {
las?: {
shape?: 'mesh' | 'columnar-table' | 'arrow-table';
fp64?: boolean;
skip?: number;
colorDepth?: number | string;
/** Override the URL to the worker bundle (by default loads from unpkg.com) */
workerUrl?: string;
};
onProgress?: Function;
};
/**
* Loader for the LAS (LASer) point cloud format
*/
export const LASWorkerLoader = {
...LASFormat,
dataType: null as unknown as LASMesh,
batchType: null as never,
version: VERSION,
worker: true,
options: {
las: {
shape: 'mesh',
fp64: false,
skip: 1,
colorDepth: 8
}
}
} as const satisfies Loader<LASMesh, never, LASLoaderOptions>;