Metadata-Version: 1.2
Name: pylas
Version: 0.1.3
Summary: Las/Laz reading and writing in python
Home-page: https://github.com/tmontaigu/pylas
Author: Thomas Montaigu
Author-email: thomas.montaigu@laposte.net
License: BSD 3-Clause
Description: pylas
        -----
        
        Another way of reading LAS/LAZ in Python.
        
        Example
        -------
        
        .. code:: python
        
            import pylas
        
            # Directly read and write las 
            las = pylas.read('filename.las')
            las = pylas.convert(point_format_id=2)
            las.write('converted.las')
        
            # Open data to inspect header and then read
            with pylas.open('filename.las') as f:
                if f.header.number_of_point_records < 10 ** 8:
                    las = f.read()
            print(las.vlrs)
        
        
        Dependencies & Requirements
        ---------------------------
        
        Python 3 Only.
        
        lazperf_ is an optionnal, but recommended dependency that allows pylas to read and write compressed LAZ files.
        
        .. _lazperf: https://github.com/hobu/laz-perf
        
        
        
        Installation
        ------------
        
        ::
        
            pip install pylas
        
        
        
Platform: UNKNOWN
Requires-Python: >=3
