jonghanko commited on
Commit
f4ef56d
·
verified ·
1 Parent(s): d6eb729

Upload 2 files

Browse files
Files changed (2) hide show
  1. README.md +49 -3
  2. requirements.txt +6 -0
README.md CHANGED
@@ -1,3 +1,49 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # RSCM_Spatial: Remote sensing–driven crop growth simulation and yield forecastin
2
+
3
+ **Authors**: Chi Tim Ng at Hang Seng University of Hong Kong and Jonghan Ko at Chonnam National University
4
+
5
+ **Collaborator**: Seungtaek Jeong at Korea Aerospace Institute and Jong-oh Ban at Hallym Polytechnic University
6
+
7
+ **Repository for the model**: https://github.com/RS-iCM/RSCM_Spatial
8
+
9
+ **Repository for bigger data**: https://huggingface.co/datasets/jonghanko/RSCM_Spatial/tree/main
10
+
11
+ ---
12
+
13
+ ## Overview
14
+
15
+ RSCM_Spatial is an open-source Python framework for simulating crop growth and yield from field to regional scales. By integrating satellite-derived vegetation indices (VIs) and climate data into automated parameterization, it reduces reliance on ground calibration while supporting flexible LAI regression methods (empirical, Bayesian, and machine learning). The platform includes pretrained models, reproducible notebooks, and built-in visualization, enabling scalable applications across crops, environments, and management systems.
16
+
17
+ ---
18
+
19
+ ## Features
20
+
21
+ - Seamless integration of remote sensing and climate data for crop modeling
22
+ - Multiple LAI regression frameworks: empirical, Bayesian log–log, and machine learning
23
+ - Extendable API for incorporating custom vegetation indices and algorithms
24
+ - Pretrained models and reproducible Jupyter notebooks for rice, wheat, and maize
25
+ - Supports 1D (time-series) and 2D (geospatial) simulation workflows
26
+ - Built-in visualization tools for time-series dynamics, scatter diagnostics, and spatial mapping
27
+ - Modular architecture for straightforward adaptation to additional crops and regions
28
+
29
+ ---
30
+
31
+ ## Requirements
32
+
33
+ - Python ≥ 3.10
34
+ - numpy
35
+ - pandas
36
+ - matplotlib
37
+ - scikit-learn
38
+ - cartopy
39
+ - geopandas
40
+ - rasterio
41
+ - shapely
42
+ - scipy
43
+ - seaborn
44
+
45
+ Install dependencies using:
46
+
47
+ ```bash
48
+ pip install -r requirements.txt
49
+
requirements.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ numpy>=1.22
2
+ pandas>=1.5
3
+ matplotlib>=3.5
4
+ scikit-learn>=1.1
5
+ scipy>=1.8
6
+ tqdm>=4.64