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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
//
// GENERATED FILE
//
use *;
use crateSpiceContext;
use *;
const CNVTOL: f64 = 0.000001;
const NWMAX: i32 = 15;
const NWDIST: i32 = 5;
const NWSEP: i32 = 5;
const NWRR: i32 = 5;
const NWUDS: i32 = 5;
const NWPA: i32 = 5;
const NWILUM: i32 = 5;
const ADDWIN: f64 = 0.5;
const FRMNLN: i32 = 32;
const FOVTLN: i32 = 40;
const FTCIRC: & = b"CIRCLE";
const FTELLI: & = b"ELLIPSE";
const FTPOLY: & = b"POLYGON";
const FTRECT: & = b"RECTANGLE";
const ANNULR: & = b"ANNULAR";
const ANY: & = b"ANY";
const PARTL: & = b"PARTIAL";
const FULL: & = b"FULL";
const DSSHAP: & = b"DSK";
const EDSHAP: & = b"ELLIPSOID";
const PTSHAP: & = b"POINT";
const RYSHAP: & = b"RAY";
const SPSHAP: & = b"SPHERE";
const NOCTYP: i32 = 4;
const OCLLN: i32 = 7;
const SHPLEN: i32 = 9;
const MAXVRT: i32 = 10000;
const CIRFOV: & = b"CIRCLE";
const ELLFOV: & = b"ELLIPSE";
const POLFOV: & = b"POLYGON";
const RECFOV: & = b"RECTANGLE";
const ZZGET: i32 = -1;
const ZZPUT: i32 = -2;
const ZZRESET: i32 = -3;
const ZZNOP: i32 = 3;
const GEN: i32 = 1;
const GF_REF: i32 = 2;
const GF_TOL: i32 = 3;
const GF_DT: i32 = 4;
const NID: i32 = 4;
const LBCELL: i32 = -5;
const BAIL: bool = false;
const RPT: bool = false;
/// GF, find occultation
///
/// Determine time intervals when an observer sees one target body
/// occulted by, or in transit across, another.
///
/// The surfaces of the target bodies may be represented by triaxial
/// ellipsoids or by topographic data provided by DSK files.
///
/// # Required Reading
///
/// * [CK](crate::required_reading::ck)
/// * [FRAMES](crate::required_reading::frames)
/// * [GF](crate::required_reading::gf)
/// * [KERNEL](crate::required_reading::kernel)
/// * [NAIF_IDS](crate::required_reading::naif_ids)
/// * [SPK](crate::required_reading::spk)
/// * [TIME](crate::required_reading::time)
/// * [WINDOWS](crate::required_reading::windows)
///
/// # Brief I/O
///
/// ```text
/// VARIABLE I/O DESCRIPTION
/// -------- --- --------------------------------------------------
/// LBCELL P SPICE Cell lower bound.
/// CNVTOL P Convergence tolerance.
/// ZZGET P ZZHOLDD retrieves a stored DP value.
/// GF_TOL P ZZHOLDD acts on the GF subsystem tolerance.
/// OCCTYP I Type of occultation.
/// FRONT I Name of body occulting the other.
/// FSHAPE I Type of shape model used for front body.
/// FFRAME I Body-fixed, body-centered frame for front body.
/// BACK I Name of body occulted by the other.
/// BSHAPE I Type of shape model used for back body.
/// BFRAME I Body-fixed, body-centered frame for back body.
/// ABCORR I Aberration correction flag.
/// OBSRVR I Name of the observing body.
/// STEP I Step size in seconds for finding occultation
/// events.
/// CNFINE I SPICE window to which the search is restricted.
/// RESULT I-O SPICE window containing results.
/// ```
///
/// # Detailed Input
///
/// ```text
/// OCCTYP indicates the type of occultation that is to be found.
/// Note that transits are considered to be a type of
/// occultation.
///
/// Supported values and corresponding definitions are:
///
/// 'FULL' denotes the full occultation of the
/// body designated by BACK by the body
/// designated by FRONT, as seen from the
/// location of the observer. In other
/// words, the occulted body is completely
/// invisible as seen from the observer's
/// location.
///
/// 'ANNULAR' denotes an annular occultation: the
/// body designated by FRONT blocks part
/// of, but not the limb of, the body
/// designated by BACK, as seen from the
/// location of the observer.
///
/// 'PARTIAL' denotes a partial, non-annular
/// occultation: the body designated by
/// FRONT blocks part, but not all, of the
/// limb of the body designated by BACK, as
/// seen from the location of the observer.
///
/// 'ANY' denotes any of the above three types of
/// occultations: 'PARTIAL', 'ANNULAR', or
/// 'FULL'.
///
/// 'ANY' should be used to search for
/// times when the body designated by FRONT
/// blocks any part of the body designated
/// by BACK.
///
/// The option 'ANY' must be used if either
/// the front or back target body is
/// modeled as a point.
///
/// Case and leading or trailing blanks are not
/// significant in the string OCCTYP.
///
/// FRONT is the name of the target body that occults---that is,
/// passes in front of---the other. Optionally, you may
/// supply the integer NAIF ID code for the body as a
/// string. For example both 'MOON' and '301' are
/// legitimate strings that designate the Moon.
///
/// Case and leading or trailing blanks are not
/// significant in the string FRONT.
///
/// FSHAPE is a string indicating the geometric model used to
/// represent the shape of the front target body. The
/// supported options are:
///
/// 'ELLIPSOID'
///
/// Use a triaxial ellipsoid model with radius
/// values provided via the kernel pool. A kernel
/// variable having a name of the form
///
/// BODYnnn_RADII
///
/// where nnn represents the NAIF integer code
/// associated with the body, must be present in
/// the kernel pool. This variable must be
/// associated with three numeric values giving the
/// lengths of the ellipsoid's X, Y, and Z
/// semi-axes.
///
/// 'POINT'
///
/// Treat the body as a single point. When a point
/// target is specified, the occultation type must
/// be set to 'ANY'.
///
/// 'DSK/UNPRIORITIZED[/SURFACES = <surface list>]'
///
/// Use topographic data provided by DSK files to
/// model the body's shape. These data must be
/// provided by loaded DSK files.
///
/// The surface list specification is optional. The
/// syntax of the list is
///
/// <surface 1> [, <surface 2>...]
///
/// If present, it indicates that data only for the
/// listed surfaces are to be used; however, data
/// need not be available for all surfaces in the
/// list. If absent, loaded DSK data for any surface
/// associated with the target body are used.
///
/// The surface list may contain surface names or
/// surface ID codes. Names containing blanks must
/// be delimited by double quotes, for example
///
/// SURFACES = "Mars MEGDR 128 PIXEL/DEG"
///
/// If multiple surfaces are specified, their names
/// or IDs must be separated by commas.
///
/// See the $Particulars section below for details
/// concerning use of DSK data.
///
/// The combinations of the shapes of the target bodies
/// FRONT and BACK must be one of:
///
/// One ELLIPSOID, one POINT
/// Two ELLIPSOIDs
/// One DSK, one POINT
///
/// Case and leading or trailing blanks are not
/// significant in the string FSHAPE.
///
/// FFRAME is the name of the body-fixed, body-centered reference
/// frame associated with the front target body. Examples of
/// such names are 'IAU_SATURN' (for Saturn) and 'ITRF93'
/// (for the Earth).
///
/// If the front target body is modeled as a point, FFRAME
/// should be left blank.
///
/// Case and leading or trailing blanks bracketing a
/// non-blank frame name are not significant in the string
/// FFRAME.
///
/// BACK is the name of the target body that is occulted
/// by---that is, passes in back of---the other.
/// Optionally, you may supply the integer NAIF ID code
/// for the body as a string. For example both 'MOON' and
/// '301' are legitimate strings that designate the Moon.
///
/// Case and leading or trailing blanks are not
/// significant in the string BACK.
///
/// BSHAPE is the shape specification for the body designated
/// by BACK. The supported options are those for
/// FSHAPE. See the description of FSHAPE above for
/// details.
///
/// BFRAME is the name of the body-fixed, body-centered reference
/// frame associated with the ``back'' target body. Examples
/// of such names are 'IAU_SATURN' (for Saturn) and 'ITRF93'
/// (for the Earth).
///
/// If the back target body is modeled as a point, BFRAME
/// should be left blank.
///
/// Case and leading or trailing blanks bracketing a
/// non-blank frame name are not significant in the string
/// BFRAME.
///
/// ABCORR indicates the aberration corrections to be applied to
/// the state of each target body to account for one-way
/// light time. Stellar aberration corrections are
/// ignored if specified, since these corrections don't
/// improve the accuracy of the occultation determination.
///
/// See the header of the SPICE routine SPKEZR for a
/// detailed description of the aberration correction
/// options. For convenience, the options supported by
/// this routine are listed below:
///
/// 'NONE' Apply no correction.
///
/// 'LT' "Reception" case: correct for
/// one-way light time using a Newtonian
/// formulation.
///
/// 'CN' "Reception" case: converged
/// Newtonian light time correction.
///
/// 'XLT' "Transmission" case: correct for
/// one-way light time using a Newtonian
/// formulation.
///
/// 'XCN' "Transmission" case: converged
/// Newtonian light time correction.
///
/// Case and blanks are not significant in the string
/// ABCORR.
///
/// OBSRVR is the name of the body from which the occultation is
/// observed. Optionally, you may supply the integer NAIF
/// ID code for the body as a string.
///
/// Case and leading or trailing blanks are not
/// significant in the string OBSRVR.
///
/// STEP is the step size to be used in the search. STEP must
/// be shorter than any interval, within the confinement
/// window, over which the specified occultation condition
/// is met. In other words, STEP must be shorter than the
/// shortest occultation event that the user wishes to
/// detect; STEP must also be shorter than the shortest
/// time interval between two occultation events that
/// occur within the confinement window (see below).
/// However, STEP must not be *too* short, or the search
/// will take an unreasonable amount of time.
///
/// The choice of STEP affects the completeness but not
/// the precision of solutions found by this routine; the
/// precision is controlled by the convergence tolerance.
/// See the discussion of the parameter CNVTOL for
/// details.
///
/// STEP has units of TDB seconds.
///
/// CNFINE is a SPICE window that confines the time period over
/// which the specified search is conducted. CNFINE may
/// consist of a single interval or a collection of
/// intervals.
///
/// The endpoints of the time intervals comprising CNFINE
/// are interpreted as seconds past J2000 TDB.
///
/// See the $Examples section below for a code example
/// that shows how to create a confinement window.
///
/// CNFINE must be initialized by the caller via the
/// SPICELIB routine SSIZED.
///
/// RESULT is a double precision SPICE window which will contain
/// the search results. RESULT must be declared and
/// initialized with sufficient size to capture the full
/// set of time intervals within the search region on which
/// the specified condition is satisfied.
///
/// RESULT must be initialized by the caller via the
/// SPICELIB routine SSIZED.
///
/// If RESULT is non-empty on input, its contents will be
/// discarded before GFOCLT conducts its search.
/// ```
///
/// # Detailed Output
///
/// ```text
/// RESULT is a SPICE window representing the set of time intervals,
/// within the confinement window, when the specified
/// occultation occurs.
///
/// The endpoints of the time intervals comprising RESULT are
/// interpreted as seconds past J2000 TDB.
///
/// If no times within the confinement window satisfy the
/// search criteria, RESULT will be returned with a
/// cardinality of zero.
/// ```
///
/// # Parameters
///
/// ```text
/// LBCELL is the lower bound for SPICE cell arrays.
///
/// CNVTOL is the convergence tolerance used for finding
/// endpoints of the intervals comprising the result
/// window. CNVTOL is used to determine when binary
/// searches for roots should terminate: when a root is
/// bracketed within an interval of length CNVTOL, the
/// root is considered to have been found.
///
/// The accuracy, as opposed to precision, of roots found
/// by this routine depends on the accuracy of the input
/// data. In most cases, the accuracy of solutions will be
/// inferior to their precision.
///
/// See INCLUDE file gf.inc for declarations and descriptions of
/// parameters used throughout the GF system.
/// ```
///
/// # Exceptions
///
/// ```text
/// 1) In order for this routine to produce correct results,
/// the step size must be appropriate for the problem at hand.
/// Step sizes that are too large may cause this routine to miss
/// roots; step sizes that are too small may cause this routine
/// to run unacceptably slowly and in some cases, find spurious
/// roots.
///
/// This routine does not diagnose invalid step sizes, except
/// that if the step size is non-positive, an error is signaled by
/// a routine in the call tree of this routine.
///
/// 2) Due to numerical errors, in particular,
///
/// - Truncation error in time values
/// - Finite tolerance value
/// - Errors in computed geometric quantities
///
/// it is *normal* for the condition of interest to not always be
/// satisfied near the endpoints of the intervals comprising the
/// result window.
///
/// The result window may need to be contracted slightly by the
/// caller to achieve desired results. The SPICE window routine
/// WNCOND can be used to contract the result window.
///
/// 3) If name of either target or the observer cannot be translated
/// to a NAIF ID code, an error is signaled by a routine
/// in the call tree of this routine.
///
/// 4) If the radii of a target body modeled as an ellipsoid cannot
/// be determined by searching the kernel pool for a kernel
/// variable having a name of the form
///
/// 'BODYnnn_RADII'
///
/// where nnn represents the NAIF integer code associated with
/// the body, an error is signaled by a routine in the
/// call tree of this routine.
///
/// 5) If either of the target bodies FRONT or BACK coincides with
/// the observer body OBSRVR, an error is signaled by a
/// routine in the call tree of this routine.
///
/// 6) If the body designated by FRONT coincides with that
/// designated by BACK, an error is signaled by a routine
/// in the call tree of this routine.
///
/// 7) If either of the body model specifiers FSHAPE or BSHAPE
/// is not recognized, an error is signaled by a routine
/// in the call tree of this routine.
///
/// 8) If both of the body model specifiers FSHAPE and BSHAPE
/// specify point targets, an error is signaled by a
/// routine in the call tree of this routine.
///
/// 9) If one of the body model specifiers FSHAPE and BSHAPE
/// specifies a DSK model, and the other argument does not
/// specify a point target, an error is signaled by a routine in
/// the call tree of this routine.
///
/// 10) If a target body-fixed reference frame associated with a
/// non-point target is not recognized, an error is signaled by a
/// routine in the call tree of this routine.
///
/// 11) If a target body-fixed reference frame is not centered at the
/// corresponding target body, an error is signaled by a routine
/// in the call tree of this routine.
///
/// 12) If the loaded kernels provide insufficient data to compute any
/// required state vector, an error is signaled by a routine in
/// the call tree of this routine.
///
/// 13) If an error occurs while reading an SPK or other kernel file,
/// the error is signaled by a routine in the call tree
/// of this routine.
///
/// 14) If a point target is specified and the occultation type is set
/// to a valid value other than 'ANY', an error is signaled by a
/// routine in the call tree of this routine.
///
/// 15) If the output SPICE window RESULT has size less than 2, the
/// error SPICE(WINDOWTOOSMALL) is signaled.
///
/// 16) If the output SPICE window RESULT has insufficient capacity
/// to contain the number of intervals on which the specified
/// occultation condition is met, an error is signaled
/// by a routine in the call tree of this routine.
///
/// 17) If the occultation type OCCTYP is invalid, an error is
/// signaled by a routine in the call tree of this routine.
///
/// 18) If the aberration correction specification ABCORR is invalid,
/// an error is signaled by a routine in the call tree of this
/// routine.
///
/// 19) If either FSHAPE or BSHAPE specifies that the target surface
/// is represented by DSK data, and no DSK files are loaded for
/// the specified target, an error is signaled by a routine in
/// the call tree of this routine.
///
/// 20) If either FSHAPE or BSHAPE specifies that the target surface
/// is represented by DSK data, but the shape specification is
/// invalid, an error is signaled by a routine in the call tree
/// of this routine.
/// ```
///
/// # Files
///
/// ```text
/// Appropriate SPICE kernels must be loaded by the calling program
/// before this routine is called.
///
/// The following data are required:
///
/// - SPK data: the calling application must load ephemeris data
/// for the targets, source and observer that cover the time
/// period specified by the window CNFINE. If aberration
/// corrections are used, the states of the target bodies and of
/// the observer relative to the solar system barycenter must be
/// calculable from the available ephemeris data. Typically
/// ephemeris data are made available by loading one or more SPK
/// files via FURNSH.
///
/// - PCK data: bodies modeled as triaxial ellipsoids must have
/// semi-axis lengths provided by variables in the kernel pool.
/// Typically these data are made available by loading a text
/// PCK file via FURNSH.
///
/// - FK data: if either of the reference frames designated by
/// BFRAME or FFRAME are not built in to the SPICE system,
/// one or more FKs specifying these frames must be loaded.
///
/// The following data may be required:
///
/// - DSK data: if either FSHAPE or BSHAPE indicates that DSK
/// data are to be used, DSK files containing topographic data
/// for the target body must be loaded. If a surface list is
/// specified, data for at least one of the listed surfaces must
/// be loaded.
///
/// - Surface name-ID associations: if surface names are specified
/// in FSHAPE or BSHAPE, the association of these names with
/// their corresponding surface ID codes must be established by
/// assignments of the kernel variables
///
/// NAIF_SURFACE_NAME
/// NAIF_SURFACE_CODE
/// NAIF_SURFACE_BODY
///
/// Normally these associations are made by loading a text
/// kernel containing the necessary assignments. An example
/// of such a set of assignments is
///
/// NAIF_SURFACE_NAME += 'Mars MEGDR 128 PIXEL/DEG'
/// NAIF_SURFACE_CODE += 1
/// NAIF_SURFACE_BODY += 499
///
/// - CK data: either of the body-fixed frames to which FFRAME or
/// BFRAME refer might be a CK frame. If so, at least one CK
/// file will be needed to permit transformation of vectors
/// between that frame and the J2000 frame.
///
/// - SCLK data: if a CK file is needed, an associated SCLK
/// kernel is required to enable conversion between encoded SCLK
/// (used to time-tag CK data) and barycentric dynamical time
/// (TDB).
///
/// Kernel data are normally loaded once per program run, NOT every
/// time this routine is called.
/// ```
///
/// # Particulars
///
/// ```text
/// This routine provides a simpler, but less flexible, interface
/// than does the SPICELIB routine GFOCCE for conducting searches for
/// occultation events. Applications that require support for
/// progress reporting, interrupt handling, non-default step or
/// refinement functions, or non-default convergence tolerance should
/// call GFOCCE rather than this routine.
///
/// This routine determines a set of one or more time intervals
/// within the confinement window when a specified type of
/// occultation occurs. The resulting set of intervals is returned as
/// a SPICE window.
///
/// Below we discuss in greater detail aspects of this routine's
/// solution process that are relevant to correct and efficient
/// use of this routine in user applications.
///
///
/// The Search Process
/// ==================
///
/// The search for occultations is treated as a search for state
/// transitions: times are sought when the state of the BACK body
/// changes from "not occulted" to "occulted" or vice versa.
///
/// Step Size
/// =========
///
/// Each interval of the confinement window is searched as follows:
/// first, the input step size is used to determine the time
/// separation at which the occultation state will be sampled.
/// Starting at the left endpoint of the interval, samples of the
/// occultation state will be taken at each step. If a state change
/// is detected, a root has been bracketed; at that point, the
/// "root"--the time at which the state change occurs---is found by a
/// refinement process, for example, via binary search.
///
/// Note that the optimal choice of step size depends on the lengths
/// of the intervals over which the occultation state is constant:
/// the step size should be shorter than the shortest occultation
/// duration and the shortest period between occultations, within
/// the confinement window.
///
/// Having some knowledge of the relative geometry of the targets and
/// observer can be a valuable aid in picking a reasonable step size.
/// In general, the user can compensate for lack of such knowledge by
/// picking a very short step size; the cost is increased computation
/// time.
///
/// Note that the step size is not related to the precision with which
/// the endpoints of the intervals of the result window are computed.
/// That precision level is controlled by the convergence tolerance.
///
///
/// Convergence Tolerance
/// =====================
///
/// Once a root has been bracketed, a refinement process is used to
/// narrow down the time interval within which the root must lie.
/// This refinement process terminates when the location of the root
/// has been determined to within an error margin called the
/// "convergence tolerance." The default convergence tolerance
/// used by this routine is set by the parameter CNVTOL (defined
/// in gf.inc).
///
/// The value of CNVTOL is set to a "tight" value so that the
/// tolerance doesn't become the limiting factor in the accuracy of
/// solutions found by this routine. In general the accuracy of input
/// data will be the limiting factor.
///
/// The user may change the convergence tolerance from the default
/// CNVTOL value by calling the routine GFSTOL, e.g.
///
/// CALL GFSTOL( tolerance value )
///
/// Call GFSTOL prior to calling this routine. All subsequent
/// searches will use the updated tolerance value.
///
/// Setting the tolerance tighter than CNVTOL is unlikely to be
/// useful, since the results are unlikely to be more accurate.
/// Making the tolerance looser will speed up searches somewhat,
/// since a few convergence steps will be omitted. However, in most
/// cases, the step size is likely to have a much greater effect
/// on processing time than would the convergence tolerance.
///
///
/// The Confinement Window
/// ======================
///
/// The simplest use of the confinement window is to specify a time
/// interval within which a solution is sought.
///
/// The confinement window also can be used to restrict a search to
/// a time window over which required data (typically ephemeris
/// data, in the case of occultation searches) are known to be
/// available.
///
/// In some cases, the confinement window be used to make searches
/// more efficient. Sometimes it's possible to do an efficient search
/// to reduce the size of the time period over which a relatively
/// slow search of interest must be performed. See the "CASCADE"
/// example program in gf.req for a demonstration.
///
///
/// Using DSK data
/// ==============
///
/// DSK loading and unloading
/// -------------------------
///
/// DSK files providing data used by this routine are loaded by
/// calling FURNSH and can be unloaded by calling UNLOAD or
/// KCLEAR. See the documentation of FURNSH for limits on numbers
/// of loaded DSK files.
///
/// For run-time efficiency, it's desirable to avoid frequent
/// loading and unloading of DSK files. When there is a reason to
/// use multiple versions of data for a given target body---for
/// example, if topographic data at varying resolutions are to be
/// used---the surface list can be used to select DSK data to be
/// used for a given computation. It is not necessary to unload
/// the data that are not to be used. This recommendation presumes
/// that DSKs containing different versions of surface data for a
/// given body have different surface ID codes.
///
///
/// DSK data priority
/// -----------------
///
/// A DSK coverage overlap occurs when two segments in loaded DSK
/// files cover part or all of the same domain---for example, a
/// given longitude-latitude rectangle---and when the time
/// intervals of the segments overlap as well.
///
/// When DSK data selection is prioritized, in case of a coverage
/// overlap, if the two competing segments are in different DSK
/// files, the segment in the DSK file loaded last takes
/// precedence. If the two segments are in the same file, the
/// segment located closer to the end of the file takes
/// precedence.
///
/// When DSK data selection is unprioritized, data from competing
/// segments are combined. For example, if two competing segments
/// both represent a surface as sets of triangular plates, the
/// union of those sets of plates is considered to represent the
/// surface.
///
/// Currently only unprioritized data selection is supported.
/// Because prioritized data selection may be the default behavior
/// in a later version of the routine, the UNPRIORITIZED keyword is
/// required in the FSHAPE and BSHAPE arguments.
///
///
/// Syntax of the shape input arguments for the DSK case
/// ----------------------------------------------------
///
/// The keywords and surface list in the target shape arguments
/// FSHAPE and BSHAPE, when DSK shape models are specified, are
/// called "clauses." The clauses may appear in any order, for
/// example
///
/// DSK/<surface list>/UNPRIORITIZED
/// DSK/UNPRIORITIZED/<surface list>
/// UNPRIORITIZED/<surface list>/DSK
///
/// The simplest form of a target argument specifying use of
/// DSK data is one that lacks a surface list, for example:
///
/// 'DSK/UNPRIORITIZED'
///
/// For applications in which all loaded DSK data for the target
/// body are for a single surface, and there are no competing
/// segments, the above string suffices. This is expected to be
/// the usual case.
///
/// When, for the specified target body, there are loaded DSK
/// files providing data for multiple surfaces for that body, the
/// surfaces to be used by this routine for a given call must be
/// specified in a surface list, unless data from all of the
/// surfaces are to be used together.
///
/// The surface list consists of the string
///
/// SURFACES =
///
/// followed by a comma-separated list of one or more surface
/// identifiers. The identifiers may be names or integer codes in
/// string format. For example, suppose we have the surface
/// names and corresponding ID codes shown below:
///
/// Surface Name ID code
/// ------------ -------
/// 'Mars MEGDR 128 PIXEL/DEG' 1
/// 'Mars MEGDR 64 PIXEL/DEG' 2
/// 'Mars_MRO_HIRISE' 3
///
/// If data for all of the above surfaces are loaded, then
/// data for surface 1 can be specified by either
///
/// 'SURFACES = 1'
///
/// or
///
/// 'SURFACES = "Mars MEGDR 128 PIXEL/DEG"'
///
/// Double quotes are used to delimit the surface name because
/// it contains blank characters.
///
/// To use data for surfaces 2 and 3 together, any
/// of the following surface lists could be used:
///
/// 'SURFACES = 2, 3'
///
/// 'SURFACES = "Mars MEGDR 64 PIXEL/DEG", 3'
///
/// 'SURFACES = 2, Mars_MRO_HIRISE'
///
/// 'SURFACES = "Mars MEGDR 64 PIXEL/DEG", Mars_MRO_HIRISE'
///
/// An example of a shape argument that could be constructed
/// using one of the surface lists above is
///
/// 'DSK/UNPRIORITIZED/SURFACES = "Mars MEGDR 64 PIXEL/DEG", 3'
/// ```
///
/// # Examples
///
/// ```text
/// The numerical results shown for these examples may differ across
/// platforms. The results depend on the SPICE kernels used as
/// input, the compiler and supporting libraries, and the machine
/// specific arithmetic implementation.
///
/// 1) Find occultations of the Sun by the Moon (that is, solar
/// eclipses) as seen from the center of the Earth over the month
/// December, 2001.
///
/// Use light time corrections to model apparent positions of Sun
/// and Moon. Stellar aberration corrections are not specified
/// because they don't affect occultation computations.
///
/// We select a step size of 3 minutes, which means we
/// ignore occultation events lasting less than 3 minutes,
/// if any exist.
///
/// Use the meta-kernel shown below to load the required SPICE
/// kernels.
///
///
/// KPL/MK
///
/// File name: gfoclt_ex1.tm
///
/// This meta-kernel is intended to support operation of SPICE
/// example programs. The kernels shown here should not be
/// assumed to contain adequate or correct versions of data
/// required by SPICE-based user applications.
///
/// In order for an application to use this meta-kernel, the
/// kernels referenced here must be present in the user's
/// current working directory.
///
/// The names and contents of the kernels referenced
/// by this meta-kernel are as follows:
///
/// File name Contents
/// --------- --------
/// de421.bsp Planetary ephemeris
/// pck00008.tpc Planet orientation and
/// radii
/// naif0009.tls Leapseconds
///
///
/// \begindata
///
/// KERNELS_TO_LOAD = ( 'de421.bsp',
/// 'pck00008.tpc',
/// 'naif0009.tls' )
///
/// \begintext
///
/// End of meta-kernel
///
///
/// Example code begins here.
///
///
/// PROGRAM GFOCLT_EX1
/// IMPLICIT NONE
///
/// C
/// C SPICELIB functions
/// C
/// INTEGER WNCARD
///
/// C
/// C Local parameters
/// C
/// CHARACTER*(*) TIMFMT
/// PARAMETER ( TIMFMT =
/// . 'YYYY MON DD HR:MN:SC.###### (TDB)::TDB' )
///
/// INTEGER MAXWIN
/// PARAMETER ( MAXWIN = 2 * 100 )
///
/// INTEGER TIMLEN
/// PARAMETER ( TIMLEN = 40 )
///
/// INTEGER LBCELL
/// PARAMETER ( LBCELL = -5 )
///
/// C
/// C Local variables
/// C
/// CHARACTER*(TIMLEN) WIN0
/// CHARACTER*(TIMLEN) WIN1
/// CHARACTER*(TIMLEN) BEGSTR
/// CHARACTER*(TIMLEN) ENDSTR
///
/// DOUBLE PRECISION CNFINE ( LBCELL : 2 )
/// DOUBLE PRECISION ET0
/// DOUBLE PRECISION ET1
/// DOUBLE PRECISION LEFT
/// DOUBLE PRECISION RESULT ( LBCELL : MAXWIN )
/// DOUBLE PRECISION RIGHT
/// DOUBLE PRECISION STEP
///
/// INTEGER I
///
/// C
/// C Saved variables
/// C
/// C The confinement and result windows CNFINE and RESULT are
/// C saved because this practice helps to prevent stack
/// C overflow.
/// C
/// SAVE CNFINE
/// SAVE RESULT
///
/// C
/// C Load kernels.
/// C
/// CALL FURNSH ( 'gfoclt_ex1.tm' )
///
/// C
/// C Initialize the confinement and result windows.
/// C
/// CALL SSIZED ( 2, CNFINE )
/// CALL SSIZED ( MAXWIN, RESULT )
///
/// C
/// C Obtain the TDB time bounds of the confinement
/// C window, which is a single interval in this case.
/// C
/// WIN0 = '2001 DEC 01 00:00:00 TDB'
/// WIN1 = '2002 JAN 01 00:00:00 TDB'
///
/// CALL STR2ET ( WIN0, ET0 )
/// CALL STR2ET ( WIN1, ET1 )
///
/// C
/// C Insert the time bounds into the confinement
/// C window.
/// C
/// CALL WNINSD ( ET0, ET1, CNFINE )
///
/// C
/// C Select a 3-minute step. We'll ignore any occultations
/// C lasting less than 3 minutes. Units are TDB seconds.
/// C
/// STEP = 180.D0
///
/// C
/// C Perform the search.
/// C
/// CALL GFOCLT ( 'ANY',
/// . 'MOON', 'ellipsoid', 'IAU_MOON',
/// . 'SUN', 'ellipsoid', 'IAU_SUN',
/// . 'LT', 'EARTH', STEP,
/// . CNFINE, RESULT )
///
///
/// IF ( WNCARD(RESULT) .EQ. 0 ) THEN
///
/// WRITE (*,*) 'No occultation was found.'
///
/// ELSE
///
/// DO I = 1, WNCARD(RESULT)
///
/// C
/// C Fetch and display each occultation interval.
/// C
/// CALL WNFETD ( RESULT, I, LEFT, RIGHT )
///
/// CALL TIMOUT ( LEFT, TIMFMT, BEGSTR )
/// CALL TIMOUT ( RIGHT, TIMFMT, ENDSTR )
///
/// WRITE (*,*) 'Interval ', I
/// WRITE (*,*) ' Start time: '//BEGSTR
/// WRITE (*,*) ' Stop time: '//ENDSTR
///
/// END DO
///
/// END IF
///
/// END
///
///
/// When this program was executed on a Mac/Intel/gfortran/64-bit
/// platform, the output was:
///
///
/// Interval 1
/// Start time: 2001 DEC 14 20:10:14.195952 (TDB)
/// Stop time: 2001 DEC 14 21:35:50.317994 (TDB)
///
///
/// 2) Find occultations of Titan by Saturn or of Saturn by
/// Titan as seen from the center of the Earth over the
/// last four months of 2008. Model both target bodies as
/// ellipsoids. Search for every type of occultation.
///
/// Use light time corrections to model apparent positions of
/// Saturn and Titan. Stellar aberration corrections are not
/// specified because they don't affect occultation computations.
///
/// We select a step size of 15 minutes, which means we
/// ignore occultation events lasting less than 15 minutes,
/// if any exist.
///
/// Use the meta-kernel shown below to load the required SPICE
/// kernels.
///
///
/// KPL/MK
///
/// File name: gfoclt_ex2.tm
///
/// This meta-kernel is intended to support operation of SPICE
/// example programs. The kernels shown here should not be
/// assumed to contain adequate or correct versions of data
/// required by SPICE-based user applications.
///
/// In order for an application to use this meta-kernel, the
/// kernels referenced here must be present in the user's
/// current working directory.
///
/// The names and contents of the kernels referenced
/// by this meta-kernel are as follows:
///
/// File name Contents
/// --------- --------
/// de421.bsp Planetary ephemeris
/// sat427.bsp Satellite ephemeris for
/// Saturn
/// pck00008.tpc Planet orientation and
/// radii
/// naif0009.tls Leapseconds
///
/// \begindata
///
/// KERNELS_TO_LOAD = ( 'de421.bsp',
/// 'sat427.bsp',
/// 'pck00008.tpc',
/// 'naif0009.tls' )
///
/// \begintext
///
/// End of meta-kernel
///
///
/// Example code begins here.
///
///
/// PROGRAM GFOCLT_EX2
/// IMPLICIT NONE
///
/// C
/// C SPICELIB functions
/// C
/// INTEGER WNCARD
///
/// C
/// C Local parameters
/// C
/// CHARACTER*(*) TIMFMT
/// PARAMETER ( TIMFMT =
/// . 'YYYY MON DD HR:MN:SC.######::TDB' )
///
/// INTEGER MAXWIN
/// PARAMETER ( MAXWIN = 2 * 100 )
///
/// INTEGER TIMLEN
/// PARAMETER ( TIMLEN = 40 )
///
/// INTEGER BDNMLN
/// PARAMETER ( BDNMLN = 36 )
///
/// INTEGER FRNMLN
/// PARAMETER ( FRNMLN = 32 )
///
/// C
/// C Number of occultation types
/// C
/// INTEGER NTYPES
/// PARAMETER ( NTYPES = 4 )
///
/// C
/// C Occultation type name length
/// C
/// INTEGER OCNMLN
/// PARAMETER ( OCNMLN = 10 )
///
/// C
/// C Output line length
/// C
/// INTEGER LNSIZE
/// PARAMETER ( LNSIZE = 80 )
///
/// INTEGER LBCELL
/// PARAMETER ( LBCELL = -5 )
///
/// C
/// C Local variables
/// C
/// CHARACTER*(BDNMLN) BACK
/// CHARACTER*(FRNMLN) BFRAME
/// CHARACTER*(FRNMLN) FFRAME
/// CHARACTER*(BDNMLN) FRONT
/// CHARACTER*(LNSIZE) LINE
/// CHARACTER*(BDNMLN) OBSRVR
/// CHARACTER*(OCNMLN) OCCTYP ( NTYPES )
/// CHARACTER*(LNSIZE) TEMPLT ( NTYPES )
/// CHARACTER*(TIMLEN) TIMSTR
/// CHARACTER*(LNSIZE) TITLE
/// CHARACTER*(TIMLEN) WIN0
/// CHARACTER*(TIMLEN) WIN1
///
/// DOUBLE PRECISION CNFINE ( LBCELL : 2 )
/// DOUBLE PRECISION ET0
/// DOUBLE PRECISION ET1
/// DOUBLE PRECISION FINISH
/// DOUBLE PRECISION RESULT ( LBCELL : MAXWIN )
/// DOUBLE PRECISION START
/// DOUBLE PRECISION STEP
///
/// INTEGER I
/// INTEGER J
/// INTEGER K
///
/// C
/// C Saved variables
/// C
/// C The confinement and result windows CNFINE
/// C and RESULT are saved because this practice
/// C helps to prevent stack overflow.
/// C
/// C The variables OCCTYP and TEMPLT are
/// C saved to facilitate turning this main program into
/// C a subroutine. In a main program, it's not
/// C necessary to save these variables.
/// C
/// SAVE CNFINE
/// SAVE OCCTYP
/// SAVE RESULT
/// SAVE TEMPLT
///
/// C
/// C Initial values
/// C
/// DATA OCCTYP / 'FULL',
/// . 'ANNULAR',
/// . 'PARTIAL',
/// . 'ANY' /
///
/// DATA TEMPLT /
/// . 'Condition: # occultation of # by #',
/// . 'Condition: # occultation of # by #',
/// . 'Condition: # occultation of # by #',
/// . 'Condition: # occultation of # by #' /
///
/// C
/// C Load kernels.
/// C
/// CALL FURNSH ( 'gfoclt_ex2.tm' )
///
/// C
/// C Initialize the confinement and result windows.
/// C
/// CALL SSIZED ( 2, CNFINE )
/// CALL SSIZED ( MAXWIN, RESULT )
///
/// C
/// C Obtain the TDB time bounds of the confinement
/// C window, which is a single interval in this case.
/// C
/// WIN0 = '2008 SEP 01 00:00:00 TDB'
/// WIN1 = '2009 JAN 01 00:00:00 TDB'
///
/// CALL STR2ET ( WIN0, ET0 )
/// CALL STR2ET ( WIN1, ET1 )
///
/// C
/// C Insert the time bounds into the confinement
/// C window.
/// C
/// CALL WNINSD ( ET0, ET1, CNFINE )
///
/// C
/// C Select a 15-minute step. We'll ignore any occultations
/// C lasting less than 15 minutes. Units are TDB seconds.
/// C
/// STEP = 900.D0
///
/// C
/// C The observation location is the Earth.
/// C
/// OBSRVR = 'EARTH'
///
/// C
/// C Loop over the occultation types.
/// C
/// DO I = 1, NTYPES
///
/// C
/// C For each type, do a search for both transits of
/// C Titan across Saturn and occultations of Titan by
/// C Saturn.
/// C
/// DO J = 1, 2
///
/// IF ( J .EQ. 1 ) THEN
///
/// FRONT = 'TITAN'
/// FFRAME = 'IAU_TITAN'
/// BACK = 'SATURN'
/// BFRAME = 'IAU_SATURN'
///
/// ELSE
///
/// FRONT = 'SATURN'
/// FFRAME = 'IAU_SATURN'
/// BACK = 'TITAN'
/// BFRAME = 'IAU_TITAN'
///
/// END IF
///
/// C
/// C Perform the search. The target body shapes
/// C are modeled as ellipsoids.
/// C
/// CALL GFOCLT ( OCCTYP(I),
/// . FRONT, 'ELLIPSOID', FFRAME,
/// . BACK, 'ELLIPSOID', BFRAME,
/// . 'LT', OBSRVR, STEP,
/// . CNFINE, RESULT )
///
/// C
/// C Display the results.
/// C
/// WRITE (*,*) ' '
///
/// C
/// C Substitute the occultation type and target
/// C body names into the title string:
/// C
/// CALL REPMC ( TEMPLT(I), '#', OCCTYP(I), TITLE )
/// CALL REPMC ( TITLE, '#', BACK, TITLE )
/// CALL REPMC ( TITLE, '#', FRONT, TITLE )
///
/// WRITE (*, '(A)' ) TITLE
///
/// IF ( WNCARD(RESULT) .EQ. 0 ) THEN
///
/// WRITE (*, '(A)' ) ' Result window is empty: '
/// . // 'no occultation was found.'
///
/// ELSE
///
/// WRITE (*, '(A)' ) ' Result window start, '
/// . // 'stop times (TDB):'
///
/// DO K = 1, WNCARD(RESULT)
///
/// C
/// C Fetch the endpoints of the Kth interval
/// C of the result window.
/// C
/// CALL WNFETD ( RESULT, K, START, FINISH )
///
/// LINE = ' # #'
///
/// CALL TIMOUT ( START, TIMFMT, TIMSTR )
///
/// CALL REPMC ( LINE, '#', TIMSTR, LINE )
///
/// CALL TIMOUT ( FINISH, TIMFMT, TIMSTR )
///
/// CALL REPMC ( LINE, '#', TIMSTR, LINE )
///
/// WRITE ( *, '(A)' ) LINE
///
/// END DO
///
/// END IF
///
/// C
/// C We've finished displaying the results of the
/// C current search.
/// C
/// END DO
///
/// C
/// C We've finished displaying the results of the
/// C searches using the current occultation type.
/// C
/// END DO
///
/// WRITE (*,*) ' '
///
/// END
///
///
/// When this program was executed on a Mac/Intel/gfortran/64-bit
/// platform, the output was:
///
///
/// Condition: FULL occultation of SATURN by TITAN
/// Result window is empty: no occultation was found.
///
/// Condition: FULL occultation of TITAN by SATURN
/// Result window start, stop times (TDB):
/// 2008 OCT 27 22:08:01.672540 2008 OCT 28 01:05:03.332576
/// 2008 NOV 12 21:21:59.270691 2008 NOV 13 02:06:05.034713
/// 2008 NOV 28 20:49:02.415745 2008 NOV 29 02:13:58.978004
/// 2008 DEC 14 20:05:09.258916 2008 DEC 15 01:44:53.517960
/// 2008 DEC 30 19:00:56.586894 2008 DEC 31 00:42:43.219311
///
/// Condition: ANNULAR occultation of SATURN by TITAN
/// Result window start, stop times (TDB):
/// 2008 OCT 19 21:29:20.694709 2008 OCT 19 22:53:34.442728
/// 2008 NOV 04 20:15:38.652650 2008 NOV 05 00:18:59.130645
/// 2008 NOV 20 19:38:59.674043 2008 NOV 21 00:35:26.726756
/// 2008 DEC 06 18:58:34.093679 2008 DEC 07 00:16:17.653066
/// 2008 DEC 22 18:02:46.308375 2008 DEC 22 23:26:52.721881
///
/// Condition: ANNULAR occultation of TITAN by SATURN
/// Result window is empty: no occultation was found.
///
/// Condition: PARTIAL occultation of SATURN by TITAN
/// Result window start, stop times (TDB):
/// 2008 OCT 19 20:44:30.377189 2008 OCT 19 21:29:20.694709
/// 2008 OCT 19 22:53:34.442728 2008 OCT 19 23:38:26.219865
/// 2008 NOV 04 19:54:40.368045 2008 NOV 04 20:15:38.652650
/// 2008 NOV 05 00:18:59.130645 2008 NOV 05 00:39:58.607159
/// 2008 NOV 20 19:21:46.714396 2008 NOV 20 19:38:59.674043
/// 2008 NOV 21 00:35:26.726756 2008 NOV 21 00:52:40.606954
/// 2008 DEC 06 18:42:36.120122 2008 DEC 06 18:58:34.093679
/// 2008 DEC 07 00:16:17.653066 2008 DEC 07 00:32:16.331199
/// 2008 DEC 22 17:47:10.796147 2008 DEC 22 18:02:46.308375
/// 2008 DEC 22 23:26:52.721881 2008 DEC 22 23:42:28.860689
///
/// Condition: PARTIAL occultation of TITAN by SATURN
/// Result window start, stop times (TDB):
/// 2008 OCT 27 21:37:17.003993 2008 OCT 27 22:08:01.672540
/// 2008 OCT 28 01:05:03.332576 2008 OCT 28 01:35:49.235670
/// 2008 NOV 12 21:01:47.121213 2008 NOV 12 21:21:59.270691
/// 2008 NOV 13 02:06:05.034713 2008 NOV 13 02:26:18.211753
/// 2008 NOV 28 20:31:28.534248 2008 NOV 28 20:49:02.415745
/// 2008 NOV 29 02:13:58.978004 2008 NOV 29 02:31:33.684575
/// 2008 DEC 14 19:48:27.106157 2008 DEC 14 20:05:09.258916
/// 2008 DEC 15 01:44:53.517960 2008 DEC 15 02:01:36.356012
/// 2008 DEC 30 18:44:23.495003 2008 DEC 30 19:00:56.586894
/// 2008 DEC 31 00:42:43.219311 2008 DEC 31 00:59:17.027816
///
/// Condition: ANY occultation of SATURN by TITAN
/// Result window start, stop times (TDB):
/// 2008 OCT 19 20:44:30.377189 2008 OCT 19 23:38:26.219865
/// 2008 NOV 04 19:54:40.368045 2008 NOV 05 00:39:58.607159
/// 2008 NOV 20 19:21:46.714396 2008 NOV 21 00:52:40.606954
/// 2008 DEC 06 18:42:36.120122 2008 DEC 07 00:32:16.331199
/// 2008 DEC 22 17:47:10.796147 2008 DEC 22 23:42:28.860689
///
/// Condition: ANY occultation of TITAN by SATURN
/// Result window start, stop times (TDB):
/// 2008 OCT 27 21:37:17.003993 2008 OCT 28 01:35:49.235670
/// 2008 NOV 12 21:01:47.121213 2008 NOV 13 02:26:18.211753
/// 2008 NOV 28 20:31:28.534248 2008 NOV 29 02:31:33.684575
/// 2008 DEC 14 19:48:27.106157 2008 DEC 15 02:01:36.356012
/// 2008 DEC 30 18:44:23.495003 2008 DEC 31 00:59:17.027816
///
///
/// 3) Find occultations of the Mars Reconnaissance Orbiter (MRO)
/// by Mars or transits of the MRO spacecraft across Mars
/// as seen from the DSN station DSS-14 over a period of a
/// few hours on FEB 28 2015.
///
/// Use both ellipsoid and DSK shape models for Mars.
///
/// Use light time corrections to model apparent positions of
/// Mars and MRO. Stellar aberration corrections are not
/// specified because they don't affect occultation computations.
///
/// We select a step size of 3 minutes, which means we
/// ignore occultation events lasting less than 3 minutes,
/// if any exist.
///
/// Use the meta-kernel shown below to load the required SPICE
/// kernels.
///
///
/// KPL/MK
///
/// File: gfoclt_ex3.tm
///
/// This meta-kernel is intended to support operation of SPICE
/// example programs. The kernels shown here should not be
/// assumed to contain adequate or correct versions of data
/// required by SPICE-based user applications.
///
/// In order for an application to use this meta-kernel, the
/// kernels referenced here must be present in the user's
/// current working directory.
///
/// The names and contents of the kernels referenced
/// by this meta-kernel are as follows:
///
/// File name Contents
/// --------- --------
/// de410.bsp Planetary ephemeris
/// mar063.bsp Mars satellite ephemeris
/// pck00010.tpc Planet orientation and
/// radii
/// naif0011.tls Leapseconds
/// earthstns_itrf93_050714.bsp DSN station ephemeris
/// earth_latest_high_prec.bpc Earth orientation
/// mro_psp34.bsp MRO ephemeris
/// megr90n000cb_plate.bds Plate model based on
/// MEGDR DEM, resolution
/// 4 pixels/degree.
///
/// \begindata
///
/// KERNELS_TO_LOAD = ( 'de410.bsp',
/// 'mar063.bsp',
/// 'mro_psp34.bsp',
/// 'earthstns_itrf93_050714.bsp',
/// 'earth_latest_high_prec.bpc',
/// 'pck00010.tpc',
/// 'naif0011.tls',
/// 'megr90n000cb_plate.bds'
/// )
/// \begintext
///
/// End of meta-kernel
///
///
/// Example code begins here.
///
///
/// PROGRAM GFOCLT_EX3
/// IMPLICIT NONE
///
/// C
/// C SPICELIB functions
/// C
/// INTEGER WNCARD
///
/// C
/// C Local parameters
/// C
/// CHARACTER*(*) META
/// PARAMETER ( META = 'gfoclt_ex3.tm' )
///
/// CHARACTER*(*) TIMFMT
/// PARAMETER ( TIMFMT =
/// . 'YYYY MON DD HR:MN:SC.###### (TDB)::TDB' )
///
/// INTEGER MAXWIN
/// PARAMETER ( MAXWIN = 2 * 100 )
///
/// INTEGER CORLEN
/// PARAMETER ( CORLEN = 10 )
///
/// INTEGER TIMLEN
/// PARAMETER ( TIMLEN = 40 )
///
/// INTEGER BDNMLN
/// PARAMETER ( BDNMLN = 36 )
///
/// INTEGER FRNMLN
/// PARAMETER ( FRNMLN = 32 )
///
/// INTEGER SHPLEN
/// PARAMETER ( SHPLEN = 100 )
///
/// INTEGER OTYPLN
/// PARAMETER ( OTYPLN = 20 )
///
/// INTEGER LBCELL
/// PARAMETER ( LBCELL = -5 )
///
/// C
/// C Local variables
/// C
/// CHARACTER*(CORLEN) ABCORR
/// CHARACTER*(BDNMLN) BACK
/// CHARACTER*(FRNMLN) BFRAME
/// CHARACTER*(SHPLEN) BSHAPE
/// CHARACTER*(BDNMLN) FRONT
/// CHARACTER*(SHPLEN) FSHAPE
/// CHARACTER*(FRNMLN) FFRAME
/// CHARACTER*(OTYPLN) OCCTYP
/// CHARACTER*(BDNMLN) OBSRVR
/// CHARACTER*(TIMLEN) WIN0
/// CHARACTER*(TIMLEN) WIN1
/// CHARACTER*(TIMLEN) BEGSTR
/// CHARACTER*(TIMLEN) ENDSTR
///
/// DOUBLE PRECISION CNFINE ( LBCELL : 2 )
/// DOUBLE PRECISION ET0
/// DOUBLE PRECISION ET1
/// DOUBLE PRECISION LEFT
/// DOUBLE PRECISION RESULT ( LBCELL : MAXWIN )
/// DOUBLE PRECISION RIGHT
/// DOUBLE PRECISION STEP
///
/// INTEGER I
/// INTEGER J
/// INTEGER K
///
/// C
/// C Saved variables
/// C
/// C The confinement and result windows CNFINE and RESULT are
/// C saved because this practice helps to prevent stack
/// C overflow.
/// C
/// SAVE CNFINE
/// SAVE RESULT
///
/// C
/// C Load kernels.
/// C
/// CALL FURNSH ( META )
///
/// C
/// C Initialize the confinement and result windows.
/// C
/// CALL SSIZED ( MAXWIN, CNFINE )
/// CALL SSIZED ( MAXWIN, RESULT )
///
/// C
/// C Set the observer and aberration correction.
/// C
/// OBSRVR = 'DSS-14'
/// ABCORR = 'CN'
///
/// C
/// C Set the occultation type.
/// C
/// OCCTYP = 'ANY'
///
/// C
/// C Set the TDB time bounds of the confinement
/// C window, which is a single interval in this case.
/// C
/// WIN0 = '2015 FEB 28 07:00:00 TDB'
/// WIN1 = '2015 FEB 28 12:00:00 TDB'
///
/// CALL STR2ET ( WIN0, ET0 )
/// CALL STR2ET ( WIN1, ET1 )
///
/// C
/// C Insert the time bounds into the confinement
/// C window.
/// C
/// CALL WNINSD ( ET0, ET1, CNFINE )
///
/// C
/// C Select a 3-minute step. We'll ignore any occultations
/// C lasting less than 3 minutes. Units are TDB seconds.
/// C
/// STEP = 180.D0
///
/// C
/// C Perform both spacecraft occultation and spacecraft
/// C transit searches.
/// C
/// WRITE (*,*) ' '
///
/// DO I = 1, 2
///
/// IF ( I .EQ. 1 ) THEN
///
/// C
/// C Perform a spacecraft occultation search.
/// C
/// FRONT = 'MARS'
/// FFRAME = 'IAU_MARS'
///
/// BACK = 'MRO'
/// BSHAPE = 'POINT'
/// BFRAME = ' '
///
/// ELSE
///
/// C
/// C Perform a spacecraft transit search.
/// C
/// FRONT = 'MRO'
/// FSHAPE = 'POINT'
/// FFRAME = ' '
///
/// BACK = 'MARS'
/// BFRAME = 'IAU_MARS'
///
/// END IF
///
///
/// DO J = 1, 2
///
/// IF ( J .EQ. 1 ) THEN
///
/// C
/// C Model the planet shape as an ellipsoid.
/// C
/// IF ( I .EQ. 1 ) THEN
/// FSHAPE = 'ELLIPSOID'
/// ELSE
/// BSHAPE = 'ELLIPSOID'
/// END IF
///
/// ELSE
///
/// C
/// C Model the planet shape using DSK data.
/// C
/// IF ( I .EQ. 1 ) THEN
/// FSHAPE = 'DSK/UNPRIORITIZED'
/// ELSE
/// BSHAPE = 'DSK/UNPRIORITIZED'
/// END IF
///
/// END IF
///
/// C
/// C Perform the spacecraft occultation or
/// C transit search.
///
/// IF ( I .EQ. 1 ) THEN
/// CALL TOSTDO ( 'Using shape model '//FSHAPE )
/// CALL TOSTDO ( 'Starting occultation search...' )
/// ELSE
/// CALL TOSTDO ( 'Using shape model '//BSHAPE )
/// CALL TOSTDO ( 'Starting transit search...' )
/// END IF
///
/// CALL GFOCLT ( OCCTYP,
/// . FRONT, FSHAPE, FFRAME,
/// . BACK, BSHAPE, BFRAME,
/// . ABCORR, OBSRVR, STEP,
/// . CNFINE, RESULT )
///
/// IF ( WNCARD(RESULT) .EQ. 0 ) THEN
///
/// WRITE (*,*) 'No event was found.'
///
/// ELSE
///
/// DO K = 1, WNCARD(RESULT)
///
/// C
/// C Fetch and display each event interval.
/// C
/// CALL WNFETD ( RESULT, K, LEFT, RIGHT )
///
/// CALL TIMOUT ( LEFT, TIMFMT, BEGSTR )
/// CALL TIMOUT ( RIGHT, TIMFMT, ENDSTR )
///
/// WRITE (*,*) ' Interval ', K
/// WRITE (*,*) ' Start time: '//BEGSTR
/// WRITE (*,*) ' Stop time: '//ENDSTR
///
/// END DO
///
/// END IF
///
/// WRITE (*,*) ' '
///
/// END DO
///
/// END DO
///
/// END
///
///
/// When this program was executed on a Mac/Intel/gfortran/64-bit
/// platform, the output was:
///
///
/// Using shape model ELLIPSOID
/// Starting occultation search...
/// Interval 1
/// Start time: 2015 FEB 28 07:17:35.379879 (TDB)
/// Stop time: 2015 FEB 28 07:50:37.710284 (TDB)
/// Interval 2
/// Start time: 2015 FEB 28 09:09:46.920140 (TDB)
/// Stop time: 2015 FEB 28 09:42:50.497193 (TDB)
/// Interval 3
/// Start time: 2015 FEB 28 11:01:57.845730 (TDB)
/// Stop time: 2015 FEB 28 11:35:01.489716 (TDB)
///
/// Using shape model DSK/UNPRIORITIZED
/// Starting occultation search...
/// Interval 1
/// Start time: 2015 FEB 28 07:17:38.130608 (TDB)
/// Stop time: 2015 FEB 28 07:50:38.310802 (TDB)
/// Interval 2
/// Start time: 2015 FEB 28 09:09:50.314903 (TDB)
/// Stop time: 2015 FEB 28 09:42:55.369626 (TDB)
/// Interval 3
/// Start time: 2015 FEB 28 11:02:01.756296 (TDB)
/// Stop time: 2015 FEB 28 11:35:08.368384 (TDB)
///
/// Using shape model ELLIPSOID
/// Starting transit search...
/// Interval 1
/// Start time: 2015 FEB 28 08:12:21.112018 (TDB)
/// Stop time: 2015 FEB 28 08:45:48.401746 (TDB)
/// Interval 2
/// Start time: 2015 FEB 28 10:04:32.682324 (TDB)
/// Stop time: 2015 FEB 28 10:37:59.920302 (TDB)
/// Interval 3
/// Start time: 2015 FEB 28 11:56:39.757564 (TDB)
/// Stop time: 2015 FEB 28 12:00:00.000000 (TDB)
///
/// Using shape model DSK/UNPRIORITIZED
/// Starting transit search...
/// Interval 1
/// Start time: 2015 FEB 28 08:12:15.750020 (TDB)
/// Stop time: 2015 FEB 28 08:45:43.406870 (TDB)
/// Interval 2
/// Start time: 2015 FEB 28 10:04:29.031706 (TDB)
/// Stop time: 2015 FEB 28 10:37:55.565509 (TDB)
/// Interval 3
/// Start time: 2015 FEB 28 11:56:34.634642 (TDB)
/// Stop time: 2015 FEB 28 12:00:00.000000 (TDB)
/// ```
///
/// # Restrictions
///
/// ```text
/// 1) The kernel files to be used by GFOCLT must be loaded (normally
/// via the SPICELIB routine FURNSH) before GFOCLT is called.
/// ```
///
/// # Author and Institution
///
/// ```text
/// N.J. Bachman (JPL)
/// J. Diaz del Rio (ODC Space)
/// L.S. Elson (JPL)
/// E.D. Wright (JPL)
/// ```
///
/// # Version
///
/// ```text
/// - SPICELIB Version 2.0.1, 25-NOV-2021 (JDR) (NJB)
///
/// Edited the header to comply with NAIF standard.
///
/// Modified code example #2 output to comply with maximum line
/// length of header comments. Added SAVE statements for CNFINE and
/// RESULT variables in code examples.
///
/// The $Exceptions section now lists the case of the combination
/// of DSK and non-point target shapes.
///
/// Updated description of RESULT argument in $Brief_I/O,
/// $Detailed_Input and $Detailed_Output.
///
/// - SPICELIB Version 2.0.0, 29-FEB-2016 (NJB)
///
/// Header was updated. An example program demonstrating
/// DSK usage was added.
///
/// 04-MAR-2015 (NJB)
///
/// Upgraded to support surfaces represented by DSKs.
///
/// - SPICELIB Version 1.1.0, 31-AUG-2010 (EDW)
///
/// Implemented use of ZZHOLDD to allow user to alter convergence
/// tolerance.
///
/// Removed the STEP > 0 error check. The GFSSTP call includes
/// the check.
///
/// - SPICELIB Version 1.0.0, 07-APR-2009 (NJB) (LSE) (EDW)
/// ```
//$Procedure GFOCLT ( GF, find occultation )