Metadata-Version: 2.1
Name: lidario
Version: 0.2.0
Summary: High-level python library to manipulate LIDAR raster and point cloud
Home-page: https://lidario.readthedocs.io/
Author: Joffrey Bienvenu
Author-email: joffreybvn@gmail.com
License: MIT
Description: # Lidario
        
        [![Generic badge](https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8%20%7C%203.9-blue)](https://www.python.org/downloads/release/python-380/) [![Travis CI](https://travis-ci.com/Joffreybvn/lidario.svg?branch=master)](https://travis-ci.com/github/Joffreybvn/lidario) [![Documentation Status](https://readthedocs.org/projects/lidario/badge/?version=latest)](https://lidario.readthedocs.io/en/latest/?badge=latest)
        
        High-level python library 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.
        
        ### Going further
        Read the [documentation on ReadTheDocs.io](https://lidario.readthedocs.io/).
        
        ## 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 :: 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
