Metadata-Version: 2.1
Name: lidario
Version: 0.1.0
Summary: High-level toolbox to manipulate LIDAR raster and point cloud
Home-page: https://github.com/joffreybvn/lidario
Author: Joffrey Bienvenu
Author-email: joffreybvn@gmail.com
License: MIT
Description: # Lidario
        
        [![Generic badge](https://img.shields.io/badge/python-2.7%20%7C%203.6%20%7C%203.7%20%7C%203.8%20%7C%203.9-blue)](https://www.python.org/downloads/release/python-380/)
        
        High-level python utilities to manipulate LIDAR raster and point cloud.
        
        
        ### Installing
        Install and update using pip:
        
        ```Shell
        pip install lidario
        ```
        
        ### Quick start
        
        **lidario.Translator** transform a given data structure (ie: *a raster*), to a point cloud (ie: *a numpy array*).
        
        ```Python
        import lidario as lio
        
        # Translate a raster to a numpy point cloud.
        translator = lio.Translator("geotiff", "np")
        point_cloud = translator.translate("/path/to/file.tif")
        
        # point_cloud: np.array([...])
        ```
        
        In this example, we initialize a **Translator** object to convert a *geotiff* file into a *numpy array* cloud point.
        Then, we use this object to effectively convert a *tif* file.
        
        ## About the author
        **Joffrey Bienvenu**, Machine Learning student @ [Becode](https://becode.org/).
         - Website: https://joffreybvn.be
         - Github: https://github.com/Joffreybvn 
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
