A utility to convert E57 point cloud files to LAS format. It is based on the E57 crate and the LAS crate.
e57_to_las
is an open-source tool designed to convert point cloud files in the E57 format to the LAS format. The conversion retains all the relevant point data and associated metadata, making it easier for users to work with point cloud data in environments that primarily support LAS. We use is to convert E57 files to LAS for use in Potree for web-based point cloud visualization.
rayon
for faster conversion.stations.json
) containing station points after conversion.bash
e57_to_las [OPTIONS]
-p, --path <path>
: The path to the input E57 file.-o, --output <output>
: The output directory for the converted LAS files (default: ./
).-P, --progress
: Display a progress bar (default: off).-T, --threads <threads>
: Number of threads for parallel processing (default: 0 = max possible).-P
option is provided.stations.json
in the output directory.If you'd like to contribute to the development of this tool, please create an issue or pull request on our GitHub repository. All contributions are welcome!
Here are some of the main dependencies used:
rayon
: Parallelismclap
: Command-line argument parsinge57
: E57 file format readerlas
: LAS file format writerindicatif
: Progress baruuid
: For GUID processingserde
: For serialization and deserialization of dataOpen-source MIT. See LICENSE for details.