UNPKG

@loaders.gl/pcd

Version:

Framework-independent loader for the PCD format

37 lines (31 loc) 952 B
// loaders.gl // SPDX-License-Identifier: MIT // Copyright (c) vis.gl contributors import type {Loader, LoaderOptions} from '@loaders.gl/loader-utils'; import {PCDMesh} from './lib/pcd-types'; // __VERSION__ is injected by babel-plugin-version-inline // @ts-ignore TS2304: Cannot find name '__VERSION__'. const VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest'; export type PCDLoaderOptions = LoaderOptions & { pcd?: { /** Override the URL to the worker bundle (by default loads from unpkg.com) */ workerUrl?: string; }; }; /** * Worker loader for PCD - Point Cloud Data */ export const PCDLoader = { dataType: null as unknown as PCDMesh, batchType: null as never, name: 'PCD (Point Cloud Data)', id: 'pcd', module: 'pcd', version: VERSION, worker: true, extensions: ['pcd'], mimeTypes: ['text/plain'], options: { pcd: {} } } as const satisfies Loader<PCDMesh, never, PCDLoaderOptions>;