A LAZ file (.laz) is a LiDAR point cloud stored in the LASzip compression format: a lossless, open compression of the ASPRS LAS format. It holds exactly the same points, attributes and metadata as the equivalent LAS file, usually at 10 to 20 percent of the size.
If a national mapping agency or survey provider handed you LiDAR data, there is a good chance it arrived as LAZ — the size difference is large enough that most public data portals distribute the compressed form.
Which software opens a LAZ file
| Software | Opens LAZ | Notes |
|---|---|---|
| QGIS 3.18+ | Yes | Free. Native point cloud support via PDAL. |
| ArcGIS Pro | Yes | Through LAS dataset tools. |
| CloudCompare | Yes | Free, cross-platform. Good for inspection and cleanup. |
| PDAL | Yes | Free command-line library. The scripting choice. |
| LAStools / laszip | Yes | From the authors of the LAZ format. |
| lidR (R) | Yes | Free. Standard for forestry and research workflows. |
| laspy (Python) | Yes | Free. Needs the lazrs or laszip extra installed. |
| ArcMap | No | Convert to LAS first. |
| AutoCAD / Civil 3D | Varies | Version-dependent. Uncompressed LAS is the reliable path. |
If your software will not open it
Decompress it to LAS. The two formats hold identical data, so this costs you nothing but disk space, and it is usually faster than changing software mid-project.
Convert your LAZ to LAS here — it runs in your browser, so the file is not uploaded anywhere and there is no size limit. Or use laszip -i input.laz -o output.las if you are already at a command line.
Technical detail
- Extension:
.laz. Compressed LAS versions 1.0 through 1.4. - Compression: lossless, using an arithmetic coder over the differences between neighbouring points. There is no quality setting because nothing is discarded.
- Open standard: the specification and reference implementation (LASzip) are public and open source, with independent implementations including laz-perf and PDAL.
- Contents: a public header block, variable length records holding the coordinate reference system, then compressed point records carrying position, intensity, return number, classification, GPS time and any extra bytes.
- Related: COPC (
.copc.laz) is a spatially-indexed reorganisation of LAZ for streaming subsets from cloud storage. Same compression, different layout.