-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRoute.java
456 lines (391 loc) · 14.3 KB
/
Route.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
import gov.nasa.worldwind.geom.coords.MGRSCoordConverter;
import java.util.ArrayList;
public class Route {
ArrayList<Point> points;
ArrayList<Point> mercatorPoints;
public Route(ArrayList<Point> points){
this.points=points;
this.mercatorPoints=new ArrayList<Point>();
mgrs();
}
public int size(){
return mercatorPoints.size();
}
public Point getMercator(int index){
return mercatorPoints.get(index);
}
private void mgrs(){
for ( int i = 0; i < points.size(); i ++ )
{
MGRSCoordConverter a = new MGRSCoordConverter();
a.convertGeodeticToMGRS(Math.toRadians(points.get(i).latitude),
Math.toRadians(points.get(i).longitude), 5);
String [] result=a.getMGRSString().split(" ");
String code=result[0];
int X=Integer.parseInt(result[1]);
int Y=Integer.parseInt(result[2]);
mercatorPoints.add(new Point(X,Y,code));
}
}
private double mercator ()
{
double acc_scalefactor = 1e-4;
double acc_x = 0.1;
double acc_y = 0.1;
int xy_dist = 6378100;
int i;
double mean = 0; // mean value
for ( i = 0; i < points.size(); i ++ )
{
double y = Math.toRadians(points.get(i).latitude);
double sf = 1 / Math.cos (y); //sec(y)=1/cos(y)
mean += sf;
}
mean /= points.size();
double scalefactor = Math.round ( mean / acc_scalefactor ) * acc_scalefactor;
for ( i = 0; i < points.size(); i ++ )
{
double x = Math.toRadians( points.get(i).longitude );
double y = Math.toRadians( points.get(i).latitude );
double y2 = Math.log ( Math.abs ( Math.tan ( y ) + 1 / Math.cos ( y ) ) ); //sec(y)=1/cos(y)
mercatorPoints.add(i, new Point(points.get(i).latitude,points.get(i).longitude));
mercatorPoints.get(i).latitude = ( x * xy_dist / scalefactor );
mercatorPoints.get(i).longitude = ( y2 * xy_dist / scalefactor );
mercatorPoints.get(i).longitude = (int) (Math.round ( mercatorPoints.get(i).longitude / acc_x )) * acc_x;
mercatorPoints.get(i).latitude = (int) (Math.round ( mercatorPoints.get(i).latitude / acc_y )) * acc_y;
mercatorPoints.get(i).latitude = (int) Math.round( mercatorPoints.get(i).latitude);
mercatorPoints.get(i).longitude = (int) Math.round(mercatorPoints.get(i).longitude);
}
return scalefactor;
}//create mercator path + return scalefactor
public ArrayList<Cell> getCells(){
//System.out.println("Getting cells...");
ArrayList<Cell> plots=new ArrayList<Cell>();
ArrayList<Cell> shadowPlots=new ArrayList<Cell>();
Cell lastPlot=null;
ArrayList<CellPair> plotPairArray=new ArrayList<CellPair>();
for(int i=0;i<size();i++){
Cell plot=CustomMath.getPlotForPoint(getMercator(i),Parameters.PLOT_LENGTH);
if(!plots.contains(plot)){
plots.add(plot);
}else{
plots.get(plots.indexOf(plot)).increaseFrequency();
}
if(lastPlot!=null && !plot.equals(lastPlot)){
plotPairArray.add(new CellPair(lastPlot,plot));
}
lastPlot=plot;
}
//System.out.println("Interpolating cells...");
for(int i=0;i<plotPairArray.size();i++){
Cell first=plotPairArray.get(i).firstPlot;
Cell second=plotPairArray.get(i).secondPlot;
int flipX=0;
int flipY=0;
if(!first.zone.equals(second.zone)){ //
first.getLocation();
second.getLocation();
double deltaX=Math.abs(first.latitude-second.latitude);
double deltaY=Math.abs(first.longitude-second.longitude);
double minX=Math.min(first.latitude, second.latitude);
double minY=Math.min(first.longitude, second.longitude);
if(first.latitude>second.latitude){
flipX=1;
}
if(first.longitude>second.longitude){
flipY=1;
}
double inc=0.00025;
if(deltaX>deltaY){
for(double j=inc;j<deltaX;j+=inc){
MGRSCoordConverter a = new MGRSCoordConverter();
a.convertGeodeticToMGRS(Math.toRadians(minX+(1-flipX)*j+flipX*(deltaX-j)),
Math.toRadians(minY+j*deltaY/deltaX*(1-flipY)+(deltaX-j)*deltaY/deltaX*flipY), 5);
String [] result=a.getMGRSString().split(" ");
String code=result[0];
int X=Integer.parseInt(result[1]);
int Y=Integer.parseInt(result[2]);
Cell newPlot=CustomMath.getPlotForPoint(new Point(X,Y,code), Parameters.PLOT_LENGTH);
if(!plots.contains(newPlot)){
plots.add(newPlot);
}
}
}else{
for(double j=inc;j<deltaY;j+=inc){
MGRSCoordConverter a = new MGRSCoordConverter();
a.convertGeodeticToMGRS(Math.toRadians(minX+(1-flipX)*j*deltaX/deltaY+flipX*(deltaY-j)*deltaX/deltaY),
Math.toRadians(minY+j*(1-flipY)+(deltaY-j)*flipY), 5);
String [] result=a.getMGRSString().split(" ");
String code=result[0];
int X=Integer.parseInt(result[1]);
int Y=Integer.parseInt(result[2]);
Cell newPlot=CustomMath.getPlotForPoint(new Point(X,Y,code), Parameters.PLOT_LENGTH);
if(!plots.contains(newPlot)){
plots.add(newPlot);
}
}
}
}else{
int deltaX=Math.abs(first.X-second.X);
int deltaY=Math.abs(first.Y-second.Y);
int minX=Math.min(first.X, second.X);
int minY=Math.min(first.Y, second.Y);
if(first.X>second.X){
flipX=1;
}
if(first.Y>second.Y){
flipY=1;
}
if(deltaX>deltaY){
for(int j=1;j<deltaX;j++){
Cell newPlot=new Cell(minX+j*(1-flipX)+(deltaX-j)*flipX,
minY+Math.round(j*deltaY/deltaX)*(1-flipY)+Math.round((deltaX-j)*deltaY/deltaX)*flipY,
true,first.zone);
if(!plots.contains(newPlot)){
plots.add(newPlot);
}
}
}else{
for(int j=1;j<deltaY;j++){
Cell newPlot=new Cell(minX+Math.round(j*deltaX/deltaY)*(1-flipX)+Math.round((deltaY-j)*deltaX/deltaY)*flipX,
minY+j*(1-flipY)+(deltaY-j)*flipY,
true,first.zone);
if(!plots.contains(newPlot)){
plots.add(newPlot);
}
}
}
}
}
//System.out.println("Dilating cells...");
for(int i=0;i<plots.size();i++){
Cell plot=plots.get(i);
if(plot.X==0 || plot.X==Parameters.MAX_CELLS_PER_ZONE-1 || plot.Y==0 || plot.Y==Parameters.MAX_CELLS_PER_ZONE-1){
plot.getLocation();
MGRSCoordConverter a = new MGRSCoordConverter();
a.convertGeodeticToMGRS(Math.toRadians(plot.latitude),
Math.toRadians(plot.longitude-Parameters.PLOT_LENGTH_DEGREES*Math.cos(plot.latitude)), 5);
String [] result=a.getMGRSString().split(" ");
String code=result[0];
int X=Integer.parseInt(result[1]);
int Y=Integer.parseInt(result[2]);
Cell shadowPlot=CustomMath.getPlotForPoint(new Point(X,Y,code), Parameters.PLOT_LENGTH);
shadowPlot.fake=plot.fake;
shadowPlot.frequency=0;
if(!shadowPlots.contains(shadowPlot)){
shadowPlots.add(shadowPlot);
}
//
a.convertGeodeticToMGRS(Math.toRadians(plot.latitude),
Math.toRadians(plot.longitude+Parameters.PLOT_LENGTH_DEGREES*Math.cos(plot.latitude)), 5);
result=a.getMGRSString().split(" ");
code=result[0];
X=Integer.parseInt(result[1]);
Y=Integer.parseInt(result[2]);
shadowPlot=CustomMath.getPlotForPoint(new Point(X,Y,code), Parameters.PLOT_LENGTH);
shadowPlot.fake=plot.fake;
shadowPlot.frequency=0;
if(!shadowPlots.contains(shadowPlot)){
shadowPlots.add(shadowPlot);
}
//
a.convertGeodeticToMGRS(Math.toRadians(plot.latitude+Parameters.PLOT_LENGTH_DEGREES),
Math.toRadians(plot.longitude), 5);
result=a.getMGRSString().split(" ");
code=result[0];
X=Integer.parseInt(result[1]);
Y=Integer.parseInt(result[2]);
shadowPlot=CustomMath.getPlotForPoint(new Point(X,Y,code), Parameters.PLOT_LENGTH);
shadowPlot.fake=plot.fake;
shadowPlot.frequency=0;
if(!shadowPlots.contains(shadowPlot)){
shadowPlots.add(shadowPlot);
}
//
a.convertGeodeticToMGRS(Math.toRadians(plot.latitude-Parameters.PLOT_LENGTH_DEGREES),
Math.toRadians(plot.longitude), 5);
result=a.getMGRSString().split(" ");
code=result[0];
X=Integer.parseInt(result[1]);
Y=Integer.parseInt(result[2]);
shadowPlot=CustomMath.getPlotForPoint(new Point(X,Y,code), Parameters.PLOT_LENGTH);
shadowPlot.fake=plot.fake;
shadowPlot.frequency=0;
if(!shadowPlots.contains(shadowPlot)){
shadowPlots.add(shadowPlot);
}
//
a.convertGeodeticToMGRS(Math.toRadians(plot.latitude+Parameters.PLOT_LENGTH_DEGREES),
Math.toRadians(plot.longitude-Parameters.PLOT_LENGTH_DEGREES*Math.cos(plot.latitude)), 5);
result=a.getMGRSString().split(" ");
code=result[0];
X=Integer.parseInt(result[1]);
Y=Integer.parseInt(result[2]);
shadowPlot=CustomMath.getPlotForPoint(new Point(X,Y,code), Parameters.PLOT_LENGTH);
shadowPlot.fake=plot.fake;
shadowPlot.frequency=0;
if(!shadowPlots.contains(shadowPlot)){
shadowPlots.add(shadowPlot);
}
//
a.convertGeodeticToMGRS(Math.toRadians(plot.latitude+Parameters.PLOT_LENGTH_DEGREES),
Math.toRadians(plot.longitude+Parameters.PLOT_LENGTH_DEGREES*Math.cos(plot.latitude)), 5);
result=a.getMGRSString().split(" ");
code=result[0];
X=Integer.parseInt(result[1]);
Y=Integer.parseInt(result[2]);
shadowPlot=CustomMath.getPlotForPoint(new Point(X,Y,code), Parameters.PLOT_LENGTH);
shadowPlot.fake=plot.fake;
shadowPlot.frequency=0;
if(!shadowPlots.contains(shadowPlot)){
shadowPlots.add(shadowPlot);
}
//
a.convertGeodeticToMGRS(Math.toRadians(plot.latitude-Parameters.PLOT_LENGTH_DEGREES),
Math.toRadians(plot.longitude-Parameters.PLOT_LENGTH_DEGREES*Math.cos(plot.latitude)), 5);
result=a.getMGRSString().split(" ");
code=result[0];
X=Integer.parseInt(result[1]);
Y=Integer.parseInt(result[2]);
shadowPlot=CustomMath.getPlotForPoint(new Point(X,Y,code), Parameters.PLOT_LENGTH);
shadowPlot.fake=plot.fake;
shadowPlot.frequency=0;
if(!shadowPlots.contains(shadowPlot)){
shadowPlots.add(shadowPlot);
}
//
a.convertGeodeticToMGRS(Math.toRadians(plot.latitude-Parameters.PLOT_LENGTH_DEGREES),
Math.toRadians(plot.longitude+Parameters.PLOT_LENGTH_DEGREES*Math.cos(plot.latitude)), 5);
result=a.getMGRSString().split(" ");
code=result[0];
X=Integer.parseInt(result[1]);
Y=Integer.parseInt(result[2]);
shadowPlot=CustomMath.getPlotForPoint(new Point(X,Y,code), Parameters.PLOT_LENGTH);
shadowPlot.fake=plot.fake;
shadowPlot.frequency=0;
if(!shadowPlots.contains(shadowPlot)){
shadowPlots.add(shadowPlot);
}
}else{
Cell shadowPlot=new Cell(plot.X,plot.Y-1,plot.fake,plot.zone);
if(!shadowPlots.contains(shadowPlot)){
shadowPlots.add(shadowPlot);
}
//
shadowPlot=new Cell(plot.X,plot.Y+1,plot.fake,plot.zone);
if(!shadowPlots.contains(shadowPlot)){
shadowPlots.add(shadowPlot);
}
//
shadowPlot=new Cell(plot.X+1,plot.Y,plot.fake,plot.zone);
if(!shadowPlots.contains(shadowPlot)){
shadowPlots.add(shadowPlot);
}
//
shadowPlot=new Cell(plot.X-1,plot.Y,plot.fake,plot.zone);
if(!shadowPlots.contains(shadowPlot)){
shadowPlots.add(shadowPlot);
}
//
shadowPlot=new Cell(plot.X+1,plot.Y-1,plot.fake,plot.zone);
if(!shadowPlots.contains(shadowPlot)){
shadowPlots.add(shadowPlot);
}
//
shadowPlot=new Cell(plot.X+1,plot.Y+1,plot.fake,plot.zone);
if(!shadowPlots.contains(shadowPlot)){
shadowPlots.add(shadowPlot);
}
//
shadowPlot=new Cell(plot.X-1,plot.Y-1,plot.fake,plot.zone);
if(!shadowPlots.contains(shadowPlot)){
shadowPlots.add(shadowPlot);
}
//
shadowPlot=new Cell(plot.X-1,plot.Y+1,plot.fake,plot.zone);
if(!shadowPlots.contains(shadowPlot)){
shadowPlots.add(shadowPlot);
}
}
}
for(int i=0;i<shadowPlots.size();i++){
shadowPlots.get(i).frequency=0;
if(!plots.contains(shadowPlots.get(i))){
plots.add(shadowPlots.get(i));
}
}
return plots;
}
public ArrayList<ArrayList<Cell>> getWGSCells(){
int cellLength=50;
int magic=111*50;
ArrayList<ArrayList<Cell>> zoomCells=new ArrayList<ArrayList<Cell>>();
for(int zoom=0;zoom<=8;zoom++){
zoomCells.add(getCellsForZoom(1.0*magic/Math.pow(2,(zoom))));
}
return zoomCells;
}
private ArrayList<Cell> getCellsForZoom(double zoom){
ArrayList<Cell> cells=new ArrayList<Cell>();
Cell prevCell=null;
for(int i=0;i<size();i++){
int N=(int) (points.get(i).latitude*zoom);
int E=(int) (points.get(i).longitude*zoom);
Cell cell=new Cell(E,N,false,false);
if(prevCell!=null){
ArrayList<Cell> newCells=doWGSInterpolation(prevCell,cell);
for(int k=0;k<newCells.size();k++){
if(!cells.contains(newCells.get(k))){
cells.add(newCells.get(k));
}
}
}
if(!cells.contains(cell)){
cells.add(cell);
}else{
// frequency increase in future
}
}
ArrayList<Cell> dilCells=new ArrayList<Cell>();
for(int i=0;i<cells.size();i++){
dilCells.add(new Cell(cells.get(i).X++,cells.get(i).Y,false,true));
dilCells.add(new Cell(cells.get(i).X--,cells.get(i).Y,false,true));
dilCells.add(new Cell(cells.get(i).X,cells.get(i).Y++,false,true));
dilCells.add(new Cell(cells.get(i).X,cells.get(i).Y--,false,true));
//
dilCells.add(new Cell(cells.get(i).X++,cells.get(i).Y--,false,true));
dilCells.add(new Cell(cells.get(i).X++,cells.get(i).Y++,false,true));
dilCells.add(new Cell(cells.get(i).X--,cells.get(i).Y--,false,true));
dilCells.add(new Cell(cells.get(i).X--,cells.get(i).Y++,false,true));
}
for(int i=0;i<dilCells.size();i++){
if(!cells.contains(dilCells.get(i))){
cells.add(dilCells.get(i));
}
}
return cells;
}
private ArrayList<Cell> doWGSInterpolation(Cell a, Cell b){
ArrayList<Cell> cells=new ArrayList<Cell>();
//
int minE=Math.min(a.X,b.X);
int maxE=Math.min(a.X,b.X);
int minN=Math.min(a.Y,b.Y);
int maxN=Math.min(a.Y,b.Y);
//
int deltaE=maxE-minE;
int deltaN=maxN-minN;
//
if(deltaN>deltaE){
for(int i=minN+1;i<=maxN-1;i++){
cells.add(new Cell(a.X+Math.round((b.X-a.X)*(i-a.Y)/(b.Y-a.Y)),i,true,false));
}
}else{
for(int i=minE+1;i<=maxE-1;i++){
cells.add(new Cell(i,a.Y+Math.round((b.Y-a.Y)*(i-a.X)/(b.X-a.X)),true,false));
}
}
//echo count($cells)." ";
return cells;
}
}