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
if (S->data[GMT_X][row] < S->min[GMT_X]) S->min[GMT_X] = S->data[GMT_X][row];
12357
+
if (S->data[GMT_X][row] > S->max[GMT_X]) S->max[GMT_X] = S->data[GMT_X][row];
12358
+
}
12350
12359
}
12351
12360
}
12352
12361
}
12353
12362
}
12354
12363
else
12355
-
GMT_Report(GMT->parent, GMT_MSG_ERROR, "Not enough information given to gmt_set_inside_mode.\n");
12356
-
GMT_Report(GMT->parent, GMT_MSG_INFORMATION, "A point's inside/outside status w.r.t. polygon(s) will be determined using a %s algorithm.\n", method[GMT->current.proj.sph_inside]);
12364
+
GMT_Report(GMT->parent, GMT_MSG_ERROR, "Not enough information given to gmt_set_inside_mode.\n");
12365
+
GMT_Report(GMT->parent, GMT_MSG_INFORMATION, "A point's inside/outside status w.r.t. polygon(s) will be determined using a %s algorithm.\n", method[GMT->current.proj.sph_inside]);
12357
12366
}
12358
12367
12359
12368
/*! . */
@@ -13238,22 +13247,7 @@ int gmt_grd_BC_set (struct GMT_CTRL *GMT, struct GMT_GRID *G, unsigned int direc
13238
13247
}
13239
13248
13240
13249
/* Clipper to ensure a byte stays in 0-255 range */
0 commit comments