Skip to content

Commit cf2dc2e

Browse files
authored
More careful with Mollweide (#8239)
* More careful with Mollweide While the fix yesterday handled the bad mapproject results, it caused a failiure in several Mollweide maps and image. This revised fix simply checks that if longitude (which is actually longitude relative to the central longitude) is > 180 then we set it to ±180 plus the central longitude and the same with latitude (0). No more failures. * Update gmt_proj.c
1 parent d8c0d9f commit cf2dc2e

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/gmt_proj.c

+6-5
Original file line numberDiff line numberDiff line change
@@ -2097,16 +2097,17 @@ GMT_LOCAL void gmtproj_imollweide (struct GMT_CTRL *GMT, double *lon, double *la
20972097

20982098
phi = asin (y * GMT->current.proj.w_iy);
20992099
*lon = x / (GMT->current.proj.w_x * cos(phi));
2100-
if ((fabs (*lon) - 180.0) < GMT_CONV9_LIMIT)
2101-
*lon = copysign (180.0, *lon);
2102-
if (fabs (*lon) > 180.0) { /* Beyond Horizon */
2103-
*lat = *lon = GMT->session.d_NaN;
2100+
if (fabs (*lon) > 180.0) { /* Beyond horizon by a whisker so set to 180/0 depending on signs */
2101+
*lat = 0.0;
2102+
*lon = copysign (180.0, *lon) + GMT->current.proj.central_meridian;
21042103
return;
21052104
}
21062105
*lon += GMT->current.proj.central_meridian;
21072106
phi2 = 2.0 * phi;
21082107
*lat = asind ((phi2 + sin (phi2)) / M_PI);
2109-
if (GMT->current.proj.GMT_convert_latitudes) *lat = gmt_M_lata_to_latg (GMT, *lat);
2108+
if (fabs (*lat) > 90.0) /* Sanity check */
2109+
*lat = copysign (90.0, *lat);
2110+
else if (GMT->current.proj.GMT_convert_latitudes) *lat = gmt_M_lata_to_latg (GMT, *lat);
21102111
}
21112112

21122113
/* -JH HAMMER-AITOFF EQUAL AREA PROJECTION */

0 commit comments

Comments
 (0)