Skip to content
Snippets Groups Projects
Commit 33e20128 authored by Julie Brossard's avatar Julie Brossard
Browse files

BUG: Corrected conversion to quantified values in UpdateSynthesis

parent 5f73228a
No related branches found
No related tags found
2 merge requests!11Continuous Integration for WASP,!4WIP: Resolve "Very dark L3A Venus products"
......@@ -574,7 +574,7 @@ float UpdateSynthesisFunctor<TInput,TOutput>::GetPrevL3AReflectanceValue(const T
if(fPixelVal < 0) {
return NO_DATA_VALUE;
}
return fPixelVal/DEFAULT_COMPOSITION_QUANTIF_VALUE;
return fPixelVal/m_fReflQuantifValue;
}
return NO_DATA_VALUE;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment