Environmental Data Platform


Vegetation Health Index - 231 m 8 days

Go to full metadata Linkset {json} Linked data {json}


The Vegetation Health Index (VHI) is based on a combination of products extracted from vegetation signals, namely the Normalized Difference Vegetation Index (NDVI) and the land surface temperature, both derived from MODIS satellite data. The NDVI is based on 8 day maximum value composite MOD09Q1 (v006) reflectance and the land surface temperature (LST) on 8 day MOD11A2 (v006) LST products. The spatial resolution is 231 m, therefore the original 1000 m resolution of the MOD11A2 LST is downscaled to 231 m of the MOD09Q1 reflectance. Both products are masked to the highest quality standards using the provided quality layers. Missing pixel values in the time series are linearly interpolated. Non-vegetated areas are masked using the most recent Corine Land Cover product version for the according year. The final product is regridded to the LAEA Projection (EPSG:3035). The VHI relies on a strong inverse correlation between NDVI and land surface temperature, since increasing land temperatures are assumed to act negatively on vegetation vigour and consequently to cause stress. The data is provided as 8 day measures. The time series is starting from 2001. The VHI values range from 0-100, whereas high values correspond to healthy vegetation and low values indicate stressed vegetation.

collection, vegetation health index, vhi, modisi, ADO project, ADO, Terra, Land use, Land cover

CC BY 4.0

Eurac Research - Institute for Earth Observation
bartolomeo.ventura@eurac.edu
Viale Druso, 1 / Drususallee 1, Eurac Research, Bolzano, Autonomous Province of Bolzano, 39100, Italy


WGS-84 (3035:EPSG)

Grid

mapDigital

Imagery base maps earth cover


Snippet code
Copy to clipboard

install.packages("openeo")
library(openeo)

# login ----
host = "https://openeo.eurac.edu"
con = connect(host = host)
login()

# check login ---
con$isConnected()
con$isLoggedIn()
describe_account()

# load collection - save result ----
p = processes()
data = p$load_collection(id = "ADO_VHI_MODIS_231m_3035", 
                                             spatial_extent = list(west = 3.995373,
                                                                                 east = 17.523924,
                                                                                 south = 42.873494,
                                                                                 north = 50.326362),
                                             temporal_extent = list("STARTTIME", "ENDTIME"))
result = p$save_result(data = data, format="netCDF")

# download results ----
# either directly (suitable for smaller requests)
compute_result(result,
                             format = "netCDF",
                             output_file = "ADO_VHI_MODIS_231m_3035.nc", 
                             con = eurac)

# or start a batch job (suitable for larger requests)
job_id = create_job(graph = result,
                                   title = "ADO_VHI_MODIS_231m_3035",
                                   description = "ADO_VHI_MODIS_231m_3035",
                                   format = "netCDF")
start_job(job = job_id)
result_list = list_results(job = job_id)
download_results(job = job_id, folder = ".")
Copy to clipboard

#pip install openeo
import openeo

# login ----
euracHost        = "https://openeo.eurac.edu"
eurac = openeo.connect(euracHost).authenticate_oidc(client_id="openEO_PKCE")

# load collection - save result ----
data = eurac.load_collection("ADO_VHI_MODIS_231m_3035",spatial_extent={'west':3.995373,'east':17.523924,'south':42.873494,'north':50.326362},temporal_extent=["STARTTIME", "ENDTIME"])

result = data.save_result(format="NetCDF")

# download results ----
# either directly (suitable for smaller requests, closes the connection after 2 minutes)
data.download("ADO_VHI_MODIS_231m_3035.nc",format="netCDF")

# or start a batch job (suitable for larger requests, e.g. when .download() timeouts)

job = result.create_job(title = "ADO_VHI_MODIS_231m_3035",description = "ADO_VHI_MODIS_231m_3035",out_format = "netCDF")
jobId = job.job_id
job.start_job()

jobResults = job.get_results()
jobResults.download_files('.')

Related docs
Name Description Link Date published Category
openEO for ADO project Tutorial and snippets on how to use openEO in the ADO project Link Sept. 15, 2021 OpenEO
EDP video tutorial Presentation of edp-platform and tutorial for data analysis and processing Link Sept. 15, 2021 OpenEO
Official OpenEO documentation and project site Official Documentation provided in the project web site for a deeper overview and introduction. Link June 10, 2021 OpenEO
OpenEO doc Documentation for OpenEO API Link June 9, 2021 OpenEO
Eurac - OpenEO openEO endpoint Link April 28, 2021 OpenEO
MOOC Cubes and Clouds Free Online Course teaching the concepts of data cubes, cloud platforms and open science in geospatial and EO. Link March 8, 2024 OpenEO, STAC