You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that floating point error is causing false precision. It looks like it might be possible to round or truncate these numbers at the max precision available in the source data and save some space in the materialized output.
Specifically, 45.250722300000014 could become 45.2507223.
I'm also joining coordinates across runs, so would have a bit more confidence in the veracity of that operation without the polymorphic precision.
The text was updated successfully, but these errors were encountered:
Makes sense! I think the referenced code is on the input side, maybe we need to do some rounding on the output side. Not too sure where the code is anymore..
Here are some coordinates from
runs.geojson
:Note that floating point error is causing false precision. It looks like it might be possible to round or truncate these numbers at the max precision available in the source data and save some space in the materialized output.
Specifically,
45.250722300000014
could become45.2507223
.I'm also joining coordinates across runs, so would have a bit more confidence in the veracity of that operation without the polymorphic precision.
The text was updated successfully, but these errors were encountered: