It would be easier to help if you could share the details of what you've tried and explain how the results didn't match your expectation.
I've been able to use RasterExpressionEvaluator to generate a 1/0 value based on whether one of the bands in the raster is below zero degrees. E.g.
if(AÂ1]<0,1,0)
Where I'm stuck is:
- how to repeat this for each of the 31 bands i.e. A 1] to Ac31]
- how to sum this at the end
Â
Â
I've been able to use RasterExpressionEvaluator to generate a 1/0 value based on whether one of the bands in the raster is below zero degrees. E.g.
if(AÂ1]<0,1,0)
Where I'm stuck is:
- how to repeat this for each of the 31 bands i.e. A 1] to Ac31]
- how to sum this at the end
Â
Â
Use a RasterBandSeparator before the RasterExpressionCalculator, you can then use the constant formula:
    if(Aa0]<0,1,0)
Note the use of band 0, not 1.
Finally try the RasterMosaicker and play around with the Overlapping Values parameter.
Use a RasterBandSeparator before the RasterExpressionCalculator, you can then use the constant formula:
    if(Ao0]<0,1,0)
Note the use of band 0, not 1.
Finally try the RasterMosaicker and play around with the Overlapping Values parameter.
Thanks, that works. It generates 31 bands with 0/1 values. I've then used RasterBandCalculator to sum these and got the output I needed.
Â
Many thanks for your help.Â
Use a RasterBandSeparator before the RasterExpressionCalculator, you can then use the constant formula:
    if(Ao0]<0,1,0)
Note the use of band 0, not 1.
Finally try the RasterMosaicker and play around with the Overlapping Values parameter.
Did you try the RasterMosaicker, as I mentioned above? Remember to click "Expand post" to see all.
Use a RasterBandSeparator before the RasterExpressionCalculator, you can then use the constant formula:
    if(Ao0]<0,1,0)
Note the use of band 0, not 1.
Finally try the RasterMosaicker and play around with the Overlapping Values parameter.
Duh, sorry I completely overlooked that line. I just ran it and reassuringly it generated identical results to RasterBandCalculator.
Â
Thanks for all your help.