137 ShapeBaseChart(
const std::string &filename,
const size_t &min_scale,
138 const wxColor &color = *wxBLACK)
143 _min_scale(min_scale),
147 _is_usable = fs::exists(filename);
151 this->_filename = t._filename;
152 this->_is_usable = t._is_usable;
153 this->_is_tiled = t._is_tiled;
154 this->_min_scale = t._min_scale;
155 this->_reader =
nullptr;
156 this->_color = t._color;
158 this->_loading = t._loading;
165 void SetColor(wxColor color) { _color = color; }
192 bool IsUsable() {
return _is_usable && !_loading; }
193 size_t MinScale() {
return _min_scale; }
194 void RenderViewOnDC(
ocpnDC &dc,
ViewPort &vp) { DrawPolygonFilled(dc, vp); }
195 static const std::string ConstructPath(
const std::string &dir,
196 const std::string &quality_suffix) {
197 return std::string(dir + fs::path::preferred_separator +
"basemap_" +
198 quality_suffix +
".shp");
218 bool CrossesLand(
double &lat1,
double &lon1,
double &lat2,
double &lon2);
224 std::future<bool> _loaded;
240 const shp::Feature &feature);
242 const shp::Feature &feature);
244 void AddPointToTessList(shp::Point &point,
ViewPort &vp, GLUtesselator *tobj,
251 std::string _filename;
258 shp::ShapefileReader *_reader;
265 std::unordered_map<LatLonKey, std::vector<size_t>> _tiles;
296 bool LineLineIntersect(
const std::pair<double, double> &A,
297 const std::pair<double, double> &B,
298 const std::pair<double, double> &C,
299 const std::pair<double, double> &D);
319 bool PolygonLineIntersect(
const shp::Feature &feature,
320 const std::pair<double, double> &A,
321 const std::pair<double, double> &B);
333 static wxPoint2DDouble GetDoublePixFromLL(
ViewPort &vp,
double lat,
336 void SetBasemapLandColor(wxColor color);
337 wxColor GetBasemapLandColor();
348 return _basemap_map.size() > 0 && LowestQualityBaseMap().
IsUsable();
362 bool CrossesLand(
double lat1,
double lon1,
double lat2,
double lon2) {
364 return HighestQualityBaseMap().
CrossesLand(lat1, lon1, lat2, lon2);
370 for (
auto &pair : _basemap_map) {
371 pair.second.CancelLoading();
373 _basemap_map.clear();
379 void LoadBasemaps(
const std::string &dir);
380 void DrawPolygonFilled(
ocpnDC &pnt,
ViewPort &vp, wxColor
const &color);
382 wxColor
const &color,
bool idl);
408 std::map<Quality, ShapeBaseChart> _basemap_map;
bool CrossesLand(double lat1, double lon1, double lat2, double lon2)
Determines if a line segment between two geographical points crosses any land mass.
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 ...