An Innovative Approach to Vegetative Precipitation Partitioning
Project description
p {
text-align:center;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
figcaption {
font-size: 15px;
text-align:center;
}
</style>
CanoPyHydro
Leveraging remote sensing to map water availability in tree canopies.
Summary • Getting Started • Contributing • Publications • Future Direction • Tutorials
Summary
The goal of this and future versions of CanoPyHydro is to provide a tool set that empowers researchers and practitioners to gain new perspectives on rainfall distribution in forested environments. A list of publications that have utilized this tool-and influenced its development- can be found at the bottom of this page.
CanoPyHydro provides users access to an innovative, bottom-up approach to estimation precipitation redistribution. By enriching QSM data with additional structure via graph based hydrological models, canoPyHydro allows for the percise delineation of:'
- Stemflow and throughfall generating areas of the canopy
- The 'drip points' to which throughfall is directed - complete with their relative volumes
- 'Divides' and 'confluences' within the canopy that dictate the flow of water through the canopy
The current tool set also boasts several different spacial analysis tools, several of which have been utilized in the study of non-hydrological environmental conditions within tree canopies. These include:
- Functionality for characterizing the level of obsfucation present at given canopy cross sections
- Tools for identifying, highlighting and isolating branch subnetworks meeting any arbitrary contition(s)
- i.e. only branches with a radius > 10cm, branches with a branch order of 0 within 100cm of the ground, ...
- 2D and 3D visualization functionality to interactively to explore the structure of tree canopies
Getting Started
- Create a Virtual Environment: Below we use the native 'venv' module to create a virtual environment. This is not strictly necessary, but it is a good practice to keep your project dependencies separate from your system dependencies in a virtual environment.
python -m venv canHydroVenv
- Activate Your Environment: Activate your virtual environment to install dependencies and run the project. The commands to activate the virtual environment depend on your operating system and shell. Below are the commands for activating the virtual environment in different operating systems and shells.
# if using bash (Mac, Unix)
source canHydroVenv/bin/activate
# if using PowerShell (Windows)
source canHydroVenv\Scripts\activate.ps1
- Install canoPyHydro: canoPHydro is published with PyPA (the python packacing authority). You can install the latest stable release of canoPyHydro using pip. This installs our latest stable release as well as several libraries required for the use of the package's features. canoPyHydro currently supports Python versions 3.9 and up.
pip install canoPyHydro
- Set Configuration Options: The default configuration file can be found at '/CanopyHydrodynamics/canopyhydro_config.toml'. Configuration options can be set by altering the contents of that file in place. Refer to the configuration page in the docs for more information on configuration options.
That's it! You're ready to start using canoPyHydro. Check out the the below tutorials and the documentation for more information on how to use the package.
Tutorial
The below tutorial should be a great starting place for those looking to get a feel for the capabilities of canoPyHydro. The tutorial will cover the creation of a CylinderCollection object, options for the visualization of QSMs in 2D and the calculation of flow characteristics.
The Cylinder class is used to represent the 3-D cylinders that make up a QSM. The most important function of these Cylinder objects is their ability to return data regarding the projections onto the XY, XZ and YZ planes.
myCyl = Cylinder(
cyl_id=1.0,
x=[3, 6],
y=[2, 4],
z=[6, 12],
radius=2.0,
length=0.064433,
branch_order=0.0,
branch_id=0.0,
volume=0.010021,
parent_id=0.0,
reverse_branch_order=32.0,
segment_id=0.0,
)
fig = myCyl.draw_3D(show=False, draw_projections=True)
# Creating a CylinderCollection object
myCollection = CylinderCollection()
# The below file is one of our several testing files featuring only
# the trunk of a tree and one of its branches
myCollection.from_csv("charlie_brown.csv")
# plot the tree as seen from the 'front'
myCollection.draw("XZ")
# plot the tree as seen from above
myCollection.draw("XY")
# plot the tree as seen from the 'side'
myCollection.draw("YZ")
XZ Projection
XY Projection
YZ Projection
Compared to a QSM, CylinderCollections have additional structure in the form of a digraph model. These digraph models represent the direction water flows along the branches of the modeled tree and are used in the 'find_flow_components' and 'calculate_flows' function to characterize the flow of water through the canopy. The below code, continuing from the above demonstrates the use of these functions.
# creating the digraph model
myCollection.initialize_digraph_from()
# Identifying the flows to which each cyl belongs
myCollection.find_flow_components()
# Calculating the propreties of each flow
myCollection.calculate_flows()
# Print out calcualted flow characteristics
print(myCollection.flows)
num_cylinders | projected_area | surface_area | angle_sum | volume | sa_to_vol | drip_node_id | drip_node_loc |
---|---|---|---|---|---|---|---|
162.0 | 0.345 | 1.167 | 111.92 | 0.019 | 82717.985 | 0.0 | (-0.5, 3.4, 8.7) |
18 | 0.005 | 0.021 | 10.275 | 0.0 | 14370.354 | 232 | (1.9, 2.2, 13.9) |
13 | 0.004 | 0.015 | 7.718 | 0.0 | 11229.764 | 360 | (1.8, 2.6, 13.6) |
24 | 0.008 | 0.032 | 1.697 | 0.0 | 18378.751 | 515 | (1.5, 2.8, 12.9) |
... | ... | ... | ... | ... | ... | ... | ... |
What you see above is a sample of the flow characterstics calculated for the 'charlie_brown' tree. The first flow listed is, as is the convention in canoPyHydro, the tree's stemflow and the others are the throughfall flows. The 'drip_node_loc' column lists the x,y,z coordinates of the node of the afformentioned graph to which water intercepted by the flow's cylinders is directed. The various geometric characteristics give a sense of the size and shape of the flow's cylinders (or 'canopy drainage area').
The draw function also allows for a variety of different overlays, filtering and highlighting. To demonstrate this briefly, we will show below how this filtering can be used in a variety of ways, including highlighting the various flows mentioned above. For more information on the CylinderCollection class, please refer to the documentation.
# Plot the entire tree with stem flow highlighted
myCollection.draw("XZ", highlight_lambda=lambda:is_stem)
# Plot the interesting portion of the tree with stem flow highlighted
myCollection.draw("XZ",
highlight_lambda=lambda:is_stem,
filter_lambda=lambda: cyl_id>100)
# Adding drip points to the above mentioned plot
myCollection.draw("XZ",
highlight_lambda=lambda:is_stem,
filter_lambda=lambda: cyl_id>100,
include_drips=True)
The final bit of functionality we will review today is the ability to create concave hulls around groups of cylinders in a CylinderCollection. This is done using the 'watershed_boundary' function. The below code demonstrates how this function can be used to find a concave hull around the entire tree, or a portion of the tree. Note that a new, more robist example tree is used
# Reading in the tree data and finding flows
myCollection = CylinderCollection()
myCollection.from_csv("example_tree.csv")
myCollection.project_cylinders("XY")
myCollection.initialize_digraph_from()
myCollection.find_flow_components()
myCollection.calculate_flows()
#drawing the tree for reference
myCollection.draw("XY", save=True, file_name_ext="read_me_alpha")
# Drawing the whole canopy boundary
myCollection.watershed_boundary(plane = 'XY', draw=True)
# Drawing the canopy boundary and tree together
myCollection.draw("XY",
include_alpha_shape=True)
# Drawing a tighter fitting alpha shape
myCollection.watershed_boundary(plane = 'XY',
curvature_alpha=2,
draw=True)
myCollection.draw("XY",
include_alpha_shape=True)
# Drawing the stem flow watershed boundary
# with stemflow cylinders highlighted
myCollection.watershed_boundary(plane = 'XY',
curvature_alpha=2,
filter_lambda=lambda: is_stem)
myCollection.draw("XY",
include_alpha_shape=True,
highlight_lambda=lambda: is_stem)
Publications:
The utilities that this repository houses were first created as part of a research paper - 'A LiDAR-driven pruning algorithm to delineate canopy drainage areas of stemflow and throughfall drip points.'. This paper has been accepted for publication in The Journal of Ecology and Evolution. A DOI for that publication will be added here once available, but in the meantime, a pre-print of the paper can be found on ResearchGate.
Future Direction
- We hope to widen the use cases for our tool by integrating additional real world data (i.e wind speed and direction, rain intensity and average angle, etc.).
- By integrating python libraries for spacial analysis (scipy-spacial, open3d) into canoPyHydro, we hope to allow for the projection of cylinders at an arbitrary angle. This will lead directly into supporting the afformentioned integration of weather data.
- Improve the efficiency of the flow finding algorithm and the flow caluclation algorithm. This will allow for the processing of larger QSMs and the use of more complex models (i.e. tesselated meshes).
- Under the branch improve-find-flows-efficiency, you can see the current work being done to meet this goal. Early results so as much as a 200x increase in the speed of the algorithm as a result of:
- migrating the the use of rust based graph models, using the rustworkx library
- refactoring the current find flow algorithm as a graph traversal algorithm to enable parallel processing
- Under the branch improve-find-flows-efficiency, you can see the current work being done to meet this goal. Early results so as much as a 200x increase in the speed of the algorithm as a result of:
Contributing
We welcome contributions to this project! Whether it's reporting a bug, proposing a new feature, or contributing code, we appreciate your help. Here's how you can set up you local environment in order to do so:
-
Install Additional Dependencies: Some features (linting, git actions, etc.) may require additional dependencies. An additional 'requirements-dev.txt' file has been provided to install these dependencies.
pip install -r requirements-dev.txt
-
Install Pre-commit: This repository utilizes the ruff pre-commit hook to ensure that all code is linted before being committed. To install pre-commit, run the following commands:
pip3 install pre-commit pre-commit install
-
**Review the contributing Guidelines **: Check out the documentation, where you can find contributing guidelines. Please note that this project is released with a Code of Conduct. By contributing to this project, you agree to abide by its terms.
Thank you for your interest in contributing to our project!
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
Built Distribution
File details
Details for the file canopyhydro-0.0.5.tar.gz
.
File metadata
- Download URL: canopyhydro-0.0.5.tar.gz
- Upload date:
- Size: 48.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f5f411df4e4f757ed772d96c47a70f6987f8df0bbe858332d2881835942ff81 |
|
MD5 | ce262abfe4b9a489a523827562a5ff44 |
|
BLAKE2b-256 | 9b2ad75a435f461de45eab9c720dc14ba66f5d5b4431d248c52f1564d0bac975 |
File details
Details for the file canoPyHydro-0.0.5-py3-none-any.whl
.
File metadata
- Download URL: canoPyHydro-0.0.5-py3-none-any.whl
- Upload date:
- Size: 42.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0aa42443899f2126b9ca70e86c852580034e159b0b04f3d9477ce02137c13f0 |
|
MD5 | 12d2746ec38a60c63a55212cf68b49ed |
|
BLAKE2b-256 | 0c39d00a10cc3660705088387ad05d39b1abb0189732fd7387db3463848ad6ce |