I tried the following code snippet with the latest GMT.jl version 1.16.0, it shows wrong latitude lines: ``` lon = 0:1:359 lat = -89.5:1:89.5 var = zeros(360,180) g = mat2grid(Array(var'), x = lon, y = lat) c = makecpt(color=:rainbow, range=(-1,1,0.2)) grdimage(g, proj=:Winkel, colorbar=false, coast=true, frame=(annot="60d", grid="60d", title="Winkel"), color=c, par=(MAP_FRAME_TYPE=:plain,FONT=4,FONT_TITLE=8)) showfig() ``` If the longitude coordinates are changed to the following: ``` lon = 0.5:1:359.5 ``` the latitude lines look reasonable. <img width="1377" alt="image" src="https://github.com/user-attachments/assets/82b852df-9122-45bf-84b1-50ba14c31a29">