OpenCPN Partial API docs
Loading...
Searching...
No Matches
gshhs.h
1/******************************************************************************
2 *
3 * Project: OpenCPN
4 * Purpose: GSHHS Chart Object (Global Self-consistent, Hierarchical,
5 *High-resolution Shoreline) Author: Jesper Weissglas for the OpenCPN port.
6 *
7 * Derived from http://www.zygrib.org/ and
8 *http://sourceforge.net/projects/qtvlm/ which has the original copyright:
9 * zUGrib: meteorologic GRIB file data viewer
10 * Copyright (C) 2008 - Jacques Zaninetti - http://www.zygrib.org
11 *
12 ***************************************************************************
13 * Copyright (C) 2012 by David S. Register *
14 * *
15 * This program is free software; you can redistribute it and/or modify *
16 * it under the terms of the GNU General Public License as published by *
17 * the Free Software Foundation; either version 2 of the License, or *
18 * (at your option) any later version. *
19 * *
20 * This program is distributed in the hope that it will be useful, *
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
23 * GNU General Public License for more details. *
24 * *
25 * You should have received a copy of the GNU General Public License *
26 * along with this program; if not, write to the *
27 * Free Software Foundation, Inc., *
28 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
29 ***************************************************************************
30 *
31 *
32 */
33
34#ifndef GSHHS_H
35#define GSHHS_H
36
37#include <stdio.h>
38#include <string>
39#include <math.h>
40#include <assert.h>
41#include <vector>
42
43#include <wx/geometry.h>
44
45#include "model/ocpn_types.h"
46// #include "ocpndc.h"
47#include "viewport.h"
48#include "model/cutil.h"
49#include "poly_math.h"
50#include "color_types.h"
51
52#ifdef __MSVC__
53#pragma warning(disable : 4251) // relates to std::string fpath
54#endif
55
56//-------------------------------------------------------------------------
57// Subset of original Projection, only whats needed for GSHHS.
58
59#ifndef M_PI_2
60#define M_PI_2 1.57079632679489661923
61#endif
62#ifndef M_PI_4
63#define M_PI_4 0.785398163397448309616
64#endif
65
66//-------------------------------------------------------------------------
67class wxLineF {
68public:
69 wxLineF(double x1, double y1, double x2, double y2) {
70 m_p1 = wxRealPoint(x1, y1);
71 m_p2 = wxRealPoint(x2, y2);
72 }
73 wxRealPoint &p1() { return m_p1; }
74 wxRealPoint &p2() { return m_p2; }
75 wxRealPoint m_p1, m_p2;
76};
77
79 int version; // Version number of the GSHHS data format
80 int pasx; // Longitude step size for cells (1/10th degree)
81 int pasy; // Latitude step size for cells (1/10th degree)
82 // xmin, ymin, xmax, ymax define the bounding box of the entire grid in 1/10th
83 // of a degree. This allows for quick determination of whether a given point
84 // is within the covered area.
85 int xmin; // Minimum longitude of the grid (1/10th degree)
86 int ymin; // Minimum latitude of the grid (1/10th degree)
87 int xmax; // Maximum longitude of the grid (1/10th degree)
88 int ymax; // Maximum latitude of the grid (1/10th degree)
89 int p1; // Spare (reserved for future use)
90 int p2; // Spare (reserved for future use)
91 int p3; // Spare (reserved for future use)
92 int p4; // Spare (reserved for future use)
93 int p5; // Spare (reserved for future use)
94};
95
96typedef std::vector<wxRealPoint> contour;
97typedef std::vector<contour> contour_list;
98#define GSSH_SUBM 16 // divide each cell to 16x16 sub cells
99
100//==========================================================================
101
103public:
104 GshhsPolyCell(FILE *fpoly, int x0, int y0, PolygonFileHeader *header);
106
107 void ClearPolyV();
108
109 void drawMapPlain(ocpnDC &pnt, double dx, ViewPort &vp, wxColor seaColor,
110 wxColor landColor, bool idl);
111
112 void drawSeaBorderLines(ocpnDC &pnt, double dx, ViewPort &vp);
113 std::vector<wxLineF> *getCoasts() { return &coasts; }
114 contour_list &getPoly1() { return poly1; }
115
116 /* we remap the segments into a high resolution map to
117 greatly reduce intersection testing time */
118 std::vector<wxLineF> *high_res_map[GSSH_SUBM * GSSH_SUBM];
119
120private:
121 int nbpoints;
122 int x0cell, y0cell;
123
124 FILE *fpoly;
125
126 std::vector<wxLineF> coasts;
127 PolygonFileHeader *header;
128 contour_list poly1, poly2, poly3, poly4, poly5;
129
130 // used for opengl vertex cache
131 float_2Dpt *polyv[6];
132 int polyc[6];
133
134 void DrawPolygonFilled(ocpnDC &pnt, contour_list *poly, double dx,
135 ViewPort &vp, wxColor const &color);
136#ifdef ocpnUSE_GL
137 void DrawPolygonFilledGL(ocpnDC &pnt, contour_list *p, float_2Dpt **pv,
138 int *pvc, ViewPort &vp, wxColor const &color,
139 bool idl);
140#endif
141 void DrawPolygonContour(ocpnDC &pnt, contour_list *poly, double dx,
142 ViewPort &vp);
143
144 void ReadPoly(contour_list &poly);
145 void ReadPolygonFile();
146};
147
149public:
150 GshhsPolyReader(int quality);
152
153 void drawGshhsPolyMapPlain(ocpnDC &pnt, ViewPort &vp, wxColor const &seaColor,
154 wxColor const &landColor);
155
156 void drawGshhsPolyMapSeaBorders(ocpnDC &pnt, ViewPort &vp);
157
158 void InitializeLoadQuality(int quality); // 5 levels: 0=low ... 4=full
159 bool crossing1(wxLineF trajectWorld);
160 int currentQuality;
161 int ReadPolyVersion();
162 int GetPolyVersion() { return polyHeader.version; }
163
164private:
165 FILE *fpoly;
166 GshhsPolyCell *allCells[360][180];
167
168 PolygonFileHeader polyHeader;
169 void readPolygonFileHeader(FILE *polyfile, PolygonFileHeader *header);
170
171 wxMutex mutex1, mutex2;
172
173 ViewPort last_rendered_vp;
174};
175
176// GSHHS file format:
177//
178// int id; /* Unique polygon id number, starting at 0 */
179// int n; /* Number of points in this polygon */
180// int flag; /* level + version << 8 + greenwich << 16 + source <<
181// 24 */ int west, east, south, north; /* min/max extent in micro-degrees */ int
182// area; /* Area of polygon in 1/10 km^2 */
183//
184// Here, level, version, greenwhich, and source are
185// level: 1 land, 2 lake, 3 island_in_lake, 4 pond_in_island_in_lake
186// version: Set to 4 for GSHHS version 1.4
187// greenwich: 1 if Greenwich is crossed
188// source: 0 = CIA WDBII, 1 = WVS
189
190//==========================================================
192public:
193 double lon, lat; // longitude, latitude
194 GshhsPoint(double lo, double la) {
195 lon = lo;
196 lat = la;
197 }
198};
199
200//==========================================================
201
203public:
204 GshhsPolygon(FILE *file);
205
206 virtual ~GshhsPolygon();
207
208 int getLevel() { return flag & 255; }
209 int isGreenwich() { return greenwich; }
210 int isAntarctic() { return antarctic; }
211 bool isOk() { return ok; }
212 int readInt4();
213 int readInt2();
214
215 int id; /* Unique polygon id number, starting at 0 */
216 int n; /* Number of points in this polygon */
217 int flag; /* level + version << 8 + greenwich << 16 + source << 24 */
218 double west, east, south, north; /* min/max extent in DEGREES */
219 int area; /* Area of polygon in 1/10 km^2 */
220 int areaFull, container, ancestor;
221
222 std::vector<GshhsPoint *> lsPoints;
223
224protected:
225 FILE *file;
226 bool ok;
227 bool greenwich, antarctic;
228};
229
230//==========================================================
231
233public:
234 GshhsReader();
235 ~GshhsReader();
236
237 void drawContinents(ocpnDC &pnt, ViewPort &vp, wxColor const &seaColor,
238 wxColor const &landColor);
239
240 void drawSeaBorders(ocpnDC &pnt, ViewPort &vp);
241 void drawBoundaries(ocpnDC &pnt, ViewPort &vp);
242 void drawRivers(ocpnDC &pnt, ViewPort &vp);
243
244 int GetPolyVersion() { return gshhsPoly_reader->GetPolyVersion(); }
245
246 static wxString getNameExtension(int quality);
247 static wxString getFileName_boundaries(int quality);
248 static wxString getFileName_rivers(int quality);
249 static wxString getFileName_Land(int quality);
250 static bool gshhsFilesExists(int quality);
251
252 int getQuality() { return quality; }
253
254 // bool crossing( wxLineF traject, wxLineF trajectWorld ) const;
255 bool crossing1(wxLineF trajectWorld);
256 // Open the polygon file, read and return the version from the header.
257 int ReadPolyVersion();
258 bool qualityAvailable[6];
259
260 void LoadQuality(int quality);
261 int GetMinAvailableQuality() { return minQualityAvailable; }
262 int GetMaxAvailableQuality() { return maxQualityAvailable; }
263
264private:
265 int quality; // 5 levels: 0=low ... 4=full
266 int selectBestQuality(void);
281 int selectBestQuality(ViewPort &vp);
282
283 int maxQualityAvailable;
284 int minQualityAvailable;
285
286 std::string fpath; // directory containing gshhs files
287
288 GshhsPolyReader *gshhsPoly_reader;
289
290 std::vector<GshhsPolygon *> *lsPoly_boundaries[5];
291 std::vector<GshhsPolygon *> *lsPoly_rivers[5];
292
293 std::vector<GshhsPolygon *> &getList_boundaries();
294 std::vector<GshhsPolygon *> &getList_rivers();
295 //-----------------------------------------------------
296
297 int GSHHS_scaledPoints(GshhsPolygon *pol, wxPoint *pts, double decx,
298 ViewPort &vp);
299
300 void GsshDrawLines(ocpnDC &pnt, std::vector<GshhsPolygon *> &lst,
301 ViewPort &vp, bool isClosed);
302 void clearLists();
303};
304
305inline bool GshhsReader::crossing1(wxLineF trajectWorld) {
306 return this->gshhsPoly_reader->crossing1(trajectWorld);
307}
308#define GSHHS_SCL 1.0e-6 /* Convert micro-degrees to degrees */
309
310//-------------------------------------------------------------------------------
311
313public:
314 GSHHSChart();
315 ~GSHHSChart();
316 void SetColorScheme(ColorScheme scheme);
317 void RenderViewOnDC(ocpnDC &dc, ViewPort &VPoint);
318 void Reset();
319 void SetColorsDirect(wxColour newLand, wxColour newWater);
320
321 wxColor land;
322 wxColor water;
323 int GetMinAvailableQuality();
324 int GetMaxAvailableQuality();
325
326private:
327 GshhsReader *reader;
328};
329
330/*
331 * Create a GSHHS singleton for detecting land crossing and load the data
332 * from GSHHS files on disk.
333 */
334void gshhsCrossesLandInit();
335/*
336 * Reset the GSHHS singleton and reload the data from the GSHHS files on disk.
337 * For example, this should be invoked when new GSHHS files have been installed.
338 */
339void gshhsCrossesLandReset();
340/*
341 * Detects if the rectangle specified with the coordinates crosses land.
342 * The best available quality is used, regardless of the chart scale.
343 */
344bool gshhsCrossesLand(double lat1, double lon1, double lat2, double lon2);
345
346#endif
ViewPort - Core geographic projection and coordinate transformation engine.
Definition viewport.h:81
Device context class that can use either wxDC or OpenGL for drawing.
Definition ocpndc.h:64