| Variable | R² | RMSE | MAE |
|---|---|---|---|
| LAI (m²/m²) | 0.9967 | 0.0912 | 0.0578 |
| FPAR | 0.9888 | 0.0134 | 0.0101 |
Click on the map to query LAI and FPAR time series at any location within the demo area.
Map preview placeholder - Demo area near Beijing
Click functionality available in Demo page
Visit the HuggingFace repository to browse and download:
HuggingFace RepositoryDownload using the huggingface_hub package:
from huggingface_hub import hf_hub_download
path = hf_hub_download(
repo_id="geondc/higlass-lai-fpar-china",
filename="tile_001.gndc",
repo_type="dataset"
)
Use the GeoNDC SDK for direct loading and querying:
from geondc import GeoNDC
model = GeoNDC.load("higlass-lai-fpar-china")
result = model.query(lat=40.0, lon=116.3, variable="LAI")
@dataset{qi2025higlass,
title={HiGLASS LAI+FPAR China (GeoNDC Compressed)},
author={GeoNDC Team},
year={2025},
publisher={HuggingFace},
url={huggingface.co/datasets/geondc/higlass-lai-fpar-china}
}