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
GMT_Report (GMT->parent, GMT_MSG_WARNING, "Latitude (%g) at line # %"PRIu64" exceeds -|+ 90! - set to NaN\n", GMT->current.io.curr_rec[col_no], GMT->current.io.rec_no);
The equivalent CLI version works as expected. The reason is that, for GMT CLI, gmtio_ascii_input is called to read the data points, but for external wrappers, data are passed in binary buffers, so the gmtio_bin_input is called instead.
I guess the same issue exists for GMT.jl, so it should be declared as a GMT bug.
The text was updated successfully, but these errors were encountered:
seisman
changed the title
Can't plot data points out of the [-180, 180, -90, 90] range in geographic plots
Can't plot data points out of the [-180, 180, -90, 90] range on geographic maps for external wrappers
Oct 28, 2024
See https://forum.generic-mapping-tools.org/t/plotting-points-out-of-90-degree-range/5479 for the initial issue report.
To reproduce the issue:
The error
plot [WARNING]: Latitude (110) at line # 1 exceeds -|+ 90! - set to NaN
comes from thegmtlib_process_binary_input
function.gmt/src/gmt_io.c
Line 4839 in 65e0917
The equivalent CLI version works as expected. The reason is that, for GMT CLI,
gmtio_ascii_input
is called to read the data points, but for external wrappers, data are passed in binary buffers, so thegmtio_bin_input
is called instead.I guess the same issue exists for GMT.jl, so it should be declared as a GMT bug.
The text was updated successfully, but these errors were encountered: