Skip to main content

Analyzing forest structure using aerial LiDAR data

Project description

PyForestScan: Airborne Point Cloud Analysis for Forest Structure

Binder PyPI Docker Pulls Contributors Tests Coverage PyPI Downloads

Calculate Forest Structural Metrics from lidar point clouds in Python

Height Above Ground

Overview

PyForestScan is a Python library designed for analyzing and visualizing forest structure using airborne 3D point cloud data. The library helps derive important forest metrics such as Canopy Height, Plant Area Index (PAI), Canopy Cover, Plant Area Density (PAD), Foliage Height Diversity (FHD), and Rumple Index.

Features

  • Forest Metrics: Calculate and visualize key metrics like Canopy Height, PAI, PAD, FHD, Canopy Cover, and Rumple Index.
  • Large Point Cloud Support: Utilizes efficient data formats such as EPT for large point cloud processing.
  • Visualization: Create 2D and 3D visualizations of forest structure and structural metrics
  • Extensibility: Easily add custom filters and visualization techniques to suit your needs.

Installation

Install PyForestScan using pip:

pip install pyforestscan

Dependencies

[!IMPORTANT] You MUST have installed both PDAL and GDAL to use PyForestScan. If you use conda to install PDAL, make sure you install pyforestscan in the conda environment with PDAL (and GDAL if using conda). See https://pdal.io/en/latest/ for more information on PDAL and https://gdal.org/en/stable/.

  • PDAL >= 2.7
  • GDAL >= 3.5
  • Python >= 3.11

Quick Start

Calculate, Export, and Plot Plant Area Index

The following snippet shows how you can load a las file, create 5m by 5m by 1m voxels with points assigned to them, and generate plant area density at 1m layers and plant area index for each 5m grid cell before writing the resulting PAI layer to a geotiff and plotting.

from pyforestscan.handlers import read_lidar, create_geotiff
from pyforestscan.calculate import assign_voxels, calculate_pad, calculate_pai
from pyforestscan.visualize import plot_metric

arrays = read_lidar("example_data/20191210_5QKB020880.laz", "EPSG:32605", hag=True)
voxel_resolution = (5, 5, 1)
voxels, extent = assign_voxels(arrays[0], voxel_resolution)
pad = calculate_pad(voxels, voxel_resolution[-1])
pai = calculate_pai(pad)
create_geotiff(pai, "output_pai.tiff", "EPSG:32605", extent)
plot_metric('Plant Area Index', pai, extent, metric_name='PAI', cmap='viridis', fig_size=None)

Plant Area Index

Documentation

For detailed instructions and examples, visit our documentation.

Editing and Publishing Documentation

If you want to add new documentation or update existing docs for PyForestScan, follow these steps:

1. Editing Documentation

  • Documentation sources are typically found in the docs/ directory.
  • You can add new Markdown (.md) files or update existing ones as needed.
  • To add a new doc page, simply create a new file in the docs/ folder and link to it from the relevant index or summary page if needed.

2. Building and Viewing Docs Locally

PyForestScan uses a static site generator like MkDocs (or similar) for documentation.

  • Make sure you have the required dependencies listed in requirements-doc.txt.
  • Install dependencies if needed:
    pip install -r requirements-doc.txt
    
  • Build and serve the documentation locally:
    mkdocs serve
    
  • Visit http://127.0.0.1:8000 in your browser to preview your changes.

3. Publishing/Updating the Documentation

  • Once you are satisfied with your changes, commit and push them to your fork or branch:

    git add docs/
    git commit -m "Update documentation"
    git push
    
  • Open a Pull Request (PR) if contributing to the main repository.

  • On merge to the main branch, documentation deployment is usually handled automatically (for example, via GitHub Actions or Read the Docs). Check the repository’s specific instructions or workflows if manual steps are required.

Tip: If you encounter issues with the docs build or deployment, refer to any Contributing Guidelines, mkdocs.yml configuration, or open an issue for help.

Developer Guides

To build locally and contribute to PyForestScan, you will need the following dependencies:

  • PDAL and Python PDAL bindings
  • GDAL
  • Python
  • Python requirements (requirements.txt and requirements-dev.txt)

Testing

PyForestScan uses pytest for running tests. To run the tests, you can follow the steps below:

Running Tests

  1. Install the development dependencies:

    pip install -r requirements-dev.txt
    
  2. Run the tests using pytest:

    pytest
    

This will run all the test cases under the tests/ directory. The tests include functionality checks for filters, forest metrics, and other core components of the PyForestScan library.

You can also run specific tests by passing the test file or function name:

pytest tests/test_calculate.py

Contributing

We welcome contributions! Please check our Contributing Guidelines to get started.

License

This project is licensed under the MIT License. See the LICENSE.md file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyforestscan-0.4.0.tar.gz (40.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyforestscan-0.4.0-py3-none-any.whl (43.6 kB view details)

Uploaded Python 3

File details

Details for the file pyforestscan-0.4.0.tar.gz.

File metadata

  • Download URL: pyforestscan-0.4.0.tar.gz
  • Upload date:
  • Size: 40.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for pyforestscan-0.4.0.tar.gz
Algorithm Hash digest
SHA256 08567786c52281aa75b2cb6d3800d5a28aee274acc53ed7a17fa1427500cb849
MD5 fbe7b949d364c336e3e0d3c271cf851a
BLAKE2b-256 1489e4e77562375c63efdc6b994d42b2bcd4a7cc5551b0b349930cf166c52223

See more details on using hashes here.

File details

Details for the file pyforestscan-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: pyforestscan-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 43.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for pyforestscan-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9297f9ea2d5f3e076f3c2ebfcb26fbc314a0148eac6c82e128e25997393b6773
MD5 3f781b1e03375c417b0ba5505497201b
BLAKE2b-256 3614f1f9600cc1267ecbbe17f5b010dd33479e135d230320200e18ddf9033c60

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page