Skip to content
LidarKit

What is a LAZ file?

A losslessly compressed LiDAR point cloud — and how to open one.

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

SoftwareOpens LAZNotes
QGIS 3.18+YesFree. Native point cloud support via PDAL.
ArcGIS ProYesThrough LAS dataset tools.
CloudCompareYesFree, cross-platform. Good for inspection and cleanup.
PDALYesFree command-line library. The scripting choice.
LAStools / laszipYesFrom the authors of the LAZ format.
lidR (R)YesFree. Standard for forestry and research workflows.
laspy (Python)YesFree. Needs the lazrs or laszip extra installed.
ArcMapNoConvert to LAS first.
AutoCAD / Civil 3DVariesVersion-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.

Frequently asked questions

What is a LAZ file?
A LAZ file is a LiDAR point cloud stored in the LASzip compression format — a lossless, open compression of the ASPRS LAS format. It contains exactly the same data as the equivalent LAS file, typically at 10 to 20 percent of the size.
How do I open a LAZ file?
Use software that reads LAZ natively: QGIS 3.18 or later, ArcGIS Pro, CloudCompare, or a browser-based point cloud viewer. If your tool refuses the file, decompress it to LAS first — LAZ and LAS hold identical data, so nothing is lost either way.
Can I open a LAZ file in AutoCAD or Civil 3D?
Not always directly — support depends on the version and on the ReCap ingestion path in use. Converting to uncompressed LAS first is the reliable route, and it is why LAZ-to-LAS conversion is such a common request among CAD users.
Is LAZ the same as LAS?
The data is the same; the encoding is not. LAZ is a compressed container for exactly the LAS byte layout, so converting between them changes only the file size. LAZ is the better choice for storage and transfer, LAS for tools that cannot read compressed input.
Why is my LAZ file so much smaller than the LAS it came from?
Because neighbouring LiDAR points are highly correlated, and LASzip encodes the differences between them rather than each full value. That routinely yields an 80 to 90 percent reduction with nothing discarded — it is lossless, not lossy compression.