forked from technogeeky/MapSatAltitude
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MapSatAltitude.m
1026 lines (835 loc) · 36.1 KB
/
MapSatAltitude.m
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
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
function MapSatAltitude( argin )
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
quiet = false; %% defaults to false
argv_style = 'forum'; %% defaults to forum output
tables_only = false; %% usually, we accompany our tables with extra info.
debug = false; %% this is only for developers, to print extra stuffs
graphExt = '.png'; %% graphics file extention
graphFormat = '-dpng'; %% graphics file format
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% 0. Process command-line arguments
%%%
%%% This section does a two-stage pass over command line arguments.
%%% If an argument is found (in short or long form), expect is set to
%%% *which* argument is expected next.
%%% Then, the argument is caught with the outer otherwise case and exported
%%% to a variable like argv_planet, which is existance-checked later
%%% to override requesting information on STDIN.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
expect = '';
if (exist('argin','var') && ischar(argin))
args = strsplit(argin,' ');
else
args = {};
end
for i = 1:length( args )
%% double arguments
switch (args{i})
case {'-p', '--planet'}
expect = 'planet';
case {'-s', '--scanner'}
expect = 'scanner';
case {'-smin','--sidelap-min'}
expect = 'sidelap-min';
case {'-smax','--sidelap-max'}
expect = 'sidelap-max';
case {'-r','--resolution'}
expect = 'resolution';
case {'-os','--output-style'}
expect = 'output-style';
case {'-pl','--plots'};
expect = '';
argv_plots = true;
case {'-pp','--printplots'}
expect = '';
set (0, 'defaultaxesfontname', 'Helvetica');
set (0, 'defaulttextfontname', 'Helvetica');
%% this is REQUIRED for --pp
argv_printplots = true;
case {'-to','--tables-only'}
expect = '';
tables_only = true;
case {'-q','--quiet'}
expect = '';
quiet = true;
case {'-h','--help'}
disp('Usage: ./MapSatAltitude <flags>; where flags are:');
disp('\tShort Form \tLong Form \tFlag Description');
disp('\t--------------------------------------------------------------------------------------------------');
disp('\t-p <...> \t--planet <...> \tspecify planet');
disp('\t-s <...> \t--scanner <...> \tspecify scanner');
disp('\t-r <...> \t--resolution <...> \tspecify resolution');
disp('\t-smin <...> \t--sidelap-min <...> \tspecify minimum sidelap');
disp('\t-smax <...> \t--sidelap-max <...> \tspecify maximum sidelap');
disp('\t---------------------------------------------------------------------------------------------------');
disp('\t-pl \t--plots \tgenerate all plots)');
disp('\t-pp \t--printplots \tprint all plots to a suitably-named file');
disp('\t---------------------------------------------------------------------------------------------------');
disp('\t-os <...> \t--output-style <...> \tchange formatting for output (disabled)');
disp('\t-to \t--tables-only \tonly output the table (not the inputs)');
disp('\t-q \t--quiet \tquiet mode: implies:');
disp('\t \t \t-smin 1.00');
disp('\t \t \t-smax 1.25');
disp('\t \t \t-to ');
disp('\t---------------------------------------------------------------------------------------------------');
disp('Planets and Scanners must be in their respective files.');
disp('Resolution must be one of: [Ultra, VeryHi, High, Low].');
disp('Output Style must be one of: [text,forum,csv,csv-github,markdown].');
disp('NOTE: In order to have no STDIN input requests, you must specify all of:');
disp(' planet, scanner, resolution, sidelap-min, sidelap-max');
quit;
otherwise
switch (expect)
case 'planet'
argv_planet = args{i};
case 'scanner'
argv_scanner = args{i};
case 'sidelap-min'
argv_minthresh = args{i};
case 'sidelap-max'
argv_maxthresh = args{i};
case 'resolution'
argv_resolution = args{i};
case 'output-style'
argv_style = args{i};
switch (argv_style)
case {'text','csv','csv-github','markdown','forum'}
%% this is fine
otherwise
printf('\ninvalid output-style: %s is not one of: [text, csv, csv-github, markdown, forum]\n',argv_style);
return;
end
otherwise
disp('--help? no help for you!');
end
end
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% 1. What scanner are we discussing?
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
if exist('argv_scanner','var')
scanner = argv_scanner;
else
scanner = input('Scanner name? ', 's');
end
scanners = parseScannerInfo();
S = getScanner(scanners,scanner);
if isempty(S)
printf('\nUnknown scanner: %s\n\n', scanner);
return
end
ScannerName = S.Name;
LongName = S.LongName;
if (~quiet) disp(sprintf('[%s] Ideal Altitude Calculator.',S.LongName)); end;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% 2. What planet are we discussing?
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
if exist('argv_planet','var')
planet = argv_planet;
else
planet = input('Planet name? ','s');
end
planets = parsePlanetInfo();
P = getPlanet(planets,planet);
if isempty(P)
printf('\nInvalid planet: %s\n\n',planet);
return
end
R = P.Radius;
planetDay = P.Day;
GM = P.GM;
Name = P.Name;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% 2. a. If we are on a RSS planet, use Earth-scaled surface scales
%%% (instead of Kerbin-scaled ones)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
switch (Name)
case { 'Earth', 'Moon', 'Jupiter', 'Deimos', 'Phobos' }
surfscale = max (6371000 / R,1);
InRSS = true;
otherwise
surfscale = max(600000 / R,1);
InRSS = false;
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% 3-4. How much sidelap (min, max) do we want?
%%% This is a setting which may vary. I suspect, for scanners with
%%% a small FOV (ie, the SAR), you may have to accept larger sidelap
%%% and thus longer scanning times. (I guess: larger sidelap implies
%%% longer scanning times.) If this tool was perfectly accurate, that
%%% should be taken into account. But it's not perfect yet.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% 1. Get minimum sidelap from user; and,
%%% 2. Default to (1.00) otherwise.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
if exist('argv_minthresh','var')
inp_thresh = argv_minthresh;
else
if quiet
inp_thresh = '1.00';
else
inp_thresh = input('Minimum Sidelap? (Default is 1.00. Press Enter to skip) : ','s');
end
end
inp_thres2 = sscanf(inp_thresh,'%f');
if isempty(inp_thres2) || inp_thres2 < 0
minthresh = 1.00; %1.25;
else
minthresh = inp_thres2;
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% 1. Get maximum sidelap from user; and,
%%% 2. Default to (1.25) otherwise.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
if exist('argv_maxthresh','var')
inp_thresh = argv_maxthresh;
else
if quiet
inp_thresh = '1.25';
else
inp_thresh = input('Maximum Sidelap? (Default is 1.25. Press Enter to skip) : ','s');
end
end
inp_thres2 = sscanf(inp_thresh,'%f');
if isempty(inp_thres2) || inp_thres2 < 0
maxthresh = 1.25; %1.25;
else
maxthresh = inp_thres2;
end
if maxthresh < minthresh
disp('Maximum threshold cannot be lower than minimum threshold!');
return;
end
if (maxthresh == minthresh)
disp('Minimum and maximum sidelap thresholds are the same.');
disp('This will eliminate all sweet spots, and thus the utility of this program.');
disp('Please try again with different minimum and maximum sidelaps.');
return;
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% FIXME: Altitude Step Multiplier?
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
alt_stepmul = 1;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% 5. Numerical Resolution
%%% This setting seems to relate to how many results will be returned.
%%% (ie, higher resolution, more results)
%%%
%%% Also, for Earth (RSS) and The Moon (RSS), a very- or ultra-high
%%% resolution was required to get any results!
%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
if exist('argv_resolution', 'var' )
inp_res = argv_resolution;
else
if (InRSS)
inp_res = input('Numerical Resolution? ("Uber",["Very"],"Hi", or "Low".) : ','s');
resDisc = 'VeryHi';
rational_resolution = 1e-5;
alt_stepmul = 1/2;
else
inp_res = input('Numerical Resolution? ("Uber","Very",["Hi"], or "Low".) : ','s');
resDisc = 'High';
rational_resolution = 1e-4;
end
end
if ~isempty(inp_res)
if strcmpi(inp_res(1),'h')
rational_resolution = 1e-4;
resDisc = 'High';
elseif strcmpi(inp_res(1),'l')
rational_resolution = 1e-3;
resDisc = 'Low';
elseif strcmpi(inp_res(1),'v')
rational_resolution = 1e-5;
alt_stepmul = 1/2;
resDisc = 'VeryHi';
elseif strcmpi(inp_res(1),'u')
rational_resolution = 1e-6;
alt_stepmul = 1/4;
resDisc = 'UltraHi';
else
rational_resolution = 1e-4;
end
end
if (~quiet) disp(sprintf('Rational Number Numerical Resolution: %s (%.2e)\n',resDisc,rational_resolution)); end;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% FIXME: Incliation Setting was commented out already.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% FIXME: Does resonanceLimit actually do anything?
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
resonanceLimit = 1*360; %just in case we want 720 degrees or something
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% FIXME: What units is this in? I suspect degrees.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
max_width = 180; %maximum swath width; if we're getting larger than this then the planetoid is teeny,
%at which point you don't need this tool anymore
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% We need to pick the correct FOV, and for laziness I have stored a HalfFov too (why does this need half fov?)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
hSCAN_FOV = (S.FOV * surfscale) / 2;
hFOV = (hSCAN_FOV/180*pi);
scan_res = 200; % New lasers have 200 points in a line that spread evenly based on ground distance
if (~quiet) disp(''); end;
if (~quiet) disp(''); end;
[dayh daym days] = sec2hms(planetDay);
syncorbit = oHeight2(planetDay,R,GM);
if (~quiet) disp(sprintf('\nPlanet: %s\nRadius: %d km',planet,R/1000)); end;
if (~quiet) disp(sprintf('Sync.Orbit: %.2f km\nSOI: %.2f km',syncorbit/1000,P.SOI/1000)); end;
if (~quiet) disp(sprintf('Day Length: %dh %2dm %ds',dayh,daym,days)); end;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% FIXME: Is this maxSwathAlt likely to be reached?
%%% For the Mun and for SAR, this is 1.12e8 meters.
maxSwathAlt = max(R*cot(hFOV)-R,8*syncorbit); %% FIXME: this is hack to get around negative values
%% the problem here is that we don't yet have altitude-dependent FOV
%% but we normally need to know the maximum altitude to get altitude-dependent FOV.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Here we (evidently) pick the minimum altitude by looking at:
%%% 1. [REMOVED] (hardcoded) 10e3
%%% 2. P.Atmo - The atmospheric height of the planet.
%%% 3. S.AltitudeMin - The minimum altitude the scanner will work at.
%%%
%%% And then, of course, we pick the maximum.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%minAlt = max(10e3,P.Atmo);
%minAlt = max(minAlt,S.AltitudeMin);
[minAlt minAltReason] = max([S.AltitudeMin,P.Atmo]);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Here we pick the maximum altitude by looking at:
%%% 1. S.MaxAlt - The maximum altitude the scanner will function at.
%%% 2. P.SOI - The height of the sphere of influence around the selected planet.
%%% 3. 4*syncorbit - FIXME: Four, times the syncorbit.
%%% 4. maxSwathAlt - FIXME: The maximum altiude our swathwidth works out?
%%%
%%% And then, of course, we pick the minimum.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
[maxAlt maxAltReason] = min([S.AltitudeMax, P.SOI, 4*syncorbit, maxSwathAlt]);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% FIXME: The following may need to be changed to accomidate the higher-altitude support.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
alt_stepsize = max( min( (maxAlt-minAlt)/50000 , 25) , 0.5 )*alt_stepmul;
if maxAlt > 1000e3
alts = [minAlt:alt_stepsize/2:(500e3-alt_stepsize) 500e3:alt_stepsize*1:maxAlt];
else
alts = minAlt:alt_stepsize:maxAlt;
end
if (debug)
printf('minalt: %i, maxalt: %i, alt_stepsize: %i, maxSwathAlt: %i',minAlt,maxAlt,alt_stepsize,maxSwathAlt);
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% NOTE:
%%% Internally to SCANsat, the calculation for FOV would look like this:
%%% 2 * (749999 meters / 750000 meters) * sqrt(600000 meters/200000 meters)
%%% ^ ^^^^^^^^^^^^^ ^^^^^^^^^^^^^ ^^^^^^^^^^^^^ ^^^^^^^^^^^^^
%%% fov altitude 'best' 1 Kerbin radius parentBody radius
%%% ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
%%% ^ this part penalizes you ^ this part gives you a boost
%%% for being between minimum scanning a smaller body than
%%% and best altitude Kerbin, and cuts off when = 1
%%% and cuts when = 1 * also, this will probably need
%%% to be changed to support (RSS)
%%%
%%% See SCANcontroller.cs for details.
%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% This is a table of half FOVs at each altitude.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
i = 1;
for thisAlt = alts
if (thisAlt < S.AltitudeIdeal)
thisFOV = min((S.FOV * (thisAlt / S.AltitudeIdeal) * sqrt(surfscale)),20);
hFOV_at_altitude(i) = ( thisFOV / 2) / 180 * pi;
else
thisFOV = min((S.FOV * sqrt(surfscale)),20);
hFOV_at_altitude(i) = (thisFOV / 2) / 180 * pi;
end;
i=i+1;
end;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Some information about what inputs were chosen.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
if (~quiet) disp(sprintf('\nScan line resolution: %d',scan_res)); end;
if (~quiet) disp(sprintf('Field-of-View range: %3.2f° - %3.2f°',hFOV_at_altitude(1)*2*180/pi,hFOV_at_altitude(i-1)*2*180/pi)); end;
if (~quiet) disp(sprintf('Sidelap range: %4.2f - %4.2f',minthresh,maxthresh)); end;
if (~quiet) disp(sprintf('Altitude Range: %.1f km - %.1f km in %.1f m steps (%i possible zones)\n',minAlt/1000,maxAlt/1000,alt_stepsize,numel(alts))); end;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Explain why the minimum altitude was chosen.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
qqq = sprintf('Minimum altitude chosen because:\n\t');
switch minAltReason
case {1}
qqq = [qqq sprintf('[%s] has a minimum range of %.1f km',S.LongName,S.AltitudeMin/1000)];
case {2}
qqq = [qqq sprintf('[%s] has an atmosphere until %.1f km', P.Name, P.Atmo/1000)];
% case {3}
% qqq = [qqq sprintf('because of a hardcoded limit of %.2f m. deal with it. ',10e3)];
end
if (~quiet) disp(qqq); end;
if (~quiet) disp(''); end;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Explain why the maximum altitude was chosen.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
qqq = sprintf('Maximum Altitude chosen because:\n\t');
switch maxAltReason
case {1}
qqq = [qqq sprintf('[%s] has a maximum range of %.2f km',S.LongName,maxAlt/1000)];
case {2}
qqq = [qqq sprintf('[%s] sphere of influence ends at %.2f km', P.Name, P.SOI/1000)];
case {3}
qqq = [qqq sprintf('[%s] has a synchronous orbit at %.2f km', P.Name, syncorbit/1000)];
case {4}
qqq = [qqq sprintf('maximum swath width of %d degrees at %.2f km', max_width, maxSwathAlt/1000)];
end
if (~quiet) disp(qqq); end;
if (~quiet) disp(''); end;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Swath projection from FOV.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
orbitalPeriods = oPeriod2(alts,R,GM);
planetRotPerPeriod = (360./planetDay)*orbitalPeriods; % FIXME: unused
S1 = ((alts+R).*cot(hFOV_at_altitude)+sqrt(R.^2.*cot(hFOV_at_altitude).^2-alts.^2-2.*alts.*R))./(1+cot(hFOV_at_altitude).^2);
S2 = ((alts+R).*cot(hFOV_at_altitude)-sqrt(R.^2.*cot(hFOV_at_altitude).^2-alts.^2-2.*alts.*R))./(1+cot(hFOV_at_altitude).^2);
S = min([S1;S2]);
swathWidths = (asin(S./R)*2)/pi*180;
swathWidthsCorr = swathWidths; %% FIXME: presumably this means Corrected, but
%% in that case, swathWidths should *never* be used again
%% (and it is. both are used.)
orbitRats = orbitalPeriods./planetDay;
tgtInclination = acosd(orbitRats);
AorbitRats = (orbitRats+1)/2;
[orbitRatN orbitRatD] = rat(AorbitRats,rational_resolution);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% DOCUMENTATION: rat() function
%%%
%%% [n d] = rat (x, tol)
%%%
%%% Find a rational approximation to x
%%% within the tolerance defined by tol
%%% using a continued fraction expansion.
%%%
%%% EXAMPLE:
%%%
%%% rat (pi) = 3 + 1/(7 + 1/16) = 355/113
%%% rat (e) = 3 + 1/(-4 + 1/(2 + 1/(5 + 1/(-2 + 1/(-7)))))
%%% = 1457/536
%%%
%%% Called with two arguments returns the
%%% (N) numerator and (D) denominator separately as two matrices.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% NOTE:
%%% .* is the pointwise product
%%% ./ is the pointwise division
%%%
%%% EXAMPLE:
%%% x = [1 2 3];
%%% y = [5 6 2];
%%%
%%% x + y -> [6 8 5]
%%% x .* y -> [5 12 6]
%%% x .^ y -> [1 4 9]
%%% x ./ y -> [5.00 3.00 0.667]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%find swath width as proportion of 360degrees
idealThreshold = 360./swathWidthsCorr;
%idealThreshFrac = mod(idealThreshold,1); % FIXME: unused
orbitRT0 = orbitRatD < idealThreshold*minthresh; %too low! orbit will never be good because it hits a resonant spot!
orbitRT1 = orbitRatD >= idealThreshold*minthresh & orbitRatD < idealThreshold*maxthresh; %sweet spot!
orbitRT2 = orbitRatD >= idealThreshold*maxthresh & orbitRatD < idealThreshold*maxthresh*8; %takes a long time but might be okay!s
orbitRT4 = orbitRatD >= idealThreshold*maxthresh*8; %takes toooo long!
% (or might be a sweet spot if rational number significance is too high!)
valOrbitRT0 = orbitalPeriods.*orbitRT0/3600;
valOrbitRT1 = orbitalPeriods.*orbitRT1/3600;
valOrbitRT2 = orbitalPeriods.*orbitRT2/3600;
valOrbitRT4 = orbitalPeriods.*orbitRT4/3600;
altsRT0 = alts.*orbitRT0;
altsRT1 = alts.*orbitRT1;
altsRT2 = alts.*orbitRT2;
altsRT4 = alts.*orbitRT4;
%remove the zeros
valOrbitRT0(orbitRT0==0)=[];
valOrbitRT1(orbitRT1==0)=[];
valOrbitRT2(orbitRT2==0)=[];
valOrbitRT4(orbitRT4==0)=[];
altsRT0(orbitRT0==0)=[];
altsRT1(orbitRT1==0)=[];
altsRT2(orbitRT2==0)=[];
altsRT4(orbitRT4==0)=[];
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% FIXME: some figure that is not used anymore (and doesn't print for me anyway)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
switch ( exist( 'argv_plots', 'var' ) || exist('argv_printplots', 'var' ) )
case true
mainfig = figure; hold on;
if (~(exist('argv_plots','var')) && exist('argv_printplots','var'))
set(mainfig,'Visible','off');
end
if ((length(altsRT2)!=0) && (length(valOrbitRT2)!=0))
mainplot = plot( altsRT2/1000, valOrbitRT2,'oc','MarkerSize',2 );
legend(mainplot,'Suboptimal (OK!)','location','northwest')
end
if ((length(altsRT4)!=0) && (length(valOrbitRT4)!=0))
mainplot = plot( altsRT4/1000, valOrbitRT4,'ok','MarkerSize',2 );
legend(mainplot,'Near-Resonant (BAD!)','location','northwest')
end
if ((length(altsRT0)!=0) && (length(valOrbitRT0)!=0))
mainplot = plot( altsRT0/1000, valOrbitRT0,'or','MarkerSize',4 );
legend(mainplot,'Resonant (BAD!)','location','northwest')
end
if ((length(altsRT1)!=0) && (length(valOrbitRT1)!=0))
mainplot = plot( altsRT1/1000, valOrbitRT1,'ob','MarkerSize',5 );
legend(mainplot,'Ideal (GOOD!)','location','northwest')
end
titleString = sprintf('Ideal Altitudes for [%s] (%s) around [%s]',ScannerName,LongName,planet);
title(titleString);
xlabel('Altitude (km)');
ylabel('Orbital Period (h)');
%% gca is 'get current axis'
% x axis settings
set(gca,'xminortick','on');
set(gca,'xgrid','on');
set(gca,'xminorgrid','on');
% y axis settings
set(gca,'ygrid','on');
plotName = sprintf('Altitude_%s_%s_s%.3f-%.3f_%s%s',planet,ScannerName,minthresh,maxthresh,resDisc,graphExt);
if (exist('argv_printplots','var'))
print(graphFormat,plotName);
end
case false
%% nothing
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Start to classify the sweet spots.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
orbitClass = orbitRatD.*orbitRT1;
zoneStart = find(diff(orbitClass) ~= 0 ) + 1;
zoneEnd = find(diff(orbitClass) ~= 0 );
%remove the zones that are just a stretch of zeros (ie: these aren't the zones we're looking for)
zoneStart(orbitClass(zoneStart)==0) = [];
zoneEnd(orbitClass(zoneEnd)==0) = [];
% 1. if we start off with a sweet spot, add an extra zoneStart
if(orbitRT1(1))
zoneStart = [1 zoneStart];
end
%similarly, if it ends on a sweet spot, add an extra zoneEnd
if(orbitRT1(end))
zoneEnd = [zoneEnd length(orbitRT1)];
end
if length(zoneStart) ~= length(zoneEnd)
disp('*Sweet spot classification error! Check that no blue zones are touching either end!*');
return;
end
if isempty(zoneStart)
disp(sprintf('\nNo sweet spots found! Try increasing the threshold.\n\n'))
end
scanTime = orbitalPeriods.*orbitRatD/2; % divided by 2 because there's two sides to the globe!
% (I checked in-game and it took half as long to scan as I was expecting :P)
if (~quiet) disp(sprintf('\n Number of Zones: %d\n',length(zoneStart))); end;
if (~quiet) disp('---------------------------'); end;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% HEADER FORMATTING
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
switch (argv_style)
case 'forum'
disp(sprintf('[size=4][b]%s [%s][/B][/SIZE][spoiler=Show %s Orbits][code]\n', Name, ScannerName, ScannerName));
otherwise
%% nothing
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% TABLE HEADER
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
switch (argv_style)
case {'forum','text'}
disp(' Altitude Inc. Orbital Time to Scan Eff. Swath Resolution');
disp(' UEQx Sidelap Ideal +/- Error Period Total +/- Error FOV Width (deg) (km)');
disp('====================================================================================================================');
%%%%%% 17 (1.10) 782.176 km +/- 1.51 km (80.07°) 6h 38.9m 96h 24.4m +/- 13.4m (3.5°) 14 m (0.07°) 0.238 km
%%%%%% 18 (1.09) 739.453 km +/- 1.53 km (80.72°) 6h 13.2m 96h 24.0m +/- 14.1m (3.4°) 13 m (0.06°) 0.221 km
%%%%%% 19 (1.04) 701.102 km +/- 1.56 km (81.29°) 5h 50.5m 96h 23.5m +/- 15.0m (3.2°) 11 m (0.06°) 0.199 km
%%%%%% 23 (1.24) 695.092 km +/- 1.57 km (81.37°) 5h 47.0m 115h 40.0m +/- 18.3m (3.2°) 11 m (0.06°) 0.195 km
%%%%%% 25 (1.16) 639.982 km +/- 1.62 km (82.16°) 5h 15.4m 115h 39.2m +/- 20.1m (3.0°) 9 m (0.05°) 0.165 km
case 'csv'
disp('Scanner,UEQx,Sidelap,Altitude,AltitudeError,Inclination,OrbitalPeriod,ScanTime,ScanTimeError,EffFOV,SwathWidth,ResolutionDeg,ResolutionMeter');
case 'csv-github'
disp('Planet,Scanner,UEQx,Sidelap,Altitude,SMA,Inclination,OrbitalPeriod,ScanTime,EffFOV');
case 'markdown'
disp(' UEQx|Sidelap| Altitude | Error | Inc. | O. Period| Scan Time | Error| FOV |Swath|Res (°)|Res (m)');
disp('-----|-------|----------|-----------|---------|----------|-----------|---------|------|-----|-------|--------');
%%%%%% 17 (1.10) 782.176 km +/- 1.51 km (80.07°) 6h 38.9m 96h 24.4m +/- 13.4m (3.5°) 14 m (0.07°) 0.238 km
%%%%%% 18 (1.09) 739.453 km +/- 1.53 km (80.72°) 6h 13.2m 96h 24.0m +/- 14.1m (3.4°) 13 m (0.06°) 0.221 km
%%%%%% 19 (1.04) 701.102 km +/- 1.56 km (81.29°) 5h 50.5m 96h 23.5m +/- 15.0m (3.2°) 11 m (0.06°) 0.199 km
%%%%%% 23 (1.24) 695.092 km +/- 1.57 km (81.37°) 5h 47.0m 115h 40.0m +/- 18.3m (3.2°) 11 m (0.06°) 0.195 km
%%%%%% 25 (1.16) 639.982 km +/- 1.62 km (82.16°) 5h 15.4m 115h 39.2m +/- 20.1m (3.0°) 9 m (0.05°) 0.165 km
otherwise
printf('\ninvalid output-style: %s is not one of: [text, csv, csv-github, markdown, forum]\n',argv_style);
return;
end
if (exist('argv_plots','var') || exist('argv_printplots','var'))
fh = figure;
hold on;
plotName = sprintf('DotPlot_%s_%s_s%.3f-%.3f_%s%s',planet,ScannerName,minthresh,maxthresh,resDisc,graphExt);
end
if (~exist('argv_plots','var') && exist('argv_printplots','var'))
set(fh,'Visible','off');
end
for i = flipdim(1:length(zoneStart),2)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% ALL OF THESE VARIABLES CAN BE USED IN TABLE OUTPUT
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
zi = zoneStart(i);
zk = zoneEnd(i);
altLow = alts(zi);
altHi = alts(zk);
altRa = altHi-altLow;
ap = alts(zi:zk);
st = scanTime(zi:zk);
od = orbitRatD(zi:zk);
meantt = mean(st); % mean time value
[mintt, minti] = min(st); % min time value and altitude of mintt
[maxtt, maxti] = max(st); % max ...
[H1, M1] = sec2hm(meantt); % FIXME: unused
[H0, M0] = sec2hm(mintt);
[H2, M2] = sec2hm(maxtt); % FIXME: unused (x2)
[Hd, Md] = sec2hm(maxtt-mintt); % FIXME: unused (x)
[~, meanti] = min(abs(st-meantt));
meanta = ap(meanti); % altitude of mean time value
minta = ap(minti); % FIXME: unused
maxta = ap(maxti); % FIXME: unused
[~, meanalti] = min(abs(alts-meanti));
[~, minalti] = min(abs(alts-minta));
[~, altii] = min(abs(alts-meanta));
[OPH0, OPM0] = sec2hm(orbitalPeriods(minalti));
%% swath width size for this altitude
sw = swathWidths(altii);
%% FOV displayed to user
dispfov = 2 * (hFOV_at_altitude(altii) * 180 / pi);
ts = swathWidths.*orbitalPeriods/360;
[sppmin, sppI] = min(abs(ts-planetDay));
%% SMA (for convenience?)
sma = meanta + R;
resd = sw/scan_res; % Scan lines are spaced evenly along the ground
resm = resd*R*pi/180;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% TABLE ENTRY
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
switch (argv_style)
case {'text','forum'}
qqq = '';
%qqq = [qqq sprintf('%4i', i)];
qqq = [qqq sprintf(' %5d', orbitRatN(minalti))];
qqq = [qqq sprintf(' %5d', orbitRatD(minalti))];
qqq = [qqq sprintf(' (%4.2f)', orbitRatD(minalti)./idealThreshold(minalti))];
%qqq = [qqq sprintf(' %7.3f km', sma/1000)];
qqq = [qqq sprintf(' %8.3f km', meanta/1000)];
qqq = [qqq sprintf(' +/- %3.2f km', altRa/1000)];
qqq = [qqq sprintf(' (%03.2f°)', tgtInclination(altii))];
qqq = [qqq sprintf(' %3dh %04.1fm', round(OPH0),OPM0)];
qqq = [qqq sprintf(' %5dh %04.1fm', round(H0),M0)];
qqq = [qqq sprintf(' +/- %04.1fm', Md)];
qqq = [qqq sprintf(' (%3.1f°)', dispfov)];
qqq = [qqq sprintf(' % 3.0f m', sw)];
qqq = [qqq sprintf(' (%03.2f°)', resd)];
if resm < 100
qqq = [qqq sprintf(' %#2.2f m', resm)];
else
qqq = [qqq sprintf(' %#4.3f km', resm/1000)];
end
case {'csv'}
qqq = '';
%qqq = [qqq sprintf('%4i', i)];
qqq = [qqq sprintf('%-5s', ScannerName)]; % this is different
qqq = [qqq sprintf(',%5d', orbitRatD(minalti))];
qqq = [qqq sprintf(',%4.2f', orbitRatD(minalti)./idealThreshold(minalti))];
%qqq = [qqq sprintf(',%7.3f km', sma/1000)];
qqq = [qqq sprintf(',%8.3f +/- %3.2f km', meanta/1000,altRa/1000)];
%qqq = [qqq sprintf(',%3.2f km', altRa/1000)];
qqq = [qqq sprintf(',%03.2f°', tgtInclination(altii))];
qqq = [qqq sprintf(',%3dh %04.1fm', round(OPH0),OPM0)];
qqq = [qqq sprintf(',%5dh %04.1fm', round(H0),M0)];
qqq = [qqq sprintf(',%04.1fm', Md)];
qqq = [qqq sprintf(',%3.1f°', dispfov)];
qqq = [qqq sprintf(',% 3.0f m', sw)];
qqq = [qqq sprintf(',%03.2f°', resd)];
if resm < 100
qqq = [qqq sprintf(',%#2.2f m', resm)];
else
qqq = [qqq sprintf(',%#4.3f km', resm/1000)];
end
case {'csv-github'}
qqq = '';
%qqq = [qqq sprintf('%4i', i)];
qqq = [qqq sprintf('%s', Name)];
qqq = [qqq sprintf(',%s', ScannerName)]; % this is different
qqq = [qqq sprintf(',%5d', orbitRatD(minalti))];
qqq = [qqq sprintf(',%4.2f', orbitRatD(minalti)./idealThreshold(minalti))];
qqq = [qqq sprintf(',%8.3f +/- %3.2f km', meanta/1000,altRa/1000)];
qqq = [qqq sprintf(',%7.3f km', sma/1000)];
%qqq = [qqq sprintf(',%8.3f km', meanta/1000)];
%qqq = [qqq sprintf(',%3.2f km', altRa/1000)];
qqq = [qqq sprintf(',%03.2f°', tgtInclination(altii))];
qqq = [qqq sprintf(',%3dh %04.1fm', round(OPH0),OPM0)];
qqq = [qqq sprintf(',%5dh %04.1fm +/- %04.1fm', round(H0),M0,Md)];
%qqq = [qqq sprintf(',%04.1fh %04.1fm', Hd, Md)];
qqq = [qqq sprintf(',%3.1f°', dispfov)];
% qqq = [qqq sprintf(',% 3.0f m', sw)];
% qqq = [qqq sprintf(',%03.2f°', resd)];
%
% if resm < 100
% qqq = [qqq sprintf(',%#2.2f m', resm)];
% else
% qqq = [qqq sprintf(',%#4.3f km', resm/1000)];
% end
case 'markdown'
qqq = '';
%qqq = [qqq sprintf('%4i', i)];
qqq = [qqq sprintf('|%5d', orbitRatD(minalti))];
qqq = [qqq sprintf('|(%4.2f)', orbitRatD(minalti)./idealThreshold(minalti))];
%qqq = [qqq sprintf('|%7.3f km', sma/1000)];
qqq = [qqq sprintf('|%8.3f km', meanta/1000)];
qqq = [qqq sprintf('|+/- %3.2f km', altRa/1000)];
qqq = [qqq sprintf('|(%03.2f°)', tgtInclination(altii))];
qqq = [qqq sprintf('|%3dh %04.1fm', round(OPH0),OPM0)];
qqq = [qqq sprintf('|%5dh %04.1fm', round(H0),M0)];
qqq = [qqq sprintf('|+/- %04.1fm', Md)];
qqq = [qqq sprintf('|(%3.1f°)', dispfov)];
qqq = [qqq sprintf('|% 3.0f m', sw)];
qqq = [qqq sprintf('|(%03.2f°)', resd)];
if resm < 100
qqq = [qqq sprintf('|%#2.2f m', resm)];
else
qqq = [qqq sprintf('|%#4.3f km', resm/1000)];
end
otherwise
disp('Error: An unsupported format has been attempted.');
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% END TABLE ENTRY
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
disp(qqq);
if ( exist('argv_plots','var') || exist('argv_printplots','var') )
if( (length(ap)!=0) && (length(st)!=0))
handle = plot(ap/1000,st/3600,'.-');
end
end
end
if (exist('argv_plots','var') || exist('argv_printplots','var'))
hold off;
titleString = sprintf('Ideal Zones for [%s] (%s) at [%s]',ScannerName,LongName,planet);
title(titleString);
xlabel('Altitude (km)');
ylabel('Scan Time (h)');
if (exist('handle','var'))
legend(handle,'Ideal Zone','location','northwest');
end
%% gca is 'get current axis'
% x axis settings
set(gca,'xminortick','on');
set(gca,'xgrid','on');
set(gca,'xminorgrid','on');
% y axis settings
set(gca,'ygrid','on');
end
if exist('argv_printplots','var')
if exist('argv_plots','var')
print(graphFormat,plotName);
else
print(fh,graphFormat,plotName);
end
end
%calculate Single Pass Polar (if it exists)
if ((exist('sppmin','var')) && (sppmin < 25)); %gives us a 25 second window to look
disp('');
disp('A single-pass polar orbit exists! Orbit at exactly 90 degrees inclination.');
disp('Sidelap Altitude Time to Scan Swath Resolution');
disp('------------------------------------------------------');
for sppSideLap = [1, 1.05, 1.1, 1.3, 1.5]
[~, sppI] = min(abs(ts/sppSideLap-planetDay));
sppA = alts(sppI);
sppT = orbitalPeriods(sppI);
sw = swathWidths(sppI);
resd = sw/scan_res;
resm = resd*R*pi/180;
[Hs, Ms] = sec2hm(sppT);
qqq = sprintf(' %2d%% %7.3f km ',sppSideLap*100-100, sppA/1000);
qqq = [qqq sprintf('%4ih %04.1fm',Hs,Ms)];
qqq = [qqq sprintf(' %05.1f',sw)];
qqq = [qqq sprintf(' %4.1fd',resd)];
if resm < 100
qqq = [qqq sprintf(' %4d m', resm)];
else
qqq = [qqq sprintf(' %#4.3f km', resm/1000)];
end
disp(qqq);
end
disp('');
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% FOOTER FORMATTING
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
switch (argv_style)
case 'forum'
disp('[/code][/spoiler]');
disp('');
otherwise
disp('');
end
if (exist('argv_plots','var') || exist('argv_printplots','var'))
figure; hold on;
plot(alts/1000,orbitRatD,'ro','MarkerSize',3);
plot(alts/1000,orbitRatD,'k.');
plot(alts/1000,idealThreshold.*minthresh,'b');
plot(alts/1000,idealThreshold.*maxthresh,'g');
titleString = sprintf('Resonance Structure for [%s] (%s) at [%s]',ScannerName,LongName,planet);
title(titleString);
xlabel('Altitude (km)');
ylabel('Unknown');
lower = sprintf('Lower Sidelap Bound (%4.2f)',minthresh);
upper = sprintf('Upper Sidelap Bound (%4.2f)',maxthresh);
legend('Resonance Range', 'Resonance Altitude',lower,upper,'location','northwest')
legend('location','northwest');
%% gca is 'get current axis'
% x axis settings
set(gca,'xminortick','on');
set(gca,'xgrid','on');
set(gca,'xminorgrid','on');
% y axis settings
set(gca,'ygrid','on');
end
if exist('argv_plots','var')
if exist('argv_printplots','var')
plotName = sprintf('Resonances_%s_%s_s%.3f-%.3f_%s%s',planet,ScannerName,minthresh,maxthresh,resDisc,graphExt);
print(graphFormat,plotName);
pause(360); %% pause so we can see the interactive plots
else
pause(360); %% pause so we can see the interactive plots
end
else
if exist('argv_printplots','var')
set(gca,'Visible','on')
plotName = sprintf('Resonances_%s_%s_s%.3f-%.3f_%s%s',planet,ScannerName,minthresh,maxthresh,resDisc,graphExt);
print(graphFormat,plotName);