Metadata-Version: 2.1
Name: laserfarm
Version: 0.1.5
Summary: Laserchicken Framework for Applications in Research in Macro-ecology
Home-page: https://github.com/eEcoLiDAR/Laserfarm
Author: Netherlands eScience Center
Author-email: team-atlas@esciencecenter.nl
License: Apache 2.0
Keywords: Python,Point cloud
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Description-Content-Type: text/markdown
Requires-Dist: asyncssh
Requires-Dist: dask[complete]
Requires-Dist: fire
Requires-Dist: lazperf
Requires-Dist: numpy
Requires-Dist: pylas
Requires-Dist: laserchicken (>=0.4.1)
Requires-Dist: plyfile
Requires-Dist: pytest
Requires-Dist: webdavclient3
Requires-Dist: PyShp
Requires-Dist: shapely

# Laserfarm

[![Actions Status](https://github.com/eEcoLiDAR/Laserfarm/workflows/build%20and%20test/badge.svg)](https://github.com/eEcoLiDAR/Laserfarm/actions)
[![codecov](https://codecov.io/gh/eEcoLiDAR/Laserfarm/branch/master/graph/badge.svg)](https://codecov.io/gh/eEcoLiDAR/Laserfarm)
[![Documentation Status](https://readthedocs.org/projects/laserfarm/badge/?version=latest)](https://laserfarm.readthedocs.io/en/latest/?badge=latest)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.3842781.svg)](https://doi.org/10.5281/zenodo.3842781)
[![PyPI](https://img.shields.io/pypi/v/laserfarm.svg)](https://pypi.python.org/pypi/laserfarm)
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/4523/badge)](https://bestpractices.coreinfrastructure.org/projects/4523)

Laserfarm (Laserchicken Framework for Applications in Research in Macro-ecology) provides a FOSS wrapper to 
[Laserchicken](https://github.com/eEcoLiDAR/laserchicken) supporting the use of massive LiDAR point cloud data sets for 
macro-ecology, from data preparation to scheduling and execution of distributed processing across a cluster of compute 
nodes.

## Installation

Laserfarm requires the [PDAL](https://pdal.io) and [GDAL](https://gdal.org) libraries and the PDAL Python 
bindings. These packages are most easily installed through `conda` from the `conda-forge` channel:
```shell script
conda install pdal python-pdal gdal -c conda-forge
```
Laserfarm can then be downloaded and installed using `pip`:
```shell script
pip install laserfarm
```
or using `git` + `pip`:
```shell script
git clone git@github.com:eEcoLiDAR/Laserfarm.git
cd Laserfarm
pip install .
```
In order to setup a new conda environment with Laserfarm and all its dependencies, the YAML file provided can be 
employed:
```shell script
conda env create -f environment.yml
```

# Documentation

The project's full documentation can be found [here](https://laserfarm.readthedocs.io/en/latest/).

# Applications and Current Limitations

This package has been tested on data provided in a metric-based 2D-projected Cartesian coordinate system, i.e. the 
*[Actueel Hoogtebestand Nederland](https://www.pdok.nl/introductie/-/article/actueel-hoogtebestand-nederland-ahn3-)*. 
While some of the tools of Laserfarm could be applied to data in an ellipsoidal latitude/longitude coordinate system 
as well, this has not been tested and it is generally expected to fail. 

# Contributing

If you want to contribute to the development of Laserfarm,
have a look at the  [contribution guidelines](CONTRIBUTING.md).

# License

Copyright (c) 2020, Netherlands eScience Center

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

