Thanks George for pointing out the difference between the average of geophysical parameters and the math average.
Hope I get it right this time --
((chlor_a_M >= 0.0 ? chlor_a_M : 0) +(
chlor_a_D0 >= 0.0 ? chlor_a_D0 : 0) +
(chlor_a_D1 >= 0.0 ? chlor_a_D1 : 0)) /
(((chlor_a_M >= 0.0 ? 1 : 0) +
(chlor_a_D0 >= 0.0 ? 1 : 0) +
(chlor_a_D1 >= 0.0 ? 1 : 0))
If you do Math Band after collocation.
(($1.chlor_a >= 0.0 ? $1.chlor_a : 0) +
($2.chlor_a >= 0.0 ? $2.chlor_a : 0) +
($3.chlor_a >= 0.0 ? $3.chlor_a : 0)) /
(($1.chlor_a >= 0.0 ? 1 : 0) +
($2.chlor_a >= 0.0 ? 1 : 0) +
($3.chlor_a >= 0.0 ? 1 : 0))
if you do Math Band directly on the three bands.
How to average images with clouds and ignore these cloud pixels?
-
- Subject Matter Expert
- Posts: 509
- Joined: Tue Feb 09, 2021 5:42 pm America/New_York
- Been thanked: 1 time
-
- Posts: 8
- Joined: Thu Jan 19, 2023 11:41 am America/New_York
Re: How to average images with clouds and ignore these cloud pixels?
Hello! I'm writting to let you know that it worked!
Thank you so much for your help :)
Thank you so much for your help :)