Question
Currently, with Orders v2, what is the maximum number of bands allowed? Do you have an example to pass multiple band calculations?
Answer
The tool can calculate up to 15 bands currently for an item. Additional information can be found on this page
Here is an example code to follow:
{
"name": "ndvi_bandmath_example",
"source_type": "scenes",
"products": [
{
"item_ids": [
"20220124_062250_31_220b"
],
"item_type": "PSScene",
"product_bundle": "analytic_udm2"
}
],
"tools": [
{
"bandmath": {
"b1": "b1",
"b2": "b2",
"b3": "b3",
"b4": "arctan(b1)",
"b5": "(b4-b3)/(b4+b3)",
"pixel_type": "32R"
}
}
]
}
Comments
Please sign in to leave a comment.