@loaders.gl/pcd
Version:
Framework-independent loader for the PCD format
24 lines (23 loc) • 590 B
JavaScript
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// __VERSION__ is injected by babel-plugin-version-inline
// @ts-ignore TS2304: Cannot find name '__VERSION__'.
const VERSION = typeof "4.3.3" !== 'undefined' ? "4.3.3" : 'latest';
/**
* Worker loader for PCD - Point Cloud Data
*/
export const PCDLoader = {
dataType: null,
batchType: null,
name: 'PCD (Point Cloud Data)',
id: 'pcd',
module: 'pcd',
version: VERSION,
worker: true,
extensions: ['pcd'],
mimeTypes: ['text/plain'],
options: {
pcd: {}
}
};