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
From my perspective, (2) is best fixed by upgrading go-spatial/geom. But that introduces its own trouble in that some float calculations are even more different (exacerbating 1), and backward-incompatible changes have been made.
The text was updated successfully, but these errors were encountered:
Tegola's tests don't pass on M1/M2 Macs for two reasons:
TestGenerateTilesForBounds
fails because of a bug ingo-spatial/geom
(uint
overflow, resulting in implementation-specific behavior—see cmd/compile: casting a negative float to uint64 has different behavior on arm64 and amd64 golang/go#52943). Thegeom
code in question has since been rewritten and does not exhibit the same bug, so upgrading fixes it.From my perspective, (2) is best fixed by upgrading
go-spatial/geom
. But that introduces its own trouble in that some float calculations are even more different (exacerbating 1), and backward-incompatible changes have been made.The text was updated successfully, but these errors were encountered: