mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
statistics: fix 20 m binner
Copy&paste error: the 20 m binner binned to 10 m. Reported-by: Peter Zaal <peter.zaal@gmail.com> Reported-by: Rick Walsh <rickmwalsh@gmail.com> Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
bbdd34d069
commit
f6b857b8fe
1 changed files with 1 additions and 1 deletions
|
@ -1000,7 +1000,7 @@ struct DepthVariableBase : public StatsVariableTemplate<StatsVariable::Type::Num
|
|||
DepthBinner feet15, feet30, feet60;
|
||||
DepthVariableBase(bool mean) :
|
||||
mean(mean),
|
||||
meter5(5, true, mean), meter10(10, true, mean), meter20(10, true, mean),
|
||||
meter5(5, true, mean), meter10(10, true, mean), meter20(20, true, mean),
|
||||
feet15(15, false, mean), feet30(30, false, mean), feet60(60, false, mean)
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue