You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should support a way to generate custom index band using expression to represent those values. For example, the code below is a example how to generate Normalized Difference Vegetation Index ((nir - red) / (nir + red)). To create a new data cube, which must have NDVI, the curl request should looks like:
(The user can set any formula as wish, according to bands name defined)
The top-level member indexes act as post-processing to generate data cube indexes. To do that, we must store the value in database and it depends from bdc-db.
Right now, in the commit e137790 we already added a indexes key, but it is hardcoded way and does not support dynamic expression like that.
The text was updated successfully, but these errors were encountered:
We should support a way to generate custom index band using expression to represent those values. For example, the code below is a example how to generate Normalized Difference Vegetation Index (
(nir - red) / (nir + red)
). To create a new data cube, which must haveNDVI
, the curl request should looks like:(The user can set any formula as wish, according to
bands
name defined)The top-level member
indexes
act as post-processing to generate data cube indexes. To do that, we must store thevalue
in database and it depends from bdc-db.Right now, in the commit e137790 we already added a
indexes
key, but it is hardcoded way and does not support dynamic expression like that.The text was updated successfully, but these errors were encountered: