The xeokit SDK enables the import of 3D models from LAS,
a widely used file format for exchanging 3D point cloud data.
The LAS format is a standardized binary format that stores LiDAR-generated point cloud data.
It includes metadata such as headers, point attributes, and supports both compressed and uncompressed data.
LAS is widely used in industries like surveying, mapping, and urban planning.
To import an LAS model into xeokit, use the loadLAS function to load the file into
a SceneModel and a DataModel.
Installation
npminstall@xeokit/sdk
Usage
The following example demonstrates how to use loadLAS.
xeokit LAS/LAZ Importer
Import 3D LiDAR point cloud datasets into xeokit.
The xeokit SDK enables the import of 3D models from LAS, a widely used file format for exchanging 3D point cloud data.
The LAS format is a standardized binary format that stores LiDAR-generated point cloud data. It includes metadata such as headers, point attributes, and supports both compressed and uncompressed data. LAS is widely used in industries like surveying, mapping, and urban planning.
To import an LAS model into xeokit, use the loadLAS function to load the file into a SceneModel and a DataModel.
Installation
Usage
The following example demonstrates how to use loadLAS.
First, we create a Viewer with a WebGLRenderer and a Scene to manage the 3D scene.
We also define a single View to render the scene on a canvas. A CameraControl is attached to the view, allowing interaction via mouse and touch input.
Next, we create a SceneModel to store the model geometry and materials. Finally, we use loadLAS to load an LAS/LAZ file into the SceneModel.