I would appreciate if you could explain me why when I download an NDVI image in Sentinel HUB and load it in QGIS or ArcGIS I get three bands with different values.
Thanks!
Page 1 / 1
Hello Félix,
I think you are downloading the visualisation of NDVI from Sentinel Hub. This is a 3 band RGB image that is used to easily visualise NDVI for data visualisation purposes.
To access the actual NDVI values is very simple, if you use the evalscript below you will return your NDVI values between 0 and 1.
//VERSION=3
function setup() {
return {
input: {
bands:
"B04",
"B08",
]
}],
output: {
bands: 1,
sampleType: "FLOAT32"
}
}
}
function evaluatePixel(samples) {
let val = index(samples.B08, samples.B04);
return val];
}
If you need more help, please let us know!
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.
Reply
Login to the community
No account yet? Create an account
Login with SSO
Login with Saml2 Login with OpenIdConnector
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.