30#include "OCPNPlatform.h"
31#include "shapefile_basemap.h"
33#include "glChartCanvas.h"
42#define __CALL_CONVENTION
44#define __CALL_CONVENTION
48extern wxString gWorldShapefileLocation;
65static std::list<float_2Dpt> g_pvshp;
66static std::list<GLvertexshp *> g_vertexesshp;
67static int g_typeshp, g_posshp;
68static float_2Dpt g_p1shp, g_p2shp;
70void __CALL_CONVENTION shpscombineCallback(GLdouble coords[3],
71 GLdouble *vertex_data[4],
76 vertex =
new GLvertexshp();
77 g_vertexesshp.push_back(vertex);
79 vertex->info.x = coords[0];
80 vertex->info.y = coords[1];
82 *dataOut = vertex->data;
85void __CALL_CONVENTION shpserrorCallback(GLenum errorCode) {
86 const GLubyte *estring;
87 estring = gluErrorString(errorCode);
91void __CALL_CONVENTION shpsbeginCallback(GLenum type) {
94 case GL_TRIANGLE_STRIP:
99 printf(
"tess unhandled begin type: %d\n", type);
105void __CALL_CONVENTION shpsendCallback() {}
107void __CALL_CONVENTION shpsvertexCallback(GLvoid *arg) {
109 vertex = (GLvertexshp *)arg;
111 p.y = vertex->info.x;
112 p.x = vertex->info.y;
115 if (g_typeshp != GL_TRIANGLES) {
117 g_pvshp.push_back(g_p1shp);
118 g_pvshp.push_back(g_p2shp);
121 if (g_typeshp == GL_TRIANGLE_STRIP)
123 else if (g_posshp == 0)
128 g_pvshp.push_back(p);
133ShapeBaseChartSet::ShapeBaseChartSet() : _loaded(false) {
134 land_color = wxColor(170, 175, 80);
136void ShapeBaseChartSet::SetBasemapLandColor(wxColor color) {
139wxColor ShapeBaseChartSet::GetBasemapLandColor() {
return land_color; }
141wxPoint2DDouble ShapeBaseChartSet::GetDoublePixFromLL(
ViewPort &vp,
double lat,
144 p.m_x -= vp.rv_rect.x, p.m_y -= vp.rv_rect.y;
149 if (_basemap_map.find(Quality::crude) != _basemap_map.end()) {
150 return _basemap_map.at(Quality::crude);
152 if (_basemap_map.find(Quality::low) != _basemap_map.end()) {
153 return _basemap_map.at(Quality::low);
155 if (_basemap_map.find(Quality::medium) != _basemap_map.end()) {
156 return _basemap_map.at(Quality::medium);
158 if (_basemap_map.find(Quality::high) != _basemap_map.end()) {
159 return _basemap_map.at(Quality::high);
161 return _basemap_map.at(Quality::full);
165 if (_basemap_map.find(Quality::full) != _basemap_map.end()) {
166 return _basemap_map.at(Quality::full);
168 if (_basemap_map.find(Quality::high) != _basemap_map.end()) {
169 return _basemap_map.at(Quality::high);
171 if (_basemap_map.find(Quality::medium) != _basemap_map.end()) {
172 return _basemap_map.at(Quality::medium);
174 if (_basemap_map.find(Quality::low) != _basemap_map.end()) {
175 return _basemap_map.at(Quality::low);
177 return _basemap_map.at(Quality::crude);
181 if (_basemap_map.find(Quality::full) != _basemap_map.end() &&
182 _basemap_map.at(Quality::full).IsUsable() &&
183 scale <= _basemap_map.at(Quality::full).MinScale()) {
184 return _basemap_map.at(Quality::full);
185 }
else if (_basemap_map.find(Quality::high) != _basemap_map.end() &&
186 _basemap_map.at(Quality::high).IsUsable() &&
187 scale <= _basemap_map.at(Quality::high).MinScale()) {
188 return _basemap_map.at(Quality::high);
189 }
else if (_basemap_map.find(Quality::medium) != _basemap_map.end() &&
190 _basemap_map.at(Quality::medium).IsUsable() &&
191 scale <= _basemap_map.at(Quality::medium).MinScale()) {
192 return _basemap_map.at(Quality::medium);
193 }
else if (_basemap_map.find(Quality::low) != _basemap_map.end() &&
194 _basemap_map.at(Quality::low).IsUsable() &&
195 scale <= _basemap_map.at(Quality::low).MinScale()) {
196 return _basemap_map.at(Quality::low);
198 return LowestQualityBaseMap();
201void ShapeBaseChartSet::Reset() {
203 wxString basemap_dir;
204 if (gWorldShapefileLocation.empty()) {
205 basemap_dir = g_Platform->GetSharedDataDir();
206 basemap_dir.Append(
"basemap_shp");
208 basemap_dir = gWorldShapefileLocation;
211 LoadBasemaps(basemap_dir.ToStdString());
213void ShapeBaseChartSet::LoadBasemaps(
const std::string &dir) {
215 _basemap_map.clear();
217 if (fs::exists(ShapeBaseChart::ConstructPath(dir,
"crude_10x10"))) {
218 auto c =
ShapeBaseChart(ShapeBaseChart::ConstructPath(dir,
"crude_10x10"),
219 300000000, land_color);
221 _basemap_map.insert(std::make_pair(Quality::crude, c));
224 if (fs::exists(ShapeBaseChart::ConstructPath(dir,
"low"))) {
225 _basemap_map.insert(std::make_pair(
226 Quality::low,
ShapeBaseChart(ShapeBaseChart::ConstructPath(dir,
"low"),
227 15000000, land_color)));
229 if (fs::exists(ShapeBaseChart::ConstructPath(dir,
"medium"))) {
230 _basemap_map.insert(std::make_pair(
232 ShapeBaseChart(ShapeBaseChart::ConstructPath(dir,
"medium"), 1000000,
235 if (fs::exists(ShapeBaseChart::ConstructPath(dir,
"high"))) {
236 _basemap_map.insert(std::make_pair(
238 ShapeBaseChart(ShapeBaseChart::ConstructPath(dir,
"high"), 300000,
241 if (fs::exists(ShapeBaseChart::ConstructPath(dir,
"full"))) {
242 _basemap_map.insert(std::make_pair(
253 if (!fs::exists(_filename)) {
257 std::unique_ptr<shp::ShapefileReader> temp_reader(
258 new shp::ShapefileReader(_filename));
259 if (!temp_reader->isOpen()) {
260 MESSAGE_LOG <<
"Shapefile " << _filename <<
" is not opened";
268 auto bounds = temp_reader->getBounds();
269 _is_usable = temp_reader->getCount() > 1 && bounds.getMaxX() <= 180 &&
270 bounds.getMinX() >= -180 && bounds.getMinY() >= -90 &&
278 _is_usable &= temp_reader->getGeometryType() == shp::GeometryType::Polygon;
281 for (
auto field : temp_reader->getFields()) {
282 if (field.getName() ==
"x") {
284 }
else if (field.getName() ==
"y") {
288 _is_tiled = (has_x && has_y);
289 if (_is_usable && _is_tiled) {
291 for (
auto const &feature : *temp_reader) {
297 auto f1 = feature.getAttributes();
300 _tiles[
LatLonKey(std::any_cast<int>(feature.getAttributes()[
"y"]),
301 std::any_cast<int>(feature.getAttributes()[
"x"]))]
307 _reader = temp_reader.release();
312void ShapeBaseChart::DoDrawPolygonFilled(
ocpnDC &pnt,
ViewPort &vp,
313 const shp::Feature &feature) {
314 double old_x = -9999999.0, old_y = -9999999.0;
315 auto polygon =
static_cast<shp::Polygon *
>(feature.getGeometry());
316 pnt.SetBrush(_color);
317 for (
auto &ring : polygon->getRings()) {
318 wxPoint *poly_pt =
new wxPoint[ring.getPoints().size()];
320 auto bbox = vp.GetBBox();
321 for (
auto &point : ring.getPoints()) {
324 ShapeBaseChartSet::GetDoublePixFromLL(vp, point.getY(), point.getX());
325 if (round(q.m_x) != round(old_x) || round(q.m_y) != round(old_y)) {
326 poly_pt[cnt].x = round(q.m_x);
327 poly_pt[cnt].y = round(q.m_y);
335 pnt.DrawPolygonTessellated(cnt, poly_pt, 0, 0);
341void ShapeBaseChart::AddPointToTessList(shp::Point &point,
ViewPort &vp,
342 GLUtesselator *tobj,
bool idl) {
346 if (glChartCanvas::HasNormalizedViewPort(vp)) {
347 q = ShapeBaseChartSet::GetDoublePixFromLL(vp, point.getY(), point.getX());
349 q.m_x = point.getY(), q.m_y = point.getX();
351 GLvertexshp *vertex =
new GLvertexshp();
352 g_vertexesshp.push_back(vertex);
353 if (vp.m_projection_type != PROJECTION_POLAR) {
357 if (idl && (point.getX() == 180)) {
358 if (vp.m_projection_type == PROJECTION_MERCATOR ||
359 vp.m_projection_type == PROJECTION_EQUIRECTANGULAR) {
367 vertex->info.x = q.m_x;
368 vertex->info.y = q.m_y;
370 gluTessVertex(tobj, (GLdouble *)vertex, (GLdouble *)vertex);
374void ShapeBaseChart::DoDrawPolygonFilledGL(
ocpnDC &pnt,
ViewPort &vp,
375 const shp::Feature &feature) {
379 vp.GetBBox().GetMinLon() <= -180 || vp.GetBBox().GetMaxLon() >= 180;
380 auto polygon =
static_cast<shp::Polygon *
>(feature.getGeometry());
381 for (
auto &ring : polygon->getRings()) {
383 GLUtesselator *tobj = gluNewTess();
385 gluTessCallback(tobj, GLU_TESS_VERTEX, (_GLUfuncptr)&shpsvertexCallback);
386 gluTessCallback(tobj, GLU_TESS_BEGIN, (_GLUfuncptr)&shpsbeginCallback);
387 gluTessCallback(tobj, GLU_TESS_END, (_GLUfuncptr)&shpsendCallback);
388 gluTessCallback(tobj, GLU_TESS_COMBINE, (_GLUfuncptr)&shpscombineCallback);
389 gluTessCallback(tobj, GLU_TESS_ERROR, (_GLUfuncptr)&shpserrorCallback);
391 gluTessNormal(tobj, 0, 0, 1);
392 gluTessProperty(tobj, GLU_TESS_WINDING_RULE, GLU_TESS_WINDING_NONZERO);
394 gluTessBeginPolygon(tobj, NULL);
395 gluTessBeginContour(tobj);
396 for (
auto &point : ring.getPoints()) {
397 AddPointToTessList(point, vp, tobj, idl);
400 gluTessEndContour(tobj);
401 gluTessEndPolygon(tobj);
404 for (
auto ver : g_vertexesshp) delete ver;
405 g_vertexesshp.clear();
407 float_2Dpt *polyv =
new float_2Dpt[g_pvshp.size()];
409 for (
auto pt : g_pvshp) {
412 size_t polycnt = g_pvshp.size();
420 mat4x4_scale_aniso(mvp, m, 2.0 / (
float)vp.
pix_width,
424 float *pvt =
new float[2 * (polycnt)];
425 for (
size_t i = 0; i < polycnt; i++) {
426 float_2Dpt *pc = polyv + i;
431 pvt[(i * 2) + 1] = q.m_y;
434 GLShaderProgram *shader = pcolor_tri_shader_program[pnt.m_canvasIndex];
438 colorv[0] = _color.Red() / float(256);
439 colorv[1] = _color.Green() / float(256);
440 colorv[2] = _color.Blue() / float(256);
442 shader->SetUniform4fv(
"color", colorv);
444 shader->SetAttributePointerf(
"position", pvt);
446 glDrawArrays(GL_TRIANGLES, 0, polycnt);
451 glDeleteBuffers(1, &vbo);
456void ShapeBaseChart::DrawPolygonFilled(
ocpnDC &pnt,
ViewPort &vp) {
460 if (!_reader && !_loading) {
462 _loaded = std::async(std::launch::async, [&]() {
469 if (_loaded.wait_for(std::chrono::milliseconds(0)) ==
470 std::future_status::ready) {
471 _is_usable = _loaded.get();
478 LLBBox bbox = vp.GetBBox();
482 int lat_start = floor(bbox.GetMinLat());
484 lat_start = lat_start - (pmod + (lat_start % pmod));
486 lat_start = lat_start - (lat_start % pmod);
490 int lon_start = floor(bbox.GetMinLon());
492 lon_start = lon_start - (pmod + (lon_start % pmod));
494 lon_start = lon_start - (lon_start % pmod);
497 for (
int i = lat_start; i < ceil(bbox.GetMaxLat()) + pmod; i += pmod) {
498 for (
int j = lon_start; j < ceil(bbox.GetMaxLon()) + pmod; j += pmod) {
502 }
else if (j >= 180) {
505 for (
auto fid : _tiles[
LatLonKey(i, lon)]) {
506 auto const &feature = _reader->getFeature(fid);
508 DoDrawPolygonFilled(pnt, vp,
511 DoDrawPolygonFilledGL(pnt, vp,
518 for (
auto const &feature : *_reader) {
520 DoDrawPolygonFilled(pnt, vp,
523 DoDrawPolygonFilledGL(pnt, vp,
532 if (!_reader && !_loading) {
534 _loaded = std::async(std::launch::async, [&]() {
541 if (_loaded.wait_for(std::chrono::milliseconds(0)) ==
542 std::future_status::ready) {
543 _is_usable = _loaded.get();
550 double norm_lon1 = lon1;
551 double norm_lon2 = lon2;
553 while (norm_lon1 < -180) norm_lon1 += 360;
554 while (norm_lon1 > 180) norm_lon1 -= 360;
555 while (norm_lon2 < -180) norm_lon2 += 360;
556 while (norm_lon2 > 180) norm_lon2 -= 360;
559 auto A = std::make_pair(lat1, norm_lon1);
560 auto B = std::make_pair(lat2, norm_lon2);
564 double minLat = std::min(lat1, lat2);
565 double maxLat = std::max(lat1, lat2);
566 double minLon = std::min(norm_lon1, norm_lon2);
567 double maxLon = std::max(norm_lon1, norm_lon2);
579 for (
int i = latmin; i <= latmax; i +=
_dmod) {
580 for (
int j = lonmin; j < lonmax; j +=
_dmod) {
583 while (lon < -180) lon += 360;
584 while (lon >= 180) lon -= 360;
587 auto tileIter = _tiles.find(
LatLonKey(i, lon));
588 if (tileIter != _tiles.end()) {
589 for (
auto fid : tileIter->second) {
590 auto const &feature = _reader->getFeature(fid);
591 if (PolygonLineIntersect(feature, A, B)) {
600 for (
auto const &feature : *_reader) {
601 if (PolygonLineIntersect(feature, A, B)) {
613 if (_loaded.valid()) {
619bool ShapeBaseChart::LineLineIntersect(
const std::pair<double, double> &A,
620 const std::pair<double, double> &B,
621 const std::pair<double, double> &C,
622 const std::pair<double, double> &D) {
623 constexpr double EPSILON = 1e-9;
626 double minABx = std::min(A.first, B.first);
627 double maxABx = std::max(A.first, B.first);
628 double minCDx = std::min(C.first, D.first);
629 double maxCDx = std::max(C.first, D.first);
631 if (maxABx < minCDx || maxCDx < minABx)
return false;
633 double minABy = std::min(A.second, B.second);
634 double maxABy = std::max(A.second, B.second);
635 double minCDy = std::min(C.second, D.second);
636 double maxCDy = std::max(C.second, D.second);
638 if (maxABy < minCDy || maxCDy < minABy)
return false;
641 double a1 = B.second - A.second;
642 double b1 = A.first - B.first;
643 double c1 = a1 * A.first + b1 * A.second;
646 double a2 = D.second - C.second;
647 double b2 = C.first - D.first;
648 double c2 = a2 * C.first + b2 * C.second;
650 double determinant = a1 * b2 - a2 * b1;
652 if (std::abs(determinant) < EPSILON) {
656 if (std::abs(a1 * C.first + b1 * C.second - c1) < EPSILON &&
657 std::abs(a1 * D.first + b1 * D.second - c1) < EPSILON) {
659 return !(maxABx < minCDx || maxCDx < minABx || maxABy < minCDy ||
666 double x = (b2 * c1 - b1 * c2) / determinant;
667 double y = (a1 * c2 - a2 * c1) / determinant;
670 return (minABx <= x && x <= maxABx && minABy <= y && y <= maxABy &&
671 minCDx <= x && x <= maxCDx && minCDy <= y && y <= maxCDy);
674bool ShapeBaseChart::PolygonLineIntersect(
const shp::Feature &feature,
675 const std::pair<double, double> &A,
676 const std::pair<double, double> &B) {
677 auto geometry = feature.getGeometry();
683 auto polygon =
dynamic_cast<shp::Polygon *
>(geometry);
689 double minLat = std::min(A.first, B.first);
690 double maxLat = std::max(A.first, B.first);
691 double minLon = std::min(A.second, B.second);
692 double maxLon = std::max(A.second, B.second);
694 for (
auto &ring : polygon->getRings()) {
695 const auto &points = ring.getPoints();
696 if (points.size() < 3)
continue;
699 double minRingLat = std::numeric_limits<double>::max();
700 double maxRingLat = std::numeric_limits<double>::lowest();
701 double minRingLon = std::numeric_limits<double>::max();
702 double maxRingLon = std::numeric_limits<double>::lowest();
705 std::vector<std::pair<double, double>> ringPoints;
706 ringPoints.reserve(points.size());
708 for (
const auto &point : points) {
709 double lat = point.getY();
710 double lon = point.getX();
712 minRingLat = std::min(minRingLat, lat);
713 maxRingLat = std::max(maxRingLat, lat);
714 minRingLon = std::min(minRingLon, lon);
715 maxRingLon = std::max(maxRingLon, lon);
717 ringPoints.emplace_back(lat, lon);
721 if (maxLat < minRingLat || minLat > maxRingLat || maxLon < minRingLon ||
722 minLon > maxRingLon) {
727 size_t numPoints = ringPoints.size();
728 std::pair<double, double> previous = ringPoints.back();
730 for (
size_t i = 0; i < numPoints; i++) {
731 const auto ¤t = ringPoints[i];
733 if (LineLineIntersect(A, B, previous, current)) {
747 chart.SetColor(land_color);
748 chart.RenderViewOnDC(dc, vp);
Wrapper class for OpenGL shader programs.
A latitude/longitude key for 1x1 or 10x10 degree grid tiles.
bool IsUsable()
Checks if the chart set contains at least one usable chart.
Represents a basemap chart based on shapefile data.
bool CrossesLand(double &lat1, double &lon1, double &lat2, double &lon2)
Determines if a line segment between two geographical points intersects any land mass represented in ...
void CancelLoading()
Cancel the chart loading operation.
int _dmod
Tile size in degrees.
bool LoadSHP()
Loads the shapefile data into memory.
ViewPort - Core geographic projection and coordinate transformation engine.
int pix_height
Height of the viewport in physical pixels.
int pix_width
Width of the viewport in physical pixels.
wxPoint2DDouble GetDoublePixFromLL(double lat, double lon)
Convert latitude and longitude on the ViewPort to physical pixel coordinates with double precision.
double chart_scale
Chart scale denominator (e.g., 50000 for a 1:50000 scale).
Device context class that can use either wxDC or OpenGL for drawing.
Enhanced logging interface on top of wx/log.h.