151 if (xlon *
clon < 0.) {
158 if (fabs(xlon -
clon) > 180.) {
166 if (
clat != lat0_cache) {
168 switch (m_projection_type) {
169 case PROJECTION_MERCATOR:
170 case PROJECTION_WEB_MERCATOR:
171 cache0 = toSMcache_y30(
clat);
173 case PROJECTION_POLAR:
174 cache0 = toPOLARcache_e(
clat);
176 case PROJECTION_ORTHOGRAPHIC:
177 case PROJECTION_STEREOGRAPHIC:
178 case PROJECTION_GNOMONIC:
179 cache_phi0(
clat, &cache0, &cache1);
184 switch (m_projection_type) {
185 case PROJECTION_MERCATOR:
186 case PROJECTION_WEB_MERCATOR:
187 toSMcache(lat, xlon, cache0,
clon, &easting, &northing);
190 case PROJECTION_TRANSVERSE_MERCATOR:
194 double tmeasting, tmnorthing;
195 double tmceasting, tmcnorthing;
197 toTM(lat, xlon, 0.,
clon, &tmeasting, &tmnorthing);
199 northing = tmnorthing - tmcnorthing;
200 easting = tmeasting - tmceasting;
203 case PROJECTION_POLYCONIC:
207 double pceasting, pcnorthing;
210 double peasting, pnorthing;
211 toPOLY(lat, xlon, 0.,
clon, &peasting, &pnorthing);
214 northing = pnorthing - pcnorthing;
217 case PROJECTION_ORTHOGRAPHIC:
218 toORTHO(lat, xlon, cache0, cache1,
clon, &easting, &northing);
221 case PROJECTION_POLAR:
222 toPOLAR(lat, xlon, cache0,
clat,
clon, &easting, &northing);
225 case PROJECTION_STEREOGRAPHIC:
226 toSTEREO(lat, xlon, cache0, cache1,
clon, &easting, &northing);
229 case PROJECTION_GNOMONIC:
230 toGNO(lat, xlon, cache0, cache1,
clon, &easting, &northing);
233 case PROJECTION_EQUIRECTANGULAR:
234 toEQUIRECT(lat, xlon,
clat,
clon, &easting, &northing);
238 printf(
"unhandled projection\n");
241 if (!wxFinite(easting) || !wxFinite(northing))
242 return wxPoint2DDouble(easting, northing);
253 dxr = epix * cos(angle) + npix * sin(angle);
254 dyr = npix * cos(angle) - epix * sin(angle);
265 return wxPoint2DDouble(x, y);
282 xpr = (dx * cos(angle)) - (dy * sin(angle));
283 ypr = (dy * cos(angle)) + (dx * sin(angle));
288 double slat = 0.0, slon = 0.0;
289 switch (m_projection_type) {
290 case PROJECTION_MERCATOR:
291 case PROJECTION_WEB_MERCATOR:
295 fromSM(d_east, d_north,
clat,
clon, &slat, &slon);
298 case PROJECTION_TRANSVERSE_MERCATOR: {
299 double tmceasting, tmcnorthing;
302 fromTM(d_east, d_north + tmcnorthing, 0.,
clon, &slat, &slon);
305 case PROJECTION_POLYCONIC: {
306 double polyeasting, polynorthing;
307 toPOLY(
clat,
clon, 0.,
clon, &polyeasting, &polynorthing);
309 fromPOLY(d_east, d_north + polynorthing, 0.,
clon, &slat, &slon);
312 case PROJECTION_ORTHOGRAPHIC:
313 fromORTHO(d_east, d_north,
clat,
clon, &slat, &slon);
316 case PROJECTION_POLAR:
317 fromPOLAR(d_east, d_north,
clat,
clon, &slat, &slon);
320 case PROJECTION_STEREOGRAPHIC:
321 fromSTEREO(d_east, d_north,
clat,
clon, &slat, &slon);
324 case PROJECTION_GNOMONIC:
325 fromGNO(d_east, d_north,
clat,
clon, &slat, &slon);
328 case PROJECTION_EQUIRECTANGULAR:
329 fromEQUIRECT(d_east, d_north,
clat,
clon, &slat, &slon);
333 printf(
"unhandled projection\n");
340 else if (slon > 180.)
422 const LLRegion &llregion,
423 int chart_native_scale) {
427 std::list<ContourRegion> cregions;
428 for (std::list<poly_contour>::const_iterator i = llregion.contours.begin();
429 i != llregion.contours.end(); i++) {
430 float *contour_points =
new float[2 * i->size()];
432 std::list<contour_pt>::const_iterator j;
433 for (j = i->begin(); j != i->end(); j++) {
434 contour_points[idx++] = j->y;
435 contour_points[idx++] = j->x;
438 double total = 0, maxlat = -90;
440 double x0 = contour_points[0] - contour_points[pl + 0];
441 double y0 = contour_points[1] - contour_points[pl + 1];
443 for (
int p = 0; p < idx; p += 2) {
444 maxlat = wxMax(maxlat, contour_points[p]);
445 int pn = p < idx - 2 ? p + 2 : 0;
446 double x1 = contour_points[pn + 0] - contour_points[p + 0];
447 double y1 = contour_points[pn + 1] - contour_points[p + 1];
448 total += x1 * y0 - x0 * y1;
454 s.subtract = total < 0;
456 chart_native_scale, NULL);
457 delete[] contour_points;
459 std::list<ContourRegion>::iterator k = cregions.begin();
460 while (k != cregions.end()) {
461 if (k->maxlat < s.maxlat)
break;
464 cregions.insert(k, s);
468 for (std::list<ContourRegion>::iterator k = cregions.begin();
469 k != cregions.end(); k++) {
484 int chart_native_scale,
496 float *pfp = llpoints;
497 float lon_max = -10000.;
498 float lon_min = 10000.;
499 float lat_max = -10000.;
500 float lat_min = 10000.;
502 for (
int ip = 0; ip < nPoints; ip++) {
503 lon_max = wxMax(lon_max, pfp[1]);
504 lon_min = wxMin(lon_min, pfp[1]);
505 lat_max = wxMax(lat_max, pfp[0]);
506 lat_min = wxMin(lat_min, pfp[0]);
512 chart_box.Set(lat_min, lon_min, lat_max, lon_max);
516 if (chart_box.IntersectOut(vpBBox))
return OCPNRegion();
526 if (chart_box.IntersectIn(vpBBox))
return Region;
542 pp =
new wxPoint[nPoints];
546 float *pfp = llpoints;
549 int poly_x_max = INVALID_COORD, poly_y_max = INVALID_COORD,
550 poly_x_min = INVALID_COORD, poly_y_min = INVALID_COORD;
554 for (
int ip = 0; ip < nPoints; ip++) {
556 if (p.x == INVALID_COORD)
continue;
561 poly_x_max = wxMax(poly_x_max, p.x);
562 poly_y_max = wxMax(poly_y_max, p.y);
563 poly_x_min = wxMin(poly_x_min, p.x);
564 poly_y_min = wxMin(poly_y_min, p.y);
576 if (ppoints == NULL)
delete[] pp;
583 float_2Dpt p0, p1, p2, p3;
588 bool b_intersect =
false;
590 while (screen_region_it1.HaveRects()) {
591 wxRect rect = screen_region_it1.GetRect();
600 GetLLFromPix(wxPoint(rect.x + rect.width, rect.y), &lat, &lon);
604 GetLLFromPix(wxPoint(rect.x + rect.width, rect.y + rect.height), &lat,
609 GetLLFromPix(wxPoint(rect.x, rect.y + rect.height), &lat, &lon);
613 for (
int i = 0; i < npPoints - 1; i++) {
616 int y1 = pp[i + 1].y;
618 if (((y0 < rect.y) && (y1 < rect.y)) ||
619 ((y0 > rect.y + rect.height) && (y1 > rect.y + rect.height)))
624 f0.y = llpoints[i * 2];
625 f0.x = llpoints[(i * 2) + 1];
627 f1.y = llpoints[(i + 1) * 2];
628 f1.x = llpoints[((i + 1) * 2) + 1];
629 b_intersect |= Intersect_FL(p0, p1, f0, f1) != 0;
630 if (b_intersect)
break;
631 b_intersect |= Intersect_FL(p1, p2, f0, f1) != 0;
632 if (b_intersect)
break;
633 b_intersect |= Intersect_FL(p2, p3, f0, f1) != 0;
634 if (b_intersect)
break;
635 b_intersect |= Intersect_FL(p3, p0, f0, f1) != 0;
636 if (b_intersect)
break;
642 b_intersect |= Intersect_FL(p0, p1, f0, f1) != 0;
643 if (b_intersect)
break;
644 b_intersect |= Intersect_FL(p1, p2, f0, f1) != 0;
645 if (b_intersect)
break;
646 b_intersect |= Intersect_FL(p2, p3, f0, f1) != 0;
647 if (b_intersect)
break;
648 b_intersect |= Intersect_FL(p3, p0, f0, f1) != 0;
649 if (b_intersect)
break;
655 f0.y = llpoints[(nPoints - 1) * 2];
656 f0.x = llpoints[((nPoints - 1) * 2) + 1];
660 b_intersect |= Intersect_FL(p0, p1, f0, f1) != 0;
661 b_intersect |= Intersect_FL(p1, p2, f0, f1) != 0;
662 b_intersect |= Intersect_FL(p2, p3, f0, f1) != 0;
663 b_intersect |= Intersect_FL(p3, p0, f0, f1) != 0;
667 b_intersect |= Intersect_FL(p0, p1, f0, f1) != 0;
668 b_intersect |= Intersect_FL(p1, p2, f0, f1) != 0;
669 b_intersect |= Intersect_FL(p2, p3, f0, f1) != 0;
670 b_intersect |= Intersect_FL(p3, p0, f0, f1) != 0;
673 screen_region_it1.NextRect();
679 bool b_contained =
false;
682 while (screen_region_it2.HaveRects()) {
683 wxRect rect = screen_region_it2.GetRect();
685 for (
int i = 0; i < npPoints - 1; i++) {
689 if ((x0 < rect.x) || (x0 > rect.x + rect.width) || (y0 < rect.y) ||
690 (y0 > rect.y + rect.height))
696 screen_region_it2.NextRect();
702 if (!b_contained && !b_intersect) {
704 wxRect rpoly(poly_x_min, poly_y_min, poly_x_max - poly_x_min,
705 poly_y_max - poly_y_min);
706 wxRect rRegion = Region.GetBox();
707 if (rpoly.Contains(rRegion)) {
717 float rlat = (p0.y + p2.y) / 2.;
718 float rlon = (p0.x + p1.x) / 2.;
720 if (G_PtInPolygon_FL((float_2Dpt *)llpoints, nPoints, rlon, rlat)) {
721 if (NULL == ppoints)
delete[] pp;
725 if (G_PtInPolygon_FL((float_2Dpt *)llpoints, nPoints, rlon, rlat)) {
726 if (NULL == ppoints)
delete[] pp;
732 if (NULL == ppoints)
delete[] pp;
743 if (NULL == ppoints)
delete[] pp;
747 }
else if (b_contained && !b_intersect) {
751 if (NULL == ppoints)
delete[] pp;
758 sigaction(SIGSEGV, NULL,
761 struct sigaction temp;
762 sigaction(SIGSEGV, NULL, &temp);
764 temp.sa_handler = catch_signals;
765 sigemptyset(&temp.sa_mask);
770 sigaction(SIGSEGV, &temp, NULL);
772 if (sigsetjmp(env, 1))
774 sigaction(SIGSEGV, &sa_all_old, NULL);
782 if (NULL == ppoints)
delete[] pp;
784 sigaction(SIGSEGV, &sa_all_old, NULL);
792 if (NULL == ppoints)
delete[] pp;
841 int dy = wxRound(fabs(lpixh * cos(rotator)) + fabs(lpixw * sin(rotator)));
842 int dx = wxRound(fabs(lpixw * cos(rotator)) + fabs(lpixh * sin(rotator)));
846 if (dy % 4) dy += 4 - (dy % 4);
847 if (dx % 4) dx += 4 - (dx % 4);
849 int inflate_x = wxMax((dx -
pix_width) / 2, 0);
850 int inflate_y = wxMax((dy -
pix_height) / 2, 0);
853 rv_rect.Inflate(inflate_x, inflate_y);
861 SetRotationAngle(0.0);
863 wxPoint ul(rv_rect.x, rv_rect.y);
864 wxPoint lr(rv_rect.x + rv_rect.width,
865 rv_rect.y + rv_rect.height);
866 double dlat_min, dlat_max, dlon_min, dlon_max;
868 bool hourglass =
false;
869 switch (m_projection_type) {
870 case PROJECTION_TRANSVERSE_MERCATOR:
871 case PROJECTION_STEREOGRAPHIC:
872 case PROJECTION_GNOMONIC:
875 case PROJECTION_POLYCONIC:
876 case PROJECTION_POLAR:
877 case PROJECTION_ORTHOGRAPHIC: {
881 wxPoint u(rv_rect.x + rv_rect.width / 2, rv_rect.y);
882 wxPoint ur(rv_rect.x + rv_rect.width, rv_rect.y);
888 if (fabs(fabs(d -
clon) - 180) < 1) {
892 }
else if (std::isnan(dlat_max))
897 wxPoint l(rv_rect.x + rv_rect.width / 2, rv_rect.y + rv_rect.height);
900 dlat_min = wxMin(dlat_min, dlat_min2);
903 if (std::isnan(dlat_min))
904 dlat_min =
clat - 90;
906 wxPoint l(rv_rect.x + rv_rect.width / 2, rv_rect.y + rv_rect.height);
907 wxPoint ll(rv_rect.x, rv_rect.y + rv_rect.height);
913 if (fabs(fabs(d -
clon) - 180) < 1) {
917 }
else if (std::isnan(dlat_min))
922 wxPoint u(rv_rect.x + rv_rect.width / 2, rv_rect.y);
925 dlat_max = wxMax(dlat_max, dlat_max2);
928 if (std::isnan(dlat_max))
929 dlat_max =
clat + 90;
932 if (std::isnan(dlon_min)) {
935 if (dlat_max < 90 && dlat_min > -90) {
956 else if (
clon > dlon_max)
960 vpBBox.Set(dlat_min, dlon_min, dlat_max, dlon_max);
963 SetRotationAngle(rotation_save);