@loaders.gl/las
Version:
Framework-independent loader for the LAS and LAZ formats
17 lines • 442 B
JavaScript
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
/**
* LAS (LASer) point cloud format
*/
export const LASFormat = {
name: 'LAS',
id: 'las',
module: 'las',
extensions: ['las', 'laz'], // LAZ is the "compressed" flavor of LAS,
mimeTypes: ['application/octet-stream'], // TODO - text version?
text: false,
binary: true,
tests: ['LASF']
};
//# sourceMappingURL=las-format.js.map