mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 12:27:07 +00:00
Increase the resolution of position errors in bundle.
Note: this does not actually matter as of this commit as we are storing those values as Float32 but it will become relevant when we start packing them as Int16.
This commit is contained in:
@@ -61,8 +61,8 @@ class DougalSequenceLayer extends ScatterplotLayer {
|
||||
i: d.value0.value[index],
|
||||
j: d.value1.value[index],
|
||||
ts: Number(d.value2.value[index]),
|
||||
εi: d.value3.value[index] / 10,
|
||||
εj: d.value4.value[index] / 10,
|
||||
εi: d.value3.value[index] / 100,
|
||||
εj: d.value4.value[index] / 100,
|
||||
delta_μ: d.value5.value[index] / 10,
|
||||
delta_σ: d.value6.value[index] / 10,
|
||||
delta_R: d.value7.value[index] / 10,
|
||||
|
||||
Reference in New Issue
Block a user