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
which returns [3.499999729683623e-5, 3.9999998989515007e-5] instead of [3.5, 4.0] (for some reason a multiplication of a factor 1e-5 has occured). The same issue for ax.finallimits[].origin
The text was updated successfully, but these errors were encountered:
#207 should fix this. That was expected behaviour earlier, the reason is that Makie used to run only on Float32, so we rescaled projections by 100_000 so that there was still enough float precision to do things. With #207 all computations are in Float64 which is substantially better.
A bug for
v0.6.1
can be reproduced byusing GLMakie, GeoMakie; fig = Figure(); layout = fig[1,1] = GridLayout(); ax = GeoMakie.GeoAxis(layout[1,1], source="+proj=merc", dest="+proj=merc"); text!(ax,0.0,0.0,text="test"); limits!(ax,[-1.0, 2.5],[-2.0, 2.0]); println(ax.finallimits[].widths); display(fig)
which returns
[3.499999729683623e-5, 3.9999998989515007e-5]
instead of[3.5, 4.0]
(for some reason a multiplication of a factor 1e-5 has occured). The same issue forax.finallimits[].origin
The text was updated successfully, but these errors were encountered: