Skip to main content

Native Python ASPRS LAS read/write library

Project description

Laspy

Laspy is a python library for reading, modifying and creating LAS LiDAR files.

Laspy is compatible with Python 3.8+.

Features

  • LAS support.
  • LAZ support via lazrs or laszip backend.
  • LAS/LAZ streamed/chunked reading/writting.
  • COPC support over files.
  • COPC support over https with requests package.
  • CRS support via pyproj package.

Examples

Directly read and write las

import laspy

las = laspy.read('filename.las')
las.points = las.points[las.classification == 2]
las.write('ground.laz')

Open data to inspect header (opening only reads the header and vlrs)

import laspy

with laspy.open('filename.las') as f:
    print(f"Point format:       {f.header.point_format}")
    print(f"Number of points:   {f.header.point_count}")
    print(f"Number of vlrs:     {len(f.header.vlrs)}")

Use the 'chunked' reading & writing features

import laspy

with laspy.open('big.laz') as input_las:
    with laspy.open('ground.laz', mode="w", header=input_las.header) as ground_las:
        for points in input_las.chunk_iterator(2_000_000):
            ground_las.write_points(points[points.classification == 2])

Appending points to existing file

import laspy

with laspy.open('big.laz') as input_las:
    with laspy.open('ground.laz', mode="a") as ground_las:
        for points in input_las.chunk_iterator(2_000_000):
            ground_las.append_points(points[points.classification == 2])

API Documentation and tutorials are available at ReadTheDocs.

Installation

Laspy can be installed either with pip:

pip install laspy # without LAZ support
# Or
pip install laspy[laszip] # with LAZ support via LASzip
# Or
pip install laspy[lazrs] # with LAZ support via lazrs

Changelog

See CHANGELOG.md

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

laspy-2.5.3.tar.gz (1.6 MB view details)

Uploaded Source

Built Distribution

laspy-2.5.3-py3-none-any.whl (85.2 kB view details)

Uploaded Python 3

File details

Details for the file laspy-2.5.3.tar.gz.

File metadata

  • Download URL: laspy-2.5.3.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.8

File hashes

Hashes for laspy-2.5.3.tar.gz
Algorithm Hash digest
SHA256 4ad698914358ea5a096da52e69bceccd320d9ddfb367480a5c2b5e086db812b7
MD5 76886af0f65d18f27bd5103b33603d60
BLAKE2b-256 e12d7d850b1f06988e998aed5f5b03bf3ba0d43758aa8b2fedd0f2519b1e23c5

See more details on using hashes here.

File details

Details for the file laspy-2.5.3-py3-none-any.whl.

File metadata

  • Download URL: laspy-2.5.3-py3-none-any.whl
  • Upload date:
  • Size: 85.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.8

File hashes

Hashes for laspy-2.5.3-py3-none-any.whl
Algorithm Hash digest
SHA256 350144ed2d1392d1967c4f33ee59b31ecd72506f7728b7f5207676c09d2e3699
MD5 8e44447abc79327dd30e903fdd5861aa
BLAKE2b-256 0d7c6a96a86f194a68b671fd2c1c881bed1ddaef467321a1b19e1111bc145a31

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page