Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

pixel8earth/python

Open more actions menu
 
 

Repository files navigation

PDAL

The PDAL Python extension allows you to process data with PDAL into Numpy arrays. Additionally, you can use it to fetch schema and metadata from PDAL operations.

The repository for PDAL's Python extension is available at https://github.com/PDAL/python

It is released independently from PDAL itself as of PDAL 1.7.

Usage

Given the following pipeline, which simply reads an ASPRS LAS file and sorts it by the X dimension:

json = """
{
  "pipeline": [
    "1.2-with-color.las",
    {
        "type": "filters.sort",
        "dimension": "X"
    }
  ]
}"""

import pdal
pipeline = pdal.Pipeline(json)
pipeline.validate() # check if our JSON and options were good
pipeline.loglevel = 8 #really noisy
count = pipeline.execute()
arrays = pipeline.arrays
metadata = pipeline.metadata
log = pipeline.log
https://travis-ci.org/PDAL/python.svg?branch=master https://ci.appveyor.com/api/projects/status/of4kecyahpo8892d

Requirements

  • PDAL 1.7+
  • Python >=2.7 (including Python 3.x)
  • Cython (eg pip install cython)
  • Packaging (eg pip install packaging)

About

PDAL's Python Extension

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • Python 49.6%
  • C++ 48.4%
  • Batchfile 1.5%
  • Shell 0.5%
Morty Proxy This is a proxified and sanitized view of the page, visit original site.