Fractional Vegetation Cover (FVC) Remote Sensing Method from Carlson et al 1997 Python Package
Project description
carlson-fractional-vegetation-cover
Fractional Vegetation Cover (FVC) Remote Sensing Method from Carlson et al 1997 Python Package
Gregory H. Halverson (they/them)
gregory.h.halverson@jpl.nasa.gov
NASA Jet Propulsion Laboratory 329G
Overview
This package provides a Python implementation of the Fractional Vegetation Cover (FVC) algorithm described by Carlson & Ripley (1997). It converts NDVI (Normalized Difference Vegetation Index) data to FVC using a linear scaling method, suitable for remote sensing applications.
Features
- Converts NDVI to Fractional Vegetation Cover (FVC)
- Supports both NumPy arrays and
rasters.Rasterobjects - Based on peer-reviewed scientific literature
Installation
Install via pip:
pip install carlson-fractional-vegetation-cover
Usage
import numpy as np
from carlson_fractional_vegetation_cover import carlson_fractional_vegetation_cover
# Example NDVI array
NDVI = np.array([[0.1, 0.3, 0.5], [0.04, 0.52, 0.25]])
FVC = carlson_fractional_vegetation_cover(NDVI)
print(FVC)
Algorithm
The algorithm linearly scales NDVI values between two reference points:
- NDVIv (full vegetation): 0.52 ± 0.03
- NDVIs (bare soil): 0.04 ± 0.03
The formula:
FVC = clip((NDVI - NDVIs) / (NDVIv - NDVIs), 0.0, 1.0)
Values below NDVIs are set to 0 (bare soil), above NDVIv to 1 (full vegetation), and in between are linearly scaled.
References
- Carlson, T.N., & Ripley, D.A. (1997). On the relation between NDVI, fractional vegetation cover, and leaf area index. Remote Sensing of Environment, 62(3), 241-252. https://doi.org/10.1016/S0034-4257(97)00104-1
License
See LICENSE file for details.
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 carlson_fractional_vegetation_cover-1.0.0.tar.gz.
File metadata
- Download URL: carlson_fractional_vegetation_cover-1.0.0.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc2fb5bd0b15806becada553cb95c1c8218b78ec2db1acddb72b2a5ffad62796
|
|
| MD5 |
b47cd69c9decf55626cf881c5647c08e
|
|
| BLAKE2b-256 |
724451192a06779396e73062192dfdf8b669a54c540455ca73a4e41ba3b12d4c
|
File details
Details for the file carlson_fractional_vegetation_cover-1.0.0-py3-none-any.whl.
File metadata
- Download URL: carlson_fractional_vegetation_cover-1.0.0-py3-none-any.whl
- Upload date:
- Size: 7.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a65c6cd16fe47787373f54d7371c99d2d25a4efa77b543cb25aa7340e7923ff
|
|
| MD5 |
883cc5158ac0d77d1ce57be16dd62e16
|
|
| BLAKE2b-256 |
01dd4b20c53f30c4e383feab42759f5756bbd1370ab8283e01e84874b6deb352
|