Upload README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# VIs_to_LAI: Simulate leaf area index from vegetation indices
|
| 2 |
+
|
| 3 |
+
**Authors**: Jonghan Ko at Chonnam National University and Chi Tim Ng at Hang Seng University of Hong Kong
|
| 4 |
+
**Collaborator**: Jong-oh Ban at Hallym Polytechnic University
|
| 5 |
+
**Repository**: https://github.com/RS-iCM/VIs_to_LAI, https://huggingface.co/datasets/jonghanko/VIs_to_LAI/tree/main
|
| 6 |
+
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
## Overview
|
| 10 |
+
|
| 11 |
+
VIs_to_LAI is a modular, Python-based simulation framework that generates LAI from remotely sensed VIs with modeling processes. Designed for agricultural monitoring, VIs_to_LAI enables dynamic simulation of LAI under diverse environmental and management conditions. This framework facilitates the incorporation of machine learning algorithms to enhance LAI simulation and improve forecasting accuracy.
|
| 12 |
+
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
## Features
|
| 16 |
+
|
| 17 |
+
- Modular design for adaptation to various crops and regions
|
| 18 |
+
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
+
## Requirements
|
| 22 |
+
|
| 23 |
+
- Python ≥ 3.8
|
| 24 |
+
- numpy
|
| 25 |
+
- pandas
|
| 26 |
+
- matplotlib
|
| 27 |
+
- scikit-learn
|
| 28 |
+
- scipy
|
| 29 |
+
|
| 30 |
+
Install dependencies using:
|
| 31 |
+
|
| 32 |
+
```bash
|
| 33 |
+
pip install -r requirements.txt
|
| 34 |
+
|