When you actually need this
LAZ is the better format to store and share — it is lossless and typically five to ten times smaller. You generally need an uncompressed LAS for one reason: something in your toolchain refuses the compressed form. The common cases:
| Software | Reads LAZ? | What to do |
|---|---|---|
| QGIS 3.18+ | Yes | Native via PDAL. If it fails, the build may lack PDAL support — convert to LAS. |
| QGIS below 3.18 | No | Convert to LAS, or upgrade. |
| ArcGIS Pro | Yes | Via LAS dataset tools. Convert LAS in Geoprocessing also does it, but needs a valid spatial reference. |
| ArcMap | No | Convert to LAS first. |
| AutoCAD / Civil 3D | Partly | ReCap ingestion varies by version; uncompressed LAS is the reliable path. |
| CloudCompare | Yes | No conversion needed. |
The problem to watch for: a lost coordinate system
The failure that costs people the most time is not a conversion that errors — it is one that succeeds and silently drops the coordinate reference system. Your points end up in the right relative positions and the wrong place on Earth, and you usually find out much later.
The CRS lives in the file's variable length records, as GeoTIFF keys or a WKT string. Several conversion routes rewrite the header and discard user VLRs along the way. This converter preserves the header, VLRs and EVLRs byte-for-byte, which is the specific reason it assembles the container itself instead of delegating to laz-perf's own file writer.
Other ways to do it
Worth knowing, because they are better than a browser tool for some jobs:
- laszip — the reference tool, from the authors of the LAZ format.
laszip -i input.laz -o output.las. Ideal if you are already on the command line. - PDAL —
pdal translate input.laz output.las. The right choice for scripted or batch work, and for anything that needs reprojection or filtering in the same pass. - CloudCompare — open the LAZ, then File → Save as LAS. Convenient if you also want to look at the cloud.
- This page — when you do not want to install anything, or the data cannot be uploaded to a third party, or the file is larger than an online converter will accept.