High-performance Python library for Forest Inventory and Analysis (FIA) data analysis
Project description
A high-performance Python library for analyzing USDA Forest Inventory and Analysis (FIA) data. Built on DuckDB and Polars for speed, with statistical methods that match EVALIDator exactly.
Why pyFIA?
| Feature | pyFIA | EVALIDator |
|---|---|---|
| Speed | 10-100x faster | Baseline |
| Interface | Python API | Web UI |
| Reproducibility | Code-based | Manual |
| Custom analysis | Unlimited | Limited options |
| Statistical validity | ✓ Exact match | ✓ Reference |
Quick Start
pip install pyfia
from pyfia import FIA, biomass, tpa, volume, area
with FIA("path/to/FIA_database.duckdb") as db:
db.clip_by_state(37) # North Carolina
db.clip_most_recent(eval_type="EXPVOL")
# Core estimates
trees = tpa(db, tree_domain="STATUSCD == 1")
carbon = biomass(db, by_species=True)
timber = volume(db, land_type="timber")
forest = area(db, land_type="forest")
Core Functions
| Function | Description | Example |
|---|---|---|
tpa() |
Trees per acre | tpa(db, tree_domain="DIA >= 5.0") |
biomass() |
Above/belowground biomass | biomass(db, by_species=True) |
volume() |
Merchantable volume (ft³) | volume(db, land_type="timber") |
area() |
Forest land area | area(db, grp_by="FORTYPCD") |
site_index() |
Site productivity index | site_index(db, grp_by="COUNTYCD") |
mortality() |
Annual mortality rates | mortality(db) |
growth() |
Net growth estimation | growth(db) |
Statistical Methods
pyFIA implements design-based estimation following Bechtold & Patterson (2005):
- Post-stratified estimation with proper variance calculation
- Ratio-of-means estimators for per-acre values
- EVALID-based filtering for statistically valid estimates
- Temporal methods: TI, annual, SMA, LMA, EMA
Installation
# Recommended: use uv for fast, reliable installs
uv pip install pyfia
# Or with pip
pip install pyfia
# With spatial support (polygon clipping, spatial joins)
uv pip install pyfia[spatial]
Tip: Always use a virtual environment (
uv venvorpython -m venv .venv).
For development setup, see the Getting Started guide.
Documentation
Full documentation: mihiarc.github.io/pyfia
Citation
@software{pyfia2025,
title = {pyFIA: A Python Library for Forest Inventory Applications},
author = {Mihiar, Christopher},
year = {2025},
url = {https://github.com/mihiarc/pyfia}
}
Affiliation
Developed in collaboration with USDA Forest Service Research & Development. pyFIA provides programmatic access to Forest Inventory and Analysis (FIA) data but is not part of the official FIA Program.
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyfia-1.3.0.tar.gz.
File metadata
- Download URL: pyfia-1.3.0.tar.gz
- Upload date:
- Size: 204.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82a1e3901d71a8d10d5bee2fbe5166cfaf9fe88d0aa5a55e058b5cd026814c7e
|
|
| MD5 |
3ba6e11e4c0876022b414bcb94eab1b6
|
|
| BLAKE2b-256 |
e0af40cda19b7f2400423a061ddde426bcfb3eb627186ff2d8db4ec91e18458f
|
File details
Details for the file pyfia-1.3.0-py3-none-any.whl.
File metadata
- Download URL: pyfia-1.3.0-py3-none-any.whl
- Upload date:
- Size: 245.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd347c0388ff3d8a8ee29773b6524da7cf01aedc14463f0266e87197a78d664c
|
|
| MD5 |
5cff2d6e008fabcfc0b03852f5a47ce8
|
|
| BLAKE2b-256 |
a159a88928833c5c475d96a66e12cbb9482b627dac618d084d94c648ec3c5c99
|