MakieOrg / GeoMakie.jl

Geographical plotting utilities for Makie.jl
https://geo.makie.org
MIT License
161 stars 23 forks source link

Ticks don't always go to extrema, even when they should #234

Open asinghvi17 opened 3 weeks ago

asinghvi17 commented 3 weeks ago

Consider the following:

fig = Figure();
ax = GeoAxis(fig[1, 1])
xlims!(0, 3)
ylims!(0, 3)
plot!(ax, Point2(1.5))

download-1 The axis limits are fine, but there is no tick at 3 degrees north which is a bit odd, considering that both 1 and 2 have ticks. cc @alex-s-gardner

asinghvi17 commented 2 weeks ago

This is specifically a tick finding issue, unrelated to the others.