Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

cyl2d.ps 45 KB

You have to be logged in to leave a comment. Sign In
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
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612.0000 792.0000
  4. %%Title: GMT v6.0.0_831abca_2019.06.27 [64-bit] Document from psxy
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Thu Jun 27 12:16:25 2019
  9. %%LanguageLevel: 2
  10. %%DocumentData: Clean7Bit
  11. %%Orientation: Portrait
  12. %%Pages: 1
  13. %%EndComments
  14. %%BeginProlog
  15. 250 dict begin
  16. /! {bind def} bind def
  17. /# {load def}!
  18. /A /setgray #
  19. /B /setdash #
  20. /C /setrgbcolor #
  21. /D /rlineto #
  22. /E {dup stringwidth pop}!
  23. /F /fill #
  24. /G /rmoveto #
  25. /H /sethsbcolor #
  26. /I /setpattern #
  27. /K /setcmykcolor #
  28. /L /lineto #
  29. /M /moveto #
  30. /N /newpath #
  31. /P /closepath #
  32. /R /rotate #
  33. /S /stroke #
  34. /T /translate #
  35. /U /grestore #
  36. /V /gsave #
  37. /W /setlinewidth #
  38. /Y {findfont exch scalefont setfont}!
  39. /Z /show #
  40. /FP {true charpath flattenpath}!
  41. /MU {matrix setmatrix}!
  42. /MS {/SMat matrix currentmatrix def}!
  43. /MR {SMat setmatrix}!
  44. /edef {exch def}!
  45. /FS {/fc edef /fs {V fc F U} def}!
  46. /FQ {/fs {} def}!
  47. /O0 {/os {N} def}!
  48. /O1 {/os {P S} def}!
  49. /FO {fs os}!
  50. /Sa {M MS dup 0 exch G 0.726542528 mul -72 R dup 0 D 4 {72 R dup 0 D -144 R dup 0 D} repeat pop MR FO}!
  51. /Sb {M dup 0 D exch 0 exch D neg 0 D FO}!
  52. /SB {MS T /BoxR edef /BoxW edef /BoxH edef BoxR 0 M
  53. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  54. /Sc {N 3 -1 roll 0 360 arc FO}!
  55. /Sd {M 4 {dup} repeat 0 G neg dup dup D exch D D FO}!
  56. /Se {N MS T R scale 0 0 1 0 360 arc MR FO}!
  57. /Sg {M MS 22.5 R dup 0 exch G -22.5 R 0.765366865 mul dup 0 D 6 {-45 R dup 0 D} repeat pop MR FO}!
  58. /Sh {M MS dup 0 G -120 R dup 0 D 4 {-60 R dup 0 D} repeat pop MR FO}!
  59. /Si {M MS dup neg 0 exch G 60 R 1.732050808 mul dup 0 D 120 R 0 D MR FO}!
  60. /Sj {M MS R dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D MR FO}!
  61. /Sn {M MS dup 0 exch G -36 R 1.175570505 mul dup 0 D 3 {-72 R dup 0 D} repeat pop MR FO}!
  62. /Sp {N 3 -1 roll 0 360 arc fs N}!
  63. /SP {M {D} repeat FO}!
  64. /Sr {M dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D FO}!
  65. /SR {MS T /BoxR edef /BoxW edef /BoxH edef BoxR BoxW -2 div BoxH -2 div T BoxR 0 M
  66. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  67. /Ss {M 1.414213562 mul dup dup dup -2 div dup G 0 D 0 exch D neg 0 D FO}!
  68. /St {M MS dup 0 exch G -60 R 1.732050808 mul dup 0 D -120 R 0 D MR FO}!
  69. /SV {0 exch M 0 D D D D D 0 D FO}!
  70. /Sv {0 0 M D D 0 D D D D D 0 D D FO}!
  71. /Sw {2 copy M 5 2 roll arc FO}!
  72. /Sx {M 1.414213562 mul 5 {dup} repeat -2 div dup G D neg 0 G neg D S}!
  73. /Sy {M dup 0 exch G dup -2 mul dup 0 exch D S}!
  74. /S+ {M dup 0 G dup -2 mul dup 0 D exch dup G 0 exch D S}!
  75. /S- {M dup 0 G dup -2 mul dup 0 D S}!
  76. /sw {stringwidth pop}!
  77. /sh {V MU 0 0 M FP pathbbox N 4 1 roll pop pop pop U}!
  78. /sd {V MU 0 0 M FP pathbbox N pop pop exch pop U}!
  79. /sH {V MU 0 0 M FP pathbbox N exch pop exch sub exch pop U}!
  80. /sb {E exch sh}!
  81. /bl {}!
  82. /bc {E -2 div 0 G}!
  83. /br {E neg 0 G}!
  84. /ml {dup 0 exch sh -2 div G}!
  85. /mc {dup E -2 div exch sh -2 div G}!
  86. /mr {dup E neg exch sh -2 div G}!
  87. /tl {dup 0 exch sh neg G}!
  88. /tc {dup E -2 div exch sh neg G}!
  89. /tr {dup E neg exch sh neg G}!
  90. /mx {2 copy lt {exch} if pop}!
  91. /PSL_xorig 0 def /PSL_yorig 0 def
  92. /TM {2 copy T PSL_yorig add /PSL_yorig edef PSL_xorig add /PSL_xorig edef}!
  93. /PSL_reencode {findfont dup length dict begin
  94. {1 index /FID ne {def}{pop pop} ifelse} forall
  95. exch /Encoding edef currentdict end definefont pop
  96. }!
  97. /PSL_eps_begin {
  98. /PSL_eps_state save def
  99. /PSL_dict_count countdictstack def
  100. /PSL_op_count count 1 sub def
  101. userdict begin
  102. /showpage {} def
  103. 0 setgray 0 setlinecap 1 setlinewidth
  104. 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath
  105. /languagelevel where
  106. {pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if
  107. }!
  108. /PSL_eps_end {
  109. count PSL_op_count sub {pop} repeat
  110. countdictstack PSL_dict_count sub {end} repeat
  111. PSL_eps_state restore
  112. }!
  113. /PSL_transp {
  114. /.setopacityalpha where {pop .setblendmode .setopacityalpha}{
  115. /pdfmark where {pop [ /BM exch /CA exch dup /ca exch /SetTransparency pdfmark}
  116. {pop pop} ifelse} ifelse
  117. }!
  118. /Standard+_Encoding [
  119. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  120. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  121. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  122. /.notdef /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
  123. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  124. /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
  125. /zero /one /two /three /four /five /six /seven
  126. /eight /nine /colon /semicolon /less /equal /greater /question
  127. /at /A /B /C /D /E /F /G
  128. /H /I /J /K /L /M /N /O
  129. /P /Q /R /S /T /U /V /W
  130. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  131. /quoteleft /a /b /c /d /e /f /g
  132. /h /i /j /k /l /m /n /o
  133. /p /q /r /s /t /u /v /w
  134. /x /y /z /braceleft /bar /braceright /asciitilde /florin
  135. /Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
  136. /Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
  137. /divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
  138. /onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
  139. /.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
  140. /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
  141. /Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
  142. /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
  143. /Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
  144. /dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
  145. /emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
  146. /Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
  147. /acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
  148. /egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
  149. /oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
  150. /udieresis /oslash /oe /germandbls /ugrave /Aring /aring /ydieresis
  151. ] def
  152. /PSL_font_encode 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 array astore def
  153. /F0 {/Helvetica Y}!
  154. /F1 {/Helvetica-Bold Y}!
  155. /F2 {/Helvetica-Oblique Y}!
  156. /F3 {/Helvetica-BoldOblique Y}!
  157. /F4 {/Times-Roman Y}!
  158. /F5 {/Times-Bold Y}!
  159. /F6 {/Times-Italic Y}!
  160. /F7 {/Times-BoldItalic Y}!
  161. /F8 {/Courier Y}!
  162. /F9 {/Courier-Bold Y}!
  163. /F10 {/Courier-Oblique Y}!
  164. /F11 {/Courier-BoldOblique Y}!
  165. /F12 {/Symbol Y}!
  166. /F13 {/AvantGarde-Book Y}!
  167. /F14 {/AvantGarde-BookOblique Y}!
  168. /F15 {/AvantGarde-Demi Y}!
  169. /F16 {/AvantGarde-DemiOblique Y}!
  170. /F17 {/Bookman-Demi Y}!
  171. /F18 {/Bookman-DemiItalic Y}!
  172. /F19 {/Bookman-Light Y}!
  173. /F20 {/Bookman-LightItalic Y}!
  174. /F21 {/Helvetica-Narrow Y}!
  175. /F22 {/Helvetica-Narrow-Bold Y}!
  176. /F23 {/Helvetica-Narrow-Oblique Y}!
  177. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  178. /F25 {/NewCenturySchlbk-Roman Y}!
  179. /F26 {/NewCenturySchlbk-Italic Y}!
  180. /F27 {/NewCenturySchlbk-Bold Y}!
  181. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  182. /F29 {/Palatino-Roman Y}!
  183. /F30 {/Palatino-Italic Y}!
  184. /F31 {/Palatino-Bold Y}!
  185. /F32 {/Palatino-BoldItalic Y}!
  186. /F33 {/ZapfChancery-MediumItalic Y}!
  187. /F34 {/ZapfDingbats Y}!
  188. /F35 {/Ryumin-Light-EUC-H Y}!
  189. /F36 {/Ryumin-Light-EUC-V Y}!
  190. /F37 {/GothicBBB-Medium-EUC-H Y}!
  191. /F38 {/GothicBBB-Medium-EUC-V Y}!
  192. /PSL_pathtextdict 26 dict def
  193. /PSL_pathtext
  194. {PSL_pathtextdict begin
  195. /ydepth exch def
  196. /textheight exch def
  197. /just exch def
  198. /offset exch def
  199. /str exch def
  200. /pathdist 0 def
  201. /setdist offset def
  202. /charcount 0 def
  203. /justy just 4 idiv textheight mul 2 div neg ydepth sub def
  204. V flattenpath
  205. {movetoproc} {linetoproc}
  206. {curvetoproc} {closepathproc}
  207. pathforall
  208. U N
  209. end
  210. } def
  211. PSL_pathtextdict begin
  212. /movetoproc
  213. { /newy exch def /newx exch def
  214. /firstx newx def /firsty newy def
  215. /ovr 0 def
  216. newx newy transform
  217. /cpy exch def /cpx exch def
  218. } def
  219. /linetoproc
  220. { /oldx newx def /oldy newy def
  221. /newy exch def /newx exch def
  222. /dx newx oldx sub def
  223. /dy newy oldy sub def
  224. /dist dx dup mul dy dup mul add sqrt def
  225. dist 0 ne
  226. { /dsx dx dist div ovr mul def
  227. /dsy dy dist div ovr mul def
  228. oldx dsx add oldy dsy add transform
  229. /cpy exch def /cpx exch def
  230. /pathdist pathdist dist add def
  231. {setdist pathdist le
  232. {charcount str length lt
  233. {setchar} {exit} ifelse}
  234. { /ovr setdist pathdist sub def
  235. exit}
  236. ifelse
  237. } loop
  238. } if
  239. } def
  240. /curvetoproc
  241. { (ERROR: No curveto's after flattenpath!)
  242. print
  243. } def
  244. /closepathproc
  245. {firstx firsty linetoproc
  246. firstx firsty movetoproc
  247. } def
  248. /setchar
  249. { /char str charcount 1 getinterval def
  250. /charcount charcount 1 add def
  251. /charwidth char stringwidth pop def
  252. V cpx cpy itransform T
  253. dy dx atan R
  254. 0 justy M
  255. char show
  256. 0 justy neg G
  257. currentpoint transform
  258. /cpy exch def /cpx exch def
  259. U /setdist setdist charwidth add def
  260. } def
  261. end
  262. /PSL_set_label_heights
  263. {
  264. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  265. /PSL_heights PSL_n_labels array def
  266. 0 1 PSL_n_labels_minus_1
  267. { /psl_k exch def
  268. /psl_label PSL_label_str psl_k get def
  269. PSL_label_font psl_k get cvx exec
  270. psl_label sH /PSL_height edef
  271. PSL_heights psl_k PSL_height put
  272. } for
  273. } def
  274. /PSL_curved_path_labels
  275. { /psl_bits exch def
  276. /PSL_placetext psl_bits 2 and 2 eq def
  277. /PSL_clippath psl_bits 4 and 4 eq def
  278. /PSL_strokeline false def
  279. /PSL_fillbox psl_bits 128 and 128 eq def
  280. /PSL_drawbox psl_bits 256 and 256 eq def
  281. /PSL_n_paths1 PSL_n_paths 1 sub def
  282. /PSL_usebox PSL_fillbox PSL_drawbox or def
  283. PSL_clippath {clipsave N clippath} if
  284. /psl_k 0 def
  285. /psl_p 0 def
  286. 0 1 PSL_n_paths1
  287. { /psl_kk exch def
  288. /PSL_n PSL_path_n psl_kk get def
  289. /PSL_m PSL_label_n psl_kk get def
  290. /PSL_x PSL_path_x psl_k PSL_n getinterval def
  291. /PSL_y PSL_path_y psl_k PSL_n getinterval def
  292. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
  293. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
  294. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
  295. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
  296. PSL_curved_path_label
  297. /psl_k psl_k PSL_n add def
  298. /psl_p psl_p PSL_m add def
  299. } for
  300. PSL_clippath {PSL_eoclip} if N
  301. } def
  302. /PSL_curved_path_label
  303. {
  304. /PSL_n1 PSL_n 1 sub def
  305. /PSL_m1 PSL_m 1 sub def
  306. PSL_CT_calcstringwidth
  307. PSL_CT_calclinedist
  308. PSL_CT_excludelabels
  309. PSL_CT_addcutpoints
  310. /PSL_nn1 PSL_nn 1 sub def
  311. /n 0 def
  312. /k 0 def
  313. /j 0 def
  314. /PSL_seg 0 def
  315. /PSL_xp PSL_nn array def
  316. /PSL_yp PSL_nn array def
  317. PSL_xp 0 PSL_xx 0 get put
  318. PSL_yp 0 PSL_yy 0 get put
  319. 1 1 PSL_nn1
  320. { /i exch def
  321. /node_type PSL_kind i get def
  322. /j j 1 add def
  323. PSL_xp j PSL_xx i get put
  324. PSL_yp j PSL_yy i get put
  325. node_type 1 eq
  326. {n 0 eq
  327. {PSL_CT_drawline}
  328. { PSL_CT_reversepath
  329. PSL_CT_textline} ifelse
  330. /j 0 def
  331. PSL_xp j PSL_xx i get put
  332. PSL_yp j PSL_yy i get put
  333. } if
  334. } for
  335. n 0 eq {PSL_CT_drawline} if
  336. } def
  337. /PSL_CT_textline
  338. { PSL_fnt k get cvx exec
  339. /PSL_height PSL_heights k get def
  340. PSL_placetext {PSL_CT_placelabel} if
  341. PSL_clippath {PSL_CT_clippath} if
  342. /n 0 def /k k 1 add def
  343. } def
  344. /PSL_CT_calcstringwidth
  345. { /PSL_width_tmp PSL_m array def
  346. 0 1 PSL_m1
  347. { /i exch def
  348. PSL_fnt_tmp i get cvx exec
  349. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  350. } for
  351. } def
  352. /PSL_CT_calclinedist
  353. { /PSL_newx PSL_x 0 get def
  354. /PSL_newy PSL_y 0 get def
  355. /dist 0.0 def
  356. /PSL_dist PSL_n array def
  357. PSL_dist 0 0.0 put
  358. 1 1 PSL_n1
  359. { /i exch def
  360. /PSL_oldx PSL_newx def
  361. /PSL_oldy PSL_newy def
  362. /PSL_newx PSL_x i get def
  363. /PSL_newy PSL_y i get def
  364. /dx PSL_newx PSL_oldx sub def
  365. /dy PSL_newy PSL_oldy sub def
  366. /dist dist dx dx mul dy dy mul add sqrt add def
  367. PSL_dist i dist put
  368. } for
  369. } def
  370. /PSL_CT_excludelabels
  371. { /k 0 def
  372. /PSL_width PSL_m array def
  373. /PSL_angle PSL_m array def
  374. /PSL_node PSL_m array def
  375. /PSL_str PSL_m array def
  376. /PSL_fnt PSL_m array def
  377. /lastdist PSL_dist PSL_n1 get def
  378. 0 1 PSL_m1
  379. { /i exch def
  380. /dist PSL_dist PSL_node_tmp i get get def
  381. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  382. /L_dist dist halfwidth sub def
  383. /R_dist dist halfwidth add def
  384. L_dist 0 gt R_dist lastdist lt and
  385. {
  386. PSL_width k PSL_width_tmp i get put
  387. PSL_node k PSL_node_tmp i get put
  388. PSL_angle k PSL_angle_tmp i get put
  389. PSL_str k PSL_str_tmp i get put
  390. PSL_fnt k PSL_fnt_tmp i get put
  391. /k k 1 add def
  392. } if
  393. } for
  394. /PSL_m k def
  395. /PSL_m1 PSL_m 1 sub def
  396. } def
  397. /PSL_CT_addcutpoints
  398. { /k 0 def
  399. /PSL_nc PSL_m 2 mul 1 add def
  400. /PSL_cuts PSL_nc array def
  401. /PSL_nc1 PSL_nc 1 sub def
  402. 0 1 PSL_m1
  403. { /i exch def
  404. /dist PSL_dist PSL_node i get get def
  405. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  406. PSL_cuts k dist halfwidth sub put
  407. /k k 1 add def
  408. PSL_cuts k dist halfwidth add put
  409. /k k 1 add def
  410. } for
  411. PSL_cuts k 100000.0 put
  412. /PSL_nn PSL_n PSL_m 2 mul add def
  413. /PSL_xx PSL_nn array def
  414. /PSL_yy PSL_nn array def
  415. /PSL_kind PSL_nn array def
  416. /j 0 def
  417. /k 0 def
  418. /dist 0.0 def
  419. 0 1 PSL_n1
  420. { /i exch def
  421. /last_dist dist def
  422. /dist PSL_dist i get def
  423. k 1 PSL_nc1
  424. { /kk exch def
  425. /this_cut PSL_cuts kk get def
  426. dist this_cut gt
  427. { /ds dist last_dist sub def
  428. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  429. /i1 i 0 eq {0} {i 1 sub} ifelse def
  430. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  431. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  432. PSL_kind j 1 put
  433. /j j 1 add def
  434. /k k 1 add def
  435. } if
  436. } for
  437. dist PSL_cuts k get le
  438. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  439. PSL_kind j 0 put
  440. /j j 1 add def
  441. } if
  442. } for
  443. } def
  444. /PSL_CT_reversepath
  445. {PSL_xp j get PSL_xp 0 get lt
  446. {0 1 j 2 idiv
  447. { /left exch def
  448. /right j left sub def
  449. /tmp PSL_xp left get def
  450. PSL_xp left PSL_xp right get put
  451. PSL_xp right tmp put
  452. /tmp PSL_yp left get def
  453. PSL_yp left PSL_yp right get put
  454. PSL_yp right tmp put
  455. } for
  456. } if
  457. } def
  458. /PSL_CT_placelabel
  459. {
  460. /PSL_just PSL_label_justify k get def
  461. /PSL_height PSL_heights k get def
  462. /psl_label PSL_str k get def
  463. /psl_depth psl_label sd def
  464. PSL_usebox
  465. {PSL_CT_clippath
  466. PSL_fillbox
  467. {V PSL_setboxrgb fill U} if
  468. PSL_drawbox
  469. {V PSL_setboxpen S U} if N
  470. } if
  471. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  472. } def
  473. /PSL_CT_clippath
  474. {
  475. /H PSL_height 2 div PSL_gap_y add def
  476. /xoff j 1 add array def
  477. /yoff j 1 add array def
  478. /angle 0 def
  479. 0 1 j {
  480. /ii exch def
  481. /x PSL_xp ii get def
  482. /y PSL_yp ii get def
  483. ii 0 eq {
  484. /x1 PSL_xp 1 get def
  485. /y1 PSL_yp 1 get def
  486. /dx x1 x sub def
  487. /dy y1 y sub def
  488. }
  489. { /i1 ii 1 sub def
  490. /x1 PSL_xp i1 get def
  491. /y1 PSL_yp i1 get def
  492. /dx x x1 sub def
  493. /dy y y1 sub def
  494. } ifelse
  495. dx 0.0 eq dy 0.0 eq and not
  496. { /angle dy dx atan 90 add def} if
  497. /sina angle sin def
  498. /cosa angle cos def
  499. xoff ii H cosa mul put
  500. yoff ii H sina mul put
  501. } for
  502. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  503. 1 1 j {
  504. /ii exch def
  505. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  506. } for
  507. j -1 0 {
  508. /ii exch def
  509. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  510. } for P
  511. } def
  512. /PSL_CT_drawline
  513. {
  514. /str 20 string def
  515. PSL_strokeline
  516. {PSL_CT_placeline S} if
  517. /PSL_seg PSL_seg 1 add def
  518. /n 1 def
  519. } def
  520. /PSL_CT_placeline
  521. {PSL_xp 0 get PSL_yp 0 get M
  522. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  523. } def
  524. /PSL_draw_path_lines
  525. {
  526. /PSL_n_paths1 PSL_n_paths 1 sub def
  527. V
  528. /psl_start 0 def
  529. 0 1 PSL_n_paths1
  530. { /psl_k exch def
  531. /PSL_n PSL_path_n psl_k get def
  532. /PSL_n1 PSL_n 1 sub def
  533. PSL_path_pen psl_k get cvx exec
  534. N
  535. PSL_path_x psl_start get PSL_path_y psl_start get M
  536. 1 1 PSL_n1
  537. { /psl_i exch def
  538. /psl_kk psl_i psl_start add def
  539. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  540. } for
  541. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  542. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  543. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  544. S
  545. /psl_start psl_start PSL_n add def
  546. } for
  547. U
  548. } def
  549. /PSL_straight_path_labels
  550. {
  551. /psl_bits exch def
  552. /PSL_placetext psl_bits 2 and 2 eq def
  553. /PSL_rounded psl_bits 32 and 32 eq def
  554. /PSL_fillbox psl_bits 128 and 128 eq def
  555. /PSL_drawbox psl_bits 256 and 256 eq def
  556. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  557. /PSL_usebox PSL_fillbox PSL_drawbox or def
  558. 0 1 PSL_n_labels_minus_1
  559. { /psl_k exch def
  560. PSL_ST_prepare_text
  561. PSL_usebox
  562. { PSL_rounded
  563. {PSL_ST_textbox_round}
  564. {PSL_ST_textbox_rect}
  565. ifelse
  566. PSL_fillbox {V PSL_setboxrgb fill U} if
  567. PSL_drawbox {V PSL_setboxpen S U} if
  568. N
  569. } if
  570. PSL_placetext {PSL_ST_place_label} if
  571. } for
  572. } def
  573. /PSL_straight_path_clip
  574. {
  575. /psl_bits exch def
  576. /PSL_rounded psl_bits 32 and 32 eq def
  577. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  578. N clipsave clippath
  579. 0 1 PSL_n_labels_minus_1
  580. { /psl_k exch def
  581. PSL_ST_prepare_text
  582. PSL_rounded
  583. {PSL_ST_textbox_round}
  584. {PSL_ST_textbox_rect}
  585. ifelse
  586. } for
  587. PSL_eoclip N
  588. } def
  589. /PSL_ST_prepare_text
  590. {
  591. /psl_xp PSL_txt_x psl_k get def
  592. /psl_yp PSL_txt_y psl_k get def
  593. /psl_label PSL_label_str psl_k get def
  594. PSL_label_font psl_k get cvx exec
  595. /PSL_height PSL_heights psl_k get def
  596. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  597. /PSL_just PSL_label_justify psl_k get def
  598. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  599. /PSL_justy PSL_just 4 idiv 2 div neg def
  600. /psl_SW psl_label stringwidth pop def
  601. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  602. /psl_x0 psl_SW PSL_justx mul def
  603. /psl_y0 PSL_justy PSL_height mul def
  604. /psl_angle PSL_label_angle psl_k get def
  605. } def
  606. /PSL_ST_textbox_rect
  607. {
  608. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  609. PSL_gap_x neg PSL_gap_y neg M
  610. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  611. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  612. } def
  613. /PSL_ST_textbox_round
  614. {
  615. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  616. /psl_xd PSL_gap_x psl_BoxR sub def
  617. /psl_yd PSL_gap_y psl_BoxR sub def
  618. /psl_xL PSL_gap_x neg def
  619. /psl_yB PSL_gap_y neg def
  620. /psl_yT psl_boxH psl_yB add def
  621. /psl_H2 PSL_height psl_yd 2 mul add def
  622. /psl_W2 psl_SW psl_xd 2 mul add def
  623. /psl_xR psl_xL psl_boxW add def
  624. /psl_x0 psl_SW PSL_justx mul def
  625. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  626. psl_xL psl_yd M
  627. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  628. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  629. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  630. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  631. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  632. } def
  633. /PSL_ST_place_label
  634. {
  635. V psl_xp psl_yp T psl_angle R
  636. psl_SW PSL_justx mul psl_y0 M
  637. psl_label dup sd neg 0 exch G show
  638. U
  639. } def
  640. /PSL_nclip 0 def
  641. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  642. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  643. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  644. %%EndProlog
  645. %%BeginSetup
  646. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  647. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  648. %%EndSetup
  649. %%Page: 1 1
  650. %%BeginPageSetup
  651. V 0.06 0.06 scale
  652. %%EndPageSetup
  653. /PSL_page_xsize 10200 def
  654. /PSL_page_ysize 13200 def
  655. /PSL_completion {} def
  656. /PSL_movie_completion {} def
  657. %PSL_End_Header
  658. gsave
  659. 0 A
  660. FQ
  661. O0
  662. 1800 1200 TM
  663. % PostScript produced by:
  664. %@GMT: gmt psxy -R-25/25/0/5 -JX6i/-1.75i cyl.txt -Ggray -W1p -P -X1.5i -K '-Bxaf+u km' -Byaf+lkm -BWSne
  665. %@PROJ: xy -25.00000000 25.00000000 0.00000000 5.00000000 -25.000 25.000 5.000 -0.000 +xy
  666. %GMTBoundingBox: 108 72 432 126
  667. %%BeginObject PSL_Layer_1
  668. 0 setlinecap
  669. 0 setlinejoin
  670. 3.32551 setmiterlimit
  671. 25 W
  672. 2 setlinecap
  673. N 0 2100 M 0 -2100 D S
  674. /PSL_A0_y 83 def
  675. /PSL_A1_y 0 def
  676. 8 W
  677. N 0 2100 M -83 0 D S
  678. N 0 1260 M -83 0 D S
  679. N 0 420 M -83 0 D S
  680. /PSL_AH0 0
  681. /MM {neg exch M} def
  682. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  683. 200 F0
  684. (0) sw mx
  685. (2) sw mx
  686. (4) sw mx
  687. def
  688. /PSL_A0_y PSL_A0_y 83 add def
  689. 2100 PSL_A0_y MM
  690. (0) mr Z
  691. 1260 PSL_A0_y MM
  692. (2) mr Z
  693. 420 PSL_A0_y MM
  694. (4) mr Z
  695. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  696. N 0 1680 M -42 0 D S
  697. N 0 840 M -42 0 D S
  698. N 0 0 M -42 0 D S
  699. /PSL_LH 267 F0
  700. (M) sh def
  701. /PSL_L_y PSL_A0_y PSL_A1_y mx 133 add def
  702. 1050 PSL_L_y MM
  703. V 90 R (km) bc Z U
  704. 7200 0 T
  705. 25 W
  706. N 0 2100 M 0 -2100 D S
  707. /PSL_A0_y 83 def
  708. /PSL_A1_y 0 def
  709. 8 W
  710. N 0 2100 M 83 0 D S
  711. N 0 1260 M 83 0 D S
  712. N 0 420 M 83 0 D S
  713. N 0 1680 M 42 0 D S
  714. N 0 840 M 42 0 D S
  715. N 0 0 M 42 0 D S
  716. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  717. -7200 0 T
  718. 25 W
  719. N 0 0 M 7200 0 D S
  720. /PSL_A0_y 83 def
  721. /PSL_A1_y 0 def
  722. 8 W
  723. N 720 0 M 0 -83 D S
  724. N 2160 0 M 0 -83 D S
  725. N 3600 0 M 0 -83 D S
  726. N 5040 0 M 0 -83 D S
  727. N 6480 0 M 0 -83 D S
  728. /PSL_AH0 0
  729. /MM {neg M} def
  730. 200 F0
  731. (”20 km) sh mx
  732. (”10 km) sh mx
  733. (0 km) sh mx
  734. (10 km) sh mx
  735. (20 km) sh mx
  736. def
  737. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  738. 720 PSL_A0_y MM
  739. (”20 km) bc Z
  740. 2160 PSL_A0_y MM
  741. (”10 km) bc Z
  742. 3600 PSL_A0_y MM
  743. (0 km) bc Z
  744. 5040 PSL_A0_y MM
  745. (10 km) bc Z
  746. 6480 PSL_A0_y MM
  747. (20 km) bc Z
  748. N 144 0 M 0 -42 D S
  749. N 432 0 M 0 -42 D S
  750. N 1008 0 M 0 -42 D S
  751. N 1296 0 M 0 -42 D S
  752. N 1584 0 M 0 -42 D S
  753. N 1872 0 M 0 -42 D S
  754. N 2448 0 M 0 -42 D S
  755. N 2736 0 M 0 -42 D S
  756. N 3024 0 M 0 -42 D S
  757. N 3312 0 M 0 -42 D S
  758. N 3888 0 M 0 -42 D S
  759. N 4176 0 M 0 -42 D S
  760. N 4464 0 M 0 -42 D S
  761. N 4752 0 M 0 -42 D S
  762. N 5328 0 M 0 -42 D S
  763. N 5616 0 M 0 -42 D S
  764. N 5904 0 M 0 -42 D S
  765. N 6192 0 M 0 -42 D S
  766. N 6768 0 M 0 -42 D S
  767. N 7056 0 M 0 -42 D S
  768. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  769. 0 2100 T
  770. 25 W
  771. N 0 0 M 7200 0 D S
  772. /PSL_A0_y 83 def
  773. /PSL_A1_y 0 def
  774. 8 W
  775. N 720 0 M 0 83 D S
  776. N 2160 0 M 0 83 D S
  777. N 3600 0 M 0 83 D S
  778. N 5040 0 M 0 83 D S
  779. N 6480 0 M 0 83 D S
  780. N 144 0 M 0 42 D S
  781. N 432 0 M 0 42 D S
  782. N 1008 0 M 0 42 D S
  783. N 1296 0 M 0 42 D S
  784. N 1584 0 M 0 42 D S
  785. N 1872 0 M 0 42 D S
  786. N 2448 0 M 0 42 D S
  787. N 2736 0 M 0 42 D S
  788. N 3024 0 M 0 42 D S
  789. N 3312 0 M 0 42 D S
  790. N 3888 0 M 0 42 D S
  791. N 4176 0 M 0 42 D S
  792. N 4464 0 M 0 42 D S
  793. N 4752 0 M 0 42 D S
  794. N 5328 0 M 0 42 D S
  795. N 5616 0 M 0 42 D S
  796. N 5904 0 M 0 42 D S
  797. N 6192 0 M 0 42 D S
  798. N 6768 0 M 0 42 D S
  799. N 7056 0 M 0 42 D S
  800. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  801. 0 -2100 T
  802. 0 setlinecap
  803. 17 W
  804. clipsave
  805. 0 0 M
  806. 7200 0 D
  807. 0 2100 D
  808. -7200 0 D
  809. P
  810. PSL_clip N
  811. {0.745 A} FS
  812. O1
  813. /FO {P}!
  814. 3744 840 M
  815. -2 -73 D
  816. -7 -71 D
  817. -4 -33 D
  818. -13 -64 D
  819. -11 -40 D
  820. -18 -50 D
  821. -21 -40 D
  822. -12 -16 D
  823. -9 -10 D
  824. -3 -2 D
  825. -4 -5 D
  826. -8 -5 D
  827. -7 -5 D
  828. -5 -2 D
  829. -5 -2 D
  830. -2 0 D
  831. -3 -1 D
  832. -2 0 D
  833. -3 -1 D
  834. -2 0 D
  835. -3 0 D
  836. -3 0 D
  837. -17 4 D
  838. -17 10 D
  839. -5 4 D
  840. -2 3 D
  841. -8 7 D
  842. -9 11 D
  843. -13 21 D
  844. -15 29 D
  845. -15 39 D
  846. -18 69 D
  847. -12 66 D
  848. -7 70 D
  849. -3 80 D
  850. 2 80 D
  851. 7 71 D
  852. 4 33 D
  853. 13 64 D
  854. 11 40 D
  855. 18 50 D
  856. 21 40 D
  857. 12 16 D
  858. 9 10 D
  859. 3 2 D
  860. 4 5 D
  861. 17 11 D
  862. 18 5 D
  863. 15 -1 D
  864. 15 -5 D
  865. 15 -10 D
  866. 4 -5 D
  867. 8 -7 D
  868. 9 -11 D
  869. 13 -21 D
  870. 15 -29 D
  871. 15 -39 D
  872. 18 -69 D
  873. 12 -66 D
  874. 7 -70 D
  875. 3 -80 D
  876. P
  877. FO
  878. /FO {fs os}!
  879. FO
  880. PSL_cliprestore
  881. %%EndObject
  882. 0 A
  883. FQ
  884. O0
  885. 0 0 TM
  886. % PostScript produced by:
  887. %@GMT: gmt pstext -R-25/25/0/5 -JX6i/-1.75i -O -K -F+f14p+cTR+jTR -Dj0.1i
  888. %@PROJ: xy -25.00000000 25.00000000 0.00000000 5.00000000 -25.000 25.000 5.000 -0.000 +xy
  889. %%BeginObject PSL_Layer_2
  890. 0 setlinecap
  891. 0 setlinejoin
  892. 3.32551 setmiterlimit
  893. clipsave
  894. 0 0 M
  895. 7200 0 D
  896. 0 2100 D
  897. -7200 0 D
  898. P
  899. PSL_clip N
  900. 7080 1980 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  901. 233 F0
  902. (CYLINDER) tr Z
  903. PSL_cliprestore
  904. %%EndObject
  905. 0 A
  906. FQ
  907. O0
  908. 0 2280 TM
  909. % PostScript produced by:
  910. %@GMT: gmt psxy -R-25/25/0/15 -JX6i/2.25i -O -K -Y1.9i g_truth.txt -Sc0.1c -Gred -Bxaf -Byaf+lmGal -BWsne
  911. %@PROJ: xy -25.00000000 25.00000000 0.00000000 15.00000000 -25.000 25.000 0.000 15.000 +xy
  912. %%BeginObject PSL_Layer_3
  913. 0 setlinecap
  914. 0 setlinejoin
  915. 3.32551 setmiterlimit
  916. 25 W
  917. 2 setlinecap
  918. N 0 2700 M 0 -2700 D S
  919. /PSL_A0_y 83 def
  920. /PSL_A1_y 0 def
  921. 8 W
  922. N 0 0 M -83 0 D S
  923. N 0 900 M -83 0 D S
  924. N 0 1800 M -83 0 D S
  925. N 0 2700 M -83 0 D S
  926. /PSL_AH0 0
  927. /MM {neg exch M} def
  928. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  929. 200 F0
  930. (0) sw mx
  931. (5) sw mx
  932. (10) sw mx
  933. (15) sw mx
  934. def
  935. /PSL_A0_y PSL_A0_y 83 add def
  936. 0 PSL_A0_y MM
  937. (0) mr Z
  938. 900 PSL_A0_y MM
  939. (5) mr Z
  940. 1800 PSL_A0_y MM
  941. (10) mr Z
  942. 2700 PSL_A0_y MM
  943. (15) mr Z
  944. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  945. N 0 180 M -42 0 D S
  946. N 0 360 M -42 0 D S
  947. N 0 540 M -42 0 D S
  948. N 0 720 M -42 0 D S
  949. N 0 1080 M -42 0 D S
  950. N 0 1260 M -42 0 D S
  951. N 0 1440 M -42 0 D S
  952. N 0 1620 M -42 0 D S
  953. N 0 1980 M -42 0 D S
  954. N 0 2160 M -42 0 D S
  955. N 0 2340 M -42 0 D S
  956. N 0 2520 M -42 0 D S
  957. /PSL_LH 267 F0
  958. (M) sh def
  959. /PSL_L_y PSL_A0_y PSL_A1_y mx 133 add def
  960. 1350 PSL_L_y MM
  961. V 90 R (mGal) bc Z U
  962. 7200 0 T
  963. 25 W
  964. N 0 2700 M 0 -2700 D S
  965. /PSL_A0_y 83 def
  966. /PSL_A1_y 0 def
  967. 8 W
  968. N 0 0 M 83 0 D S
  969. N 0 900 M 83 0 D S
  970. N 0 1800 M 83 0 D S
  971. N 0 2700 M 83 0 D S
  972. N 0 180 M 42 0 D S
  973. N 0 360 M 42 0 D S
  974. N 0 540 M 42 0 D S
  975. N 0 720 M 42 0 D S
  976. N 0 1080 M 42 0 D S
  977. N 0 1260 M 42 0 D S
  978. N 0 1440 M 42 0 D S
  979. N 0 1620 M 42 0 D S
  980. N 0 1980 M 42 0 D S
  981. N 0 2160 M 42 0 D S
  982. N 0 2340 M 42 0 D S
  983. N 0 2520 M 42 0 D S
  984. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  985. -7200 0 T
  986. 25 W
  987. N 0 0 M 7200 0 D S
  988. /PSL_A0_y 83 def
  989. /PSL_A1_y 0 def
  990. 8 W
  991. N 720 0 M 0 -83 D S
  992. N 2160 0 M 0 -83 D S
  993. N 3600 0 M 0 -83 D S
  994. N 5040 0 M 0 -83 D S
  995. N 6480 0 M 0 -83 D S
  996. N 144 0 M 0 -42 D S
  997. N 432 0 M 0 -42 D S
  998. N 1008 0 M 0 -42 D S
  999. N 1296 0 M 0 -42 D S
  1000. N 1584 0 M 0 -42 D S
  1001. N 1872 0 M 0 -42 D S
  1002. N 2448 0 M 0 -42 D S
  1003. N 2736 0 M 0 -42 D S
  1004. N 3024 0 M 0 -42 D S
  1005. N 3312 0 M 0 -42 D S
  1006. N 3888 0 M 0 -42 D S
  1007. N 4176 0 M 0 -42 D S
  1008. N 4464 0 M 0 -42 D S
  1009. N 4752 0 M 0 -42 D S
  1010. N 5328 0 M 0 -42 D S
  1011. N 5616 0 M 0 -42 D S
  1012. N 5904 0 M 0 -42 D S
  1013. N 6192 0 M 0 -42 D S
  1014. N 6768 0 M 0 -42 D S
  1015. N 7056 0 M 0 -42 D S
  1016. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1017. 0 2700 T
  1018. 25 W
  1019. N 0 0 M 7200 0 D S
  1020. /PSL_A0_y 83 def
  1021. /PSL_A1_y 0 def
  1022. 8 W
  1023. N 720 0 M 0 83 D S
  1024. N 2160 0 M 0 83 D S
  1025. N 3600 0 M 0 83 D S
  1026. N 5040 0 M 0 83 D S
  1027. N 6480 0 M 0 83 D S
  1028. N 144 0 M 0 42 D S
  1029. N 432 0 M 0 42 D S
  1030. N 1008 0 M 0 42 D S
  1031. N 1296 0 M 0 42 D S
  1032. N 1584 0 M 0 42 D S
  1033. N 1872 0 M 0 42 D S
  1034. N 2448 0 M 0 42 D S
  1035. N 2736 0 M 0 42 D S
  1036. N 3024 0 M 0 42 D S
  1037. N 3312 0 M 0 42 D S
  1038. N 3888 0 M 0 42 D S
  1039. N 4176 0 M 0 42 D S
  1040. N 4464 0 M 0 42 D S
  1041. N 4752 0 M 0 42 D S
  1042. N 5328 0 M 0 42 D S
  1043. N 5616 0 M 0 42 D S
  1044. N 5904 0 M 0 42 D S
  1045. N 6192 0 M 0 42 D S
  1046. N 6768 0 M 0 42 D S
  1047. N 7056 0 M 0 42 D S
  1048. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1049. 0 -2700 T
  1050. 0 setlinecap
  1051. clipsave
  1052. 0 0 M
  1053. 7200 0 D
  1054. 0 2700 D
  1055. -7200 0 D
  1056. P
  1057. PSL_clip N
  1058. 4 W
  1059. V
  1060. {1 0 0 C} FS
  1061. 24 0 36 Sc
  1062. 24 36 36 Sc
  1063. 24 72 37 Sc
  1064. 24 108 38 Sc
  1065. 24 144 39 Sc
  1066. 24 180 40 Sc
  1067. 24 216 40 Sc
  1068. 24 252 41 Sc
  1069. 24 288 42 Sc
  1070. 24 324 43 Sc
  1071. 24 360 44 Sc
  1072. 24 396 45 Sc
  1073. 24 432 46 Sc
  1074. 24 468 47 Sc
  1075. 24 504 48 Sc
  1076. 24 540 49 Sc
  1077. 24 576 50 Sc
  1078. 24 612 52 Sc
  1079. 24 648 53 Sc
  1080. 24 684 54 Sc
  1081. 24 720 55 Sc
  1082. 24 756 57 Sc
  1083. 24 792 58 Sc
  1084. 24 828 60 Sc
  1085. 24 864 61 Sc
  1086. 24 900 63 Sc
  1087. 24 936 64 Sc
  1088. 24 972 66 Sc
  1089. 24 1008 68 Sc
  1090. 24 1044 70 Sc
  1091. 24 1080 72 Sc
  1092. 24 1116 74 Sc
  1093. 24 1152 76 Sc
  1094. 24 1188 78 Sc
  1095. 24 1224 81 Sc
  1096. 24 1260 83 Sc
  1097. 24 1296 85 Sc
  1098. 24 1332 88 Sc
  1099. 24 1368 91 Sc
  1100. 24 1404 94 Sc
  1101. 24 1440 97 Sc
  1102. 24 1476 100 Sc
  1103. 24 1512 103 Sc
  1104. 24 1548 107 Sc
  1105. 24 1584 110 Sc
  1106. 24 1620 114 Sc
  1107. 24 1656 118 Sc
  1108. 24 1692 123 Sc
  1109. 24 1728 127 Sc
  1110. 24 1764 132 Sc
  1111. 24 1800 137 Sc
  1112. 24 1836 142 Sc
  1113. 24 1872 148 Sc
  1114. 24 1908 154 Sc
  1115. 24 1944 160 Sc
  1116. 24 1980 167 Sc
  1117. 24 2016 174 Sc
  1118. 24 2052 182 Sc
  1119. 24 2088 190 Sc
  1120. 24 2124 198 Sc
  1121. 24 2160 208 Sc
  1122. 24 2196 218 Sc
  1123. 24 2232 228 Sc
  1124. 24 2268 239 Sc
  1125. 24 2304 252 Sc
  1126. 24 2340 265 Sc
  1127. 24 2376 279 Sc
  1128. 24 2412 294 Sc
  1129. 24 2448 310 Sc
  1130. 24 2484 328 Sc
  1131. 24 2520 347 Sc
  1132. 24 2556 368 Sc
  1133. 24 2592 390 Sc
  1134. 24 2628 415 Sc
  1135. 24 2664 442 Sc
  1136. 24 2700 471 Sc
  1137. 24 2736 503 Sc
  1138. 24 2772 538 Sc
  1139. 24 2808 577 Sc
  1140. 24 2844 619 Sc
  1141. 24 2880 666 Sc
  1142. 24 2916 717 Sc
  1143. 24 2952 774 Sc
  1144. 24 2988 837 Sc
  1145. 24 3024 906 Sc
  1146. 24 3060 982 Sc
  1147. 24 3096 1065 Sc
  1148. 24 3132 1157 Sc
  1149. 24 3168 1258 Sc
  1150. 24 3204 1367 Sc
  1151. 24 3240 1485 Sc
  1152. 24 3276 1610 Sc
  1153. 24 3312 1742 Sc
  1154. 24 3348 1877 Sc
  1155. 24 3384 2013 Sc
  1156. 24 3420 2144 Sc
  1157. 24 3456 2264 Sc
  1158. 24 3492 2368 Sc
  1159. 24 3528 2448 Sc
  1160. 24 3564 2498 Sc
  1161. 24 3600 2516 Sc
  1162. 24 3636 2498 Sc
  1163. 24 3672 2448 Sc
  1164. 24 3708 2368 Sc
  1165. 24 3744 2264 Sc
  1166. 24 3780 2144 Sc
  1167. 24 3816 2013 Sc
  1168. 24 3852 1877 Sc
  1169. 24 3888 1742 Sc
  1170. 24 3924 1610 Sc
  1171. 24 3960 1485 Sc
  1172. 24 3996 1367 Sc
  1173. 24 4032 1258 Sc
  1174. 24 4068 1157 Sc
  1175. 24 4104 1065 Sc
  1176. 24 4140 982 Sc
  1177. 24 4176 906 Sc
  1178. 24 4212 837 Sc
  1179. 24 4248 774 Sc
  1180. 24 4284 717 Sc
  1181. 24 4320 666 Sc
  1182. 24 4356 619 Sc
  1183. 24 4392 577 Sc
  1184. 24 4428 538 Sc
  1185. 24 4464 503 Sc
  1186. 24 4500 471 Sc
  1187. 24 4536 442 Sc
  1188. 24 4572 415 Sc
  1189. 24 4608 390 Sc
  1190. 24 4644 368 Sc
  1191. 24 4680 347 Sc
  1192. 24 4716 328 Sc
  1193. 24 4752 310 Sc
  1194. 24 4788 294 Sc
  1195. 24 4824 279 Sc
  1196. 24 4860 265 Sc
  1197. 24 4896 252 Sc
  1198. 24 4932 239 Sc
  1199. 24 4968 228 Sc
  1200. 24 5004 218 Sc
  1201. 24 5040 208 Sc
  1202. 24 5076 198 Sc
  1203. 24 5112 190 Sc
  1204. 24 5148 182 Sc
  1205. 24 5184 174 Sc
  1206. 24 5220 167 Sc
  1207. 24 5256 160 Sc
  1208. 24 5292 154 Sc
  1209. 24 5328 148 Sc
  1210. 24 5364 142 Sc
  1211. 24 5400 137 Sc
  1212. 24 5436 132 Sc
  1213. 24 5472 127 Sc
  1214. 24 5508 123 Sc
  1215. 24 5544 118 Sc
  1216. 24 5580 114 Sc
  1217. 24 5616 110 Sc
  1218. 24 5652 107 Sc
  1219. 24 5688 103 Sc
  1220. 24 5724 100 Sc
  1221. 24 5760 97 Sc
  1222. 24 5796 94 Sc
  1223. 24 5832 91 Sc
  1224. 24 5868 88 Sc
  1225. 24 5904 85 Sc
  1226. 24 5940 83 Sc
  1227. 24 5976 81 Sc
  1228. 24 6012 78 Sc
  1229. 24 6048 76 Sc
  1230. 24 6084 74 Sc
  1231. 24 6120 72 Sc
  1232. 24 6156 70 Sc
  1233. 24 6192 68 Sc
  1234. 24 6228 66 Sc
  1235. 24 6264 64 Sc
  1236. 24 6300 63 Sc
  1237. 24 6336 61 Sc
  1238. 24 6372 60 Sc
  1239. 24 6408 58 Sc
  1240. 24 6444 57 Sc
  1241. 24 6480 55 Sc
  1242. 24 6516 54 Sc
  1243. 24 6552 53 Sc
  1244. 24 6588 52 Sc
  1245. 24 6624 50 Sc
  1246. 24 6660 49 Sc
  1247. 24 6696 48 Sc
  1248. 24 6732 47 Sc
  1249. 24 6768 46 Sc
  1250. 24 6804 45 Sc
  1251. 24 6840 44 Sc
  1252. 24 6876 43 Sc
  1253. 24 6912 42 Sc
  1254. 24 6948 41 Sc
  1255. 24 6984 40 Sc
  1256. 24 7020 40 Sc
  1257. 24 7056 39 Sc
  1258. 24 7092 38 Sc
  1259. 24 7128 37 Sc
  1260. 24 7164 36 Sc
  1261. 24 7200 36 Sc
  1262. U
  1263. PSL_cliprestore
  1264. %%EndObject
  1265. 0 A
  1266. FQ
  1267. O0
  1268. 0 0 TM
  1269. % PostScript produced by:
  1270. %@GMT: gmt psxy -R-25/25/0/15 -JX6i/2.25i -O -K faa.txt -W0.5p,blue
  1271. %@PROJ: xy -25.00000000 25.00000000 0.00000000 15.00000000 -25.000 25.000 0.000 15.000 +xy
  1272. %%BeginObject PSL_Layer_4
  1273. 0 setlinecap
  1274. 0 setlinejoin
  1275. 3.32551 setmiterlimit
  1276. 8 W
  1277. 0 0 1 C
  1278. clipsave
  1279. 0 0 M
  1280. 7200 0 D
  1281. 0 2700 D
  1282. -7200 0 D
  1283. P
  1284. PSL_clip N
  1285. 0 36 M
  1286. 396 9 D
  1287. 324 10 D
  1288. 288 13 D
  1289. 288 17 D
  1290. 288 25 D
  1291. 180 22 D
  1292. 108 16 D
  1293. 108 19 D
  1294. 144 31 D
  1295. 144 41 D
  1296. 108 40 D
  1297. 72 31 D
  1298. 72 37 D
  1299. 72 43 D
  1300. 36 25 D
  1301. 36 27 D
  1302. 36 29 D
  1303. 36 32 D
  1304. 36 35 D
  1305. 36 39 D
  1306. 36 42 D
  1307. 36 47 D
  1308. 36 51 D
  1309. 36 57 D
  1310. 36 63 D
  1311. 36 69 D
  1312. 36 76 D
  1313. 36 83 D
  1314. 36 92 D
  1315. 36 101 D
  1316. 36 109 D
  1317. 36 118 D
  1318. 72 257 D
  1319. 108 401 D
  1320. 36 121 D
  1321. 36 104 D
  1322. 36 80 D
  1323. 36 50 D
  1324. 36 18 D
  1325. 36 -18 D
  1326. 36 -50 D
  1327. 36 -80 D
  1328. 36 -104 D
  1329. 36 -121 D
  1330. 144 -533 D
  1331. 36 -125 D
  1332. 36 -118 D
  1333. 36 -109 D
  1334. 36 -101 D
  1335. 36 -92 D
  1336. 36 -83 D
  1337. 36 -76 D
  1338. 36 -69 D
  1339. 36 -63 D
  1340. 36 -57 D
  1341. 36 -51 D
  1342. 36 -47 D
  1343. 36 -42 D
  1344. 36 -39 D
  1345. 36 -35 D
  1346. 36 -32 D
  1347. 36 -29 D
  1348. 36 -27 D
  1349. 36 -25 D
  1350. 72 -43 D
  1351. 72 -37 D
  1352. 72 -31 D
  1353. 108 -40 D
  1354. 144 -41 D
  1355. 144 -31 D
  1356. 144 -25 D
  1357. 180 -24 D
  1358. 180 -18 D
  1359. 252 -20 D
  1360. 360 -19 D
  1361. 396 -14 D
  1362. 432 -11 D
  1363. 36 0 D
  1364. S
  1365. PSL_cliprestore
  1366. %%EndObject
  1367. 0 A
  1368. FQ
  1369. O0
  1370. 0 0 TM
  1371. % PostScript produced by:
  1372. %@GMT: gmt pstext -R-25/25/0/15 -JX6i/2.25i -O -K -F+f14p+cTR+jTR -Dj0.1i
  1373. %@PROJ: xy -25.00000000 25.00000000 0.00000000 15.00000000 -25.000 25.000 0.000 15.000 +xy
  1374. %%BeginObject PSL_Layer_5
  1375. 0 setlinecap
  1376. 0 setlinejoin
  1377. 3.32551 setmiterlimit
  1378. clipsave
  1379. 0 0 M
  1380. 7200 0 D
  1381. 0 2700 D
  1382. -7200 0 D
  1383. P
  1384. PSL_clip N
  1385. 7080 2580 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1386. 233 F0
  1387. (FAA) tr Z
  1388. PSL_cliprestore
  1389. %%EndObject
  1390. 0 A
  1391. FQ
  1392. O0
  1393. 0 2880 TM
  1394. % PostScript produced by:
  1395. %@GMT: gmt psxy -R-25/25/0/0.1 -JX6i/2.25i -O -K -Y2.4i n_truth.txt -Sc0.1c -Gred -Bxaf -Byaf+lm -BWsne
  1396. %@PROJ: xy -25.00000000 25.00000000 0.00000000 0.10000000 -25.000 25.000 0.000 0.100 +xy
  1397. %%BeginObject PSL_Layer_6
  1398. 0 setlinecap
  1399. 0 setlinejoin
  1400. 3.32551 setmiterlimit
  1401. 25 W
  1402. 2 setlinecap
  1403. N 0 2700 M 0 -2700 D S
  1404. /PSL_A0_y 83 def
  1405. /PSL_A1_y 0 def
  1406. 8 W
  1407. N 0 0 M -83 0 D S
  1408. N 0 1350 M -83 0 D S
  1409. N 0 2700 M -83 0 D S
  1410. /PSL_AH0 0
  1411. /MM {neg exch M} def
  1412. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1413. 200 F0
  1414. (0.00) sw mx
  1415. (0.05) sw mx
  1416. (0.10) sw mx
  1417. def
  1418. /PSL_A0_y PSL_A0_y 83 add def
  1419. 0 PSL_A0_y MM
  1420. (0.00) mr Z
  1421. 1350 PSL_A0_y MM
  1422. (0.05) mr Z
  1423. 2700 PSL_A0_y MM
  1424. (0.10) mr Z
  1425. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1426. N 0 270 M -42 0 D S
  1427. N 0 540 M -42 0 D S
  1428. N 0 810 M -42 0 D S
  1429. N 0 1080 M -42 0 D S
  1430. N 0 1620 M -42 0 D S
  1431. N 0 1890 M -42 0 D S
  1432. N 0 2160 M -42 0 D S
  1433. N 0 2430 M -42 0 D S
  1434. /PSL_LH 267 F0
  1435. (M) sh def
  1436. /PSL_L_y PSL_A0_y PSL_A1_y mx 133 add def
  1437. 1350 PSL_L_y MM
  1438. V 90 R (m) bc Z U
  1439. 7200 0 T
  1440. 25 W
  1441. N 0 2700 M 0 -2700 D S
  1442. /PSL_A0_y 83 def
  1443. /PSL_A1_y 0 def
  1444. 8 W
  1445. N 0 0 M 83 0 D S
  1446. N 0 1350 M 83 0 D S
  1447. N 0 2700 M 83 0 D S
  1448. N 0 270 M 42 0 D S
  1449. N 0 540 M 42 0 D S
  1450. N 0 810 M 42 0 D S
  1451. N 0 1080 M 42 0 D S
  1452. N 0 1620 M 42 0 D S
  1453. N 0 1890 M 42 0 D S
  1454. N 0 2160 M 42 0 D S
  1455. N 0 2430 M 42 0 D S
  1456. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1457. -7200 0 T
  1458. 25 W
  1459. N 0 0 M 7200 0 D S
  1460. /PSL_A0_y 83 def
  1461. /PSL_A1_y 0 def
  1462. 8 W
  1463. N 720 0 M 0 -83 D S
  1464. N 2160 0 M 0 -83 D S
  1465. N 3600 0 M 0 -83 D S
  1466. N 5040 0 M 0 -83 D S
  1467. N 6480 0 M 0 -83 D S
  1468. N 144 0 M 0 -42 D S
  1469. N 432 0 M 0 -42 D S
  1470. N 1008 0 M 0 -42 D S
  1471. N 1296 0 M 0 -42 D S
  1472. N 1584 0 M 0 -42 D S
  1473. N 1872 0 M 0 -42 D S
  1474. N 2448 0 M 0 -42 D S
  1475. N 2736 0 M 0 -42 D S
  1476. N 3024 0 M 0 -42 D S
  1477. N 3312 0 M 0 -42 D S
  1478. N 3888 0 M 0 -42 D S
  1479. N 4176 0 M 0 -42 D S
  1480. N 4464 0 M 0 -42 D S
  1481. N 4752 0 M 0 -42 D S
  1482. N 5328 0 M 0 -42 D S
  1483. N 5616 0 M 0 -42 D S
  1484. N 5904 0 M 0 -42 D S
  1485. N 6192 0 M 0 -42 D S
  1486. N 6768 0 M 0 -42 D S
  1487. N 7056 0 M 0 -42 D S
  1488. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1489. 0 2700 T
  1490. 25 W
  1491. N 0 0 M 7200 0 D S
  1492. /PSL_A0_y 83 def
  1493. /PSL_A1_y 0 def
  1494. 8 W
  1495. N 720 0 M 0 83 D S
  1496. N 2160 0 M 0 83 D S
  1497. N 3600 0 M 0 83 D S
  1498. N 5040 0 M 0 83 D S
  1499. N 6480 0 M 0 83 D S
  1500. N 144 0 M 0 42 D S
  1501. N 432 0 M 0 42 D S
  1502. N 1008 0 M 0 42 D S
  1503. N 1296 0 M 0 42 D S
  1504. N 1584 0 M 0 42 D S
  1505. N 1872 0 M 0 42 D S
  1506. N 2448 0 M 0 42 D S
  1507. N 2736 0 M 0 42 D S
  1508. N 3024 0 M 0 42 D S
  1509. N 3312 0 M 0 42 D S
  1510. N 3888 0 M 0 42 D S
  1511. N 4176 0 M 0 42 D S
  1512. N 4464 0 M 0 42 D S
  1513. N 4752 0 M 0 42 D S
  1514. N 5328 0 M 0 42 D S
  1515. N 5616 0 M 0 42 D S
  1516. N 5904 0 M 0 42 D S
  1517. N 6192 0 M 0 42 D S
  1518. N 6768 0 M 0 42 D S
  1519. N 7056 0 M 0 42 D S
  1520. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1521. 0 -2700 T
  1522. 0 setlinecap
  1523. clipsave
  1524. 0 0 M
  1525. 7200 0 D
  1526. 0 2700 D
  1527. -7200 0 D
  1528. P
  1529. PSL_clip N
  1530. 4 W
  1531. V
  1532. {1 0 0 C} FS
  1533. 24 0 0 Sc
  1534. 24 36 11 Sc
  1535. 24 72 23 Sc
  1536. 24 108 35 Sc
  1537. 24 144 46 Sc
  1538. 24 180 58 Sc
  1539. 24 216 70 Sc
  1540. 24 252 82 Sc
  1541. 24 288 95 Sc
  1542. 24 324 107 Sc
  1543. 24 360 120 Sc
  1544. 24 396 132 Sc
  1545. 24 432 145 Sc
  1546. 24 468 158 Sc
  1547. 24 504 171 Sc
  1548. 24 540 184 Sc
  1549. 24 576 198 Sc
  1550. 24 612 211 Sc
  1551. 24 648 225 Sc
  1552. 24 684 239 Sc
  1553. 24 720 253 Sc
  1554. 24 756 267 Sc
  1555. 24 792 281 Sc
  1556. 24 828 296 Sc
  1557. 24 864 311 Sc
  1558. 24 900 326 Sc
  1559. 24 936 341 Sc
  1560. 24 972 356 Sc
  1561. 24 1008 372 Sc
  1562. 24 1044 387 Sc
  1563. 24 1080 403 Sc
  1564. 24 1116 419 Sc
  1565. 24 1152 436 Sc
  1566. 24 1188 452 Sc
  1567. 24 1224 469 Sc
  1568. 24 1260 486 Sc
  1569. 24 1296 503 Sc
  1570. 24 1332 521 Sc
  1571. 24 1368 539 Sc
  1572. 24 1404 557 Sc
  1573. 24 1440 575 Sc
  1574. 24 1476 594 Sc
  1575. 24 1512 613 Sc
  1576. 24 1548 632 Sc
  1577. 24 1584 651 Sc
  1578. 24 1620 671 Sc
  1579. 24 1656 691 Sc
  1580. 24 1692 712 Sc
  1581. 24 1728 733 Sc
  1582. 24 1764 754 Sc
  1583. 24 1800 776 Sc
  1584. 24 1836 798 Sc
  1585. 24 1872 820 Sc
  1586. 24 1908 843 Sc
  1587. 24 1944 866 Sc
  1588. 24 1980 890 Sc
  1589. 24 2016 914 Sc
  1590. 24 2052 939 Sc
  1591. 24 2088 964 Sc
  1592. 24 2124 990 Sc
  1593. 24 2160 1016 Sc
  1594. 24 2196 1043 Sc
  1595. 24 2232 1070 Sc
  1596. 24 2268 1098 Sc
  1597. 24 2304 1126 Sc
  1598. 24 2340 1156 Sc
  1599. 24 2376 1185 Sc
  1600. 24 2412 1216 Sc
  1601. 24 2448 1247 Sc
  1602. 24 2484 1279 Sc
  1603. 24 2520 1312 Sc
  1604. 24 2556 1346 Sc
  1605. 24 2592 1380 Sc
  1606. 24 2628 1415 Sc
  1607. 24 2664 1451 Sc
  1608. 24 2700 1488 Sc
  1609. 24 2736 1526 Sc
  1610. 24 2772 1565 Sc
  1611. 24 2808 1605 Sc
  1612. 24 2844 1646 Sc
  1613. 24 2880 1688 Sc
  1614. 24 2916 1731 Sc
  1615. 24 2952 1775 Sc
  1616. 24 2988 1820 Sc
  1617. 24 3024 1865 Sc
  1618. 24 3060 1912 Sc
  1619. 24 3096 1959 Sc
  1620. 24 3132 2007 Sc
  1621. 24 3168 2055 Sc
  1622. 24 3204 2103 Sc
  1623. 24 3240 2151 Sc
  1624. 24 3276 2197 Sc
  1625. 24 3312 2243 Sc
  1626. 24 3348 2286 Sc
  1627. 24 3384 2326 Sc
  1628. 24 3420 2363 Sc
  1629. 24 3456 2394 Sc
  1630. 24 3492 2420 Sc
  1631. 24 3528 2439 Sc
  1632. 24 3564 2451 Sc
  1633. 24 3600 2455 Sc
  1634. 24 3636 2451 Sc
  1635. 24 3672 2439 Sc
  1636. 24 3708 2420 Sc
  1637. 24 3744 2394 Sc
  1638. 24 3780 2363 Sc
  1639. 24 3816 2326 Sc
  1640. 24 3852 2286 Sc
  1641. 24 3888 2243 Sc
  1642. 24 3924 2197 Sc
  1643. 24 3960 2151 Sc
  1644. 24 3996 2103 Sc
  1645. 24 4032 2055 Sc
  1646. 24 4068 2007 Sc
  1647. 24 4104 1959 Sc
  1648. 24 4140 1912 Sc
  1649. 24 4176 1865 Sc
  1650. 24 4212 1820 Sc
  1651. 24 4248 1775 Sc
  1652. 24 4284 1731 Sc
  1653. 24 4320 1688 Sc
  1654. 24 4356 1646 Sc
  1655. 24 4392 1605 Sc
  1656. 24 4428 1565 Sc
  1657. 24 4464 1526 Sc
  1658. 24 4500 1488 Sc
  1659. 24 4536 1451 Sc
  1660. 24 4572 1415 Sc
  1661. 24 4608 1380 Sc
  1662. 24 4644 1346 Sc
  1663. 24 4680 1312 Sc
  1664. 24 4716 1279 Sc
  1665. 24 4752 1247 Sc
  1666. 24 4788 1216 Sc
  1667. 24 4824 1185 Sc
  1668. 24 4860 1156 Sc
  1669. 24 4896 1126 Sc
  1670. 24 4932 1098 Sc
  1671. 24 4968 1070 Sc
  1672. 24 5004 1043 Sc
  1673. 24 5040 1016 Sc
  1674. 24 5076 990 Sc
  1675. 24 5112 964 Sc
  1676. 24 5148 939 Sc
  1677. 24 5184 914 Sc
  1678. 24 5220 890 Sc
  1679. 24 5256 866 Sc
  1680. 24 5292 843 Sc
  1681. 24 5328 820 Sc
  1682. 24 5364 798 Sc
  1683. 24 5400 776 Sc
  1684. 24 5436 754 Sc
  1685. 24 5472 733 Sc
  1686. 24 5508 712 Sc
  1687. 24 5544 691 Sc
  1688. 24 5580 671 Sc
  1689. 24 5616 651 Sc
  1690. 24 5652 632 Sc
  1691. 24 5688 613 Sc
  1692. 24 5724 594 Sc
  1693. 24 5760 575 Sc
  1694. 24 5796 557 Sc
  1695. 24 5832 539 Sc
  1696. 24 5868 521 Sc
  1697. 24 5904 503 Sc
  1698. 24 5940 486 Sc
  1699. 24 5976 469 Sc
  1700. 24 6012 452 Sc
  1701. 24 6048 436 Sc
  1702. 24 6084 419 Sc
  1703. 24 6120 403 Sc
  1704. 24 6156 387 Sc
  1705. 24 6192 372 Sc
  1706. 24 6228 356 Sc
  1707. 24 6264 341 Sc
  1708. 24 6300 326 Sc
  1709. 24 6336 311 Sc
  1710. 24 6372 296 Sc
  1711. 24 6408 281 Sc
  1712. 24 6444 267 Sc
  1713. 24 6480 253 Sc
  1714. 24 6516 239 Sc
  1715. 24 6552 225 Sc
  1716. 24 6588 211 Sc
  1717. 24 6624 198 Sc
  1718. 24 6660 184 Sc
  1719. 24 6696 171 Sc
  1720. 24 6732 158 Sc
  1721. 24 6768 145 Sc
  1722. 24 6804 132 Sc
  1723. 24 6840 120 Sc
  1724. 24 6876 107 Sc
  1725. 24 6912 95 Sc
  1726. 24 6948 82 Sc
  1727. 24 6984 70 Sc
  1728. 24 7020 58 Sc
  1729. 24 7056 46 Sc
  1730. 24 7092 35 Sc
  1731. 24 7128 23 Sc
  1732. 24 7164 11 Sc
  1733. 24 7200 0 Sc
  1734. U
  1735. PSL_cliprestore
  1736. %%EndObject
  1737. 0 A
  1738. FQ
  1739. O0
  1740. 0 0 TM
  1741. % PostScript produced by:
  1742. %@GMT: gmt psxy -R-25/25/0/0.1 -JX6i/2.25i -O -K geoid.txt -W0.5p,blue
  1743. %@PROJ: xy -25.00000000 25.00000000 0.00000000 0.10000000 -25.000 25.000 0.000 0.100 +xy
  1744. %%BeginObject PSL_Layer_7
  1745. 0 setlinecap
  1746. 0 setlinejoin
  1747. 3.32551 setmiterlimit
  1748. 8 W
  1749. 0 0 1 C
  1750. clipsave
  1751. 0 0 M
  1752. 7200 0 D
  1753. 0 2700 D
  1754. -7200 0 D
  1755. P
  1756. PSL_clip N
  1757. 0 0 M
  1758. 252 82 D
  1759. 252 89 D
  1760. 180 68 D
  1761. 180 72 D
  1762. 180 76 D
  1763. 180 82 D
  1764. 108 52 D
  1765. 144 73 D
  1766. 108 58 D
  1767. 144 81 D
  1768. 108 65 D
  1769. 72 45 D
  1770. 72 47 D
  1771. 108 74 D
  1772. 108 79 D
  1773. 72 55 D
  1774. 108 88 D
  1775. 36 30 D
  1776. 108 96 D
  1777. 72 68 D
  1778. 108 109 D
  1779. 108 117 D
  1780. 108 126 D
  1781. 72 88 D
  1782. 144 188 D
  1783. 144 190 D
  1784. 36 46 D
  1785. 36 43 D
  1786. 36 40 D
  1787. 36 36 D
  1788. 36 32 D
  1789. 36 26 D
  1790. 36 19 D
  1791. 36 12 D
  1792. 36 4 D
  1793. 36 -4 D
  1794. 36 -12 D
  1795. 36 -19 D
  1796. 36 -26 D
  1797. 36 -32 D
  1798. 36 -36 D
  1799. 36 -40 D
  1800. 36 -43 D
  1801. 144 -188 D
  1802. 144 -190 D
  1803. 72 -90 D
  1804. 108 -129 D
  1805. 108 -120 D
  1806. 108 -111 D
  1807. 36 -36 D
  1808. 72 -68 D
  1809. 108 -96 D
  1810. 108 -89 D
  1811. 72 -57 D
  1812. 108 -80 D
  1813. 72 -51 D
  1814. 72 -49 D
  1815. 72 -47 D
  1816. 144 -89 D
  1817. 108 -62 D
  1818. 144 -79 D
  1819. 108 -56 D
  1820. 144 -71 D
  1821. 180 -83 D
  1822. 180 -77 D
  1823. 180 -73 D
  1824. 180 -69 D
  1825. 216 -77 D
  1826. 180 -61 D
  1827. 144 -46 D
  1828. S
  1829. PSL_cliprestore
  1830. %%EndObject
  1831. 0 A
  1832. FQ
  1833. O0
  1834. 0 0 TM
  1835. % PostScript produced by:
  1836. %@GMT: gmt pstext -R-25/25/0/0.1 -JX6i/2.25i -O -K -F+f14p+cTR+jTR -Dj0.1i
  1837. %@PROJ: xy -25.00000000 25.00000000 0.00000000 0.10000000 -25.000 25.000 0.000 0.100 +xy
  1838. %%BeginObject PSL_Layer_8
  1839. 0 setlinecap
  1840. 0 setlinejoin
  1841. 3.32551 setmiterlimit
  1842. clipsave
  1843. 0 0 M
  1844. 7200 0 D
  1845. 0 2700 D
  1846. -7200 0 D
  1847. P
  1848. PSL_clip N
  1849. 7080 2580 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1850. 233 F0
  1851. (GEOID) tr Z
  1852. PSL_cliprestore
  1853. %%EndObject
  1854. 0 A
  1855. FQ
  1856. O0
  1857. 0 2880 TM
  1858. % PostScript produced by:
  1859. %@GMT: gmt psxy -R-25/25/-10/50 -JX6i/2.25i -O -K -Y2.4i v_truth.txt -Sc0.1c -Gred -Bxaf -Byafg1000+lEotvos -BWsne
  1860. %@PROJ: xy -25.00000000 25.00000000 -10.00000000 50.00000000 -25.000 25.000 -10.000 50.000 +xy
  1861. %%BeginObject PSL_Layer_9
  1862. 0 setlinecap
  1863. 0 setlinejoin
  1864. 3.32551 setmiterlimit
  1865. 25 W
  1866. 4 W
  1867. 0 450 M
  1868. 7200 0 D
  1869. S
  1870. 2 setlinecap
  1871. 25 W
  1872. N 0 2700 M 0 -2700 D S
  1873. /PSL_A0_y 83 def
  1874. /PSL_A1_y 0 def
  1875. 8 W
  1876. N 0 450 M -83 0 D S
  1877. N 0 1350 M -83 0 D S
  1878. N 0 2250 M -83 0 D S
  1879. /PSL_AH0 0
  1880. /MM {neg exch M} def
  1881. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1882. 200 F0
  1883. (0) sw mx
  1884. (20) sw mx
  1885. (40) sw mx
  1886. def
  1887. /PSL_A0_y PSL_A0_y 83 add def
  1888. 450 PSL_A0_y MM
  1889. (0) mr Z
  1890. 1350 PSL_A0_y MM
  1891. (20) mr Z
  1892. 2250 PSL_A0_y MM
  1893. (40) mr Z
  1894. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1895. N 0 0 M -42 0 D S
  1896. N 0 900 M -42 0 D S
  1897. N 0 1800 M -42 0 D S
  1898. N 0 2700 M -42 0 D S
  1899. /PSL_LH 267 F0
  1900. (M) sh def
  1901. /PSL_L_y PSL_A0_y PSL_A1_y mx 133 add def
  1902. 1350 PSL_L_y MM
  1903. V 90 R (Eotvos) bc Z U
  1904. 7200 0 T
  1905. 25 W
  1906. N 0 2700 M 0 -2700 D S
  1907. /PSL_A0_y 83 def
  1908. /PSL_A1_y 0 def
  1909. 8 W
  1910. N 0 450 M 83 0 D S
  1911. N 0 1350 M 83 0 D S
  1912. N 0 2250 M 83 0 D S
  1913. N 0 0 M 42 0 D S
  1914. N 0 900 M 42 0 D S
  1915. N 0 1800 M 42 0 D S
  1916. N 0 2700 M 42 0 D S
  1917. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1918. -7200 0 T
  1919. 25 W
  1920. N 0 0 M 7200 0 D S
  1921. /PSL_A0_y 83 def
  1922. /PSL_A1_y 0 def
  1923. 8 W
  1924. N 720 0 M 0 -83 D S
  1925. N 2160 0 M 0 -83 D S
  1926. N 3600 0 M 0 -83 D S
  1927. N 5040 0 M 0 -83 D S
  1928. N 6480 0 M 0 -83 D S
  1929. N 144 0 M 0 -42 D S
  1930. N 432 0 M 0 -42 D S
  1931. N 1008 0 M 0 -42 D S
  1932. N 1296 0 M 0 -42 D S
  1933. N 1584 0 M 0 -42 D S
  1934. N 1872 0 M 0 -42 D S
  1935. N 2448 0 M 0 -42 D S
  1936. N 2736 0 M 0 -42 D S
  1937. N 3024 0 M 0 -42 D S
  1938. N 3312 0 M 0 -42 D S
  1939. N 3888 0 M 0 -42 D S
  1940. N 4176 0 M 0 -42 D S
  1941. N 4464 0 M 0 -42 D S
  1942. N 4752 0 M 0 -42 D S
  1943. N 5328 0 M 0 -42 D S
  1944. N 5616 0 M 0 -42 D S
  1945. N 5904 0 M 0 -42 D S
  1946. N 6192 0 M 0 -42 D S
  1947. N 6768 0 M 0 -42 D S
  1948. N 7056 0 M 0 -42 D S
  1949. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1950. 0 2700 T
  1951. 25 W
  1952. N 0 0 M 7200 0 D S
  1953. /PSL_A0_y 83 def
  1954. /PSL_A1_y 0 def
  1955. 8 W
  1956. N 720 0 M 0 83 D S
  1957. N 2160 0 M 0 83 D S
  1958. N 3600 0 M 0 83 D S
  1959. N 5040 0 M 0 83 D S
  1960. N 6480 0 M 0 83 D S
  1961. N 144 0 M 0 42 D S
  1962. N 432 0 M 0 42 D S
  1963. N 1008 0 M 0 42 D S
  1964. N 1296 0 M 0 42 D S
  1965. N 1584 0 M 0 42 D S
  1966. N 1872 0 M 0 42 D S
  1967. N 2448 0 M 0 42 D S
  1968. N 2736 0 M 0 42 D S
  1969. N 3024 0 M 0 42 D S
  1970. N 3312 0 M 0 42 D S
  1971. N 3888 0 M 0 42 D S
  1972. N 4176 0 M 0 42 D S
  1973. N 4464 0 M 0 42 D S
  1974. N 4752 0 M 0 42 D S
  1975. N 5328 0 M 0 42 D S
  1976. N 5616 0 M 0 42 D S
  1977. N 5904 0 M 0 42 D S
  1978. N 6192 0 M 0 42 D S
  1979. N 6768 0 M 0 42 D S
  1980. N 7056 0 M 0 42 D S
  1981. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1982. 0 -2700 T
  1983. 0 setlinecap
  1984. clipsave
  1985. 0 0 M
  1986. 7200 0 D
  1987. 0 2700 D
  1988. -7200 0 D
  1989. P
  1990. PSL_clip N
  1991. 4 W
  1992. V
  1993. {1 0 0 C} FS
  1994. 24 0 421 Sc
  1995. 24 36 421 Sc
  1996. 24 72 420 Sc
  1997. 24 108 419 Sc
  1998. 24 144 419 Sc
  1999. 24 180 418 Sc
  2000. 24 216 417 Sc
  2001. 24 252 417 Sc
  2002. 24 288 416 Sc
  2003. 24 324 415 Sc
  2004. 24 360 415 Sc
  2005. 24 396 414 Sc
  2006. 24 432 413 Sc
  2007. 24 468 412 Sc
  2008. 24 504 411 Sc
  2009. 24 540 411 Sc
  2010. 24 576 410 Sc
  2011. 24 612 409 Sc
  2012. 24 648 408 Sc
  2013. 24 684 407 Sc
  2014. 24 720 406 Sc
  2015. 24 756 405 Sc
  2016. 24 792 404 Sc
  2017. 24 828 403 Sc
  2018. 24 864 401 Sc
  2019. 24 900 400 Sc
  2020. 24 936 399 Sc
  2021. 24 972 398 Sc
  2022. 24 1008 396 Sc
  2023. 24 1044 395 Sc
  2024. 24 1080 394 Sc
  2025. 24 1116 392 Sc
  2026. 24 1152 391 Sc
  2027. 24 1188 389 Sc
  2028. 24 1224 387 Sc
  2029. 24 1260 385 Sc
  2030. 24 1296 384 Sc
  2031. 24 1332 382 Sc
  2032. 24 1368 380 Sc
  2033. 24 1404 378 Sc
  2034. 24 1440 376 Sc
  2035. 24 1476 373 Sc
  2036. 24 1512 371 Sc
  2037. 24 1548 369 Sc
  2038. 24 1584 366 Sc
  2039. 24 1620 363 Sc
  2040. 24 1656 361 Sc
  2041. 24 1692 358 Sc
  2042. 24 1728 355 Sc
  2043. 24 1764 352 Sc
  2044. 24 1800 348 Sc
  2045. 24 1836 345 Sc
  2046. 24 1872 341 Sc
  2047. 24 1908 337 Sc
  2048. 24 1944 333 Sc
  2049. 24 1980 329 Sc
  2050. 24 2016 325 Sc
  2051. 24 2052 320 Sc
  2052. 24 2088 316 Sc
  2053. 24 2124 311 Sc
  2054. 24 2160 305 Sc
  2055. 24 2196 300 Sc
  2056. 24 2232 294 Sc
  2057. 24 2268 288 Sc
  2058. 24 2304 282 Sc
  2059. 24 2340 276 Sc
  2060. 24 2376 269 Sc
  2061. 24 2412 262 Sc
  2062. 24 2448 255 Sc
  2063. 24 2484 248 Sc
  2064. 24 2520 241 Sc
  2065. 24 2556 233 Sc
  2066. 24 2592 226 Sc
  2067. 24 2628 218 Sc
  2068. 24 2664 211 Sc
  2069. 24 2700 204 Sc
  2070. 24 2736 198 Sc
  2071. 24 2772 193 Sc
  2072. 24 2808 190 Sc
  2073. 24 2844 188 Sc
  2074. 24 2880 189 Sc
  2075. 24 2916 193 Sc
  2076. 24 2952 202 Sc
  2077. 24 2988 217 Sc
  2078. 24 3024 239 Sc
  2079. 24 3060 270 Sc
  2080. 24 3096 314 Sc
  2081. 24 3132 373 Sc
  2082. 24 3168 450 Sc
  2083. 24 3204 549 Sc
  2084. 24 3240 673 Sc
  2085. 24 3276 826 Sc
  2086. 24 3312 1008 Sc
  2087. 24 3348 1220 Sc
  2088. 24 3384 1456 Sc
  2089. 24 3420 1708 Sc
  2090. 24 3456 1959 Sc
  2091. 24 3492 2191 Sc
  2092. 24 3528 2379 Sc
  2093. 24 3564 2503 Sc
  2094. 24 3600 2546 Sc
  2095. 24 3636 2503 Sc
  2096. 24 3672 2379 Sc
  2097. 24 3708 2191 Sc
  2098. 24 3744 1959 Sc
  2099. 24 3780 1708 Sc
  2100. 24 3816 1456 Sc
  2101. 24 3852 1220 Sc
  2102. 24 3888 1008 Sc
  2103. 24 3924 826 Sc
  2104. 24 3960 673 Sc
  2105. 24 3996 549 Sc
  2106. 24 4032 450 Sc
  2107. 24 4068 373 Sc
  2108. 24 4104 314 Sc
  2109. 24 4140 270 Sc
  2110. 24 4176 239 Sc
  2111. 24 4212 217 Sc
  2112. 24 4248 202 Sc
  2113. 24 4284 193 Sc
  2114. 24 4320 189 Sc
  2115. 24 4356 188 Sc
  2116. 24 4392 190 Sc
  2117. 24 4428 193 Sc
  2118. 24 4464 198 Sc
  2119. 24 4500 204 Sc
  2120. 24 4536 211 Sc
  2121. 24 4572 218 Sc
  2122. 24 4608 226 Sc
  2123. 24 4644 233 Sc
  2124. 24 4680 241 Sc
  2125. 24 4716 248 Sc
  2126. 24 4752 255 Sc
  2127. 24 4788 262 Sc
  2128. 24 4824 269 Sc
  2129. 24 4860 276 Sc
  2130. 24 4896 282 Sc
  2131. 24 4932 288 Sc
  2132. 24 4968 294 Sc
  2133. 24 5004 300 Sc
  2134. 24 5040 305 Sc
  2135. 24 5076 311 Sc
  2136. 24 5112 316 Sc
  2137. 24 5148 320 Sc
  2138. 24 5184 325 Sc
  2139. 24 5220 329 Sc
  2140. 24 5256 333 Sc
  2141. 24 5292 337 Sc
  2142. 24 5328 341 Sc
  2143. 24 5364 345 Sc
  2144. 24 5400 348 Sc
  2145. 24 5436 352 Sc
  2146. 24 5472 355 Sc
  2147. 24 5508 358 Sc
  2148. 24 5544 361 Sc
  2149. 24 5580 363 Sc
  2150. 24 5616 366 Sc
  2151. 24 5652 369 Sc
  2152. 24 5688 371 Sc
  2153. 24 5724 373 Sc
  2154. 24 5760 376 Sc
  2155. 24 5796 378 Sc
  2156. 24 5832 380 Sc
  2157. 24 5868 382 Sc
  2158. 24 5904 384 Sc
  2159. 24 5940 385 Sc
  2160. 24 5976 387 Sc
  2161. 24 6012 389 Sc
  2162. 24 6048 391 Sc
  2163. 24 6084 392 Sc
  2164. 24 6120 394 Sc
  2165. 24 6156 395 Sc
  2166. 24 6192 396 Sc
  2167. 24 6228 398 Sc
  2168. 24 6264 399 Sc
  2169. 24 6300 400 Sc
  2170. 24 6336 401 Sc
  2171. 24 6372 403 Sc
  2172. 24 6408 404 Sc
  2173. 24 6444 405 Sc
  2174. 24 6480 406 Sc
  2175. 24 6516 407 Sc
  2176. 24 6552 408 Sc
  2177. 24 6588 409 Sc
  2178. 24 6624 410 Sc
  2179. 24 6660 411 Sc
  2180. 24 6696 411 Sc
  2181. 24 6732 412 Sc
  2182. 24 6768 413 Sc
  2183. 24 6804 414 Sc
  2184. 24 6840 415 Sc
  2185. 24 6876 415 Sc
  2186. 24 6912 416 Sc
  2187. 24 6948 417 Sc
  2188. 24 6984 417 Sc
  2189. 24 7020 418 Sc
  2190. 24 7056 419 Sc
  2191. 24 7092 419 Sc
  2192. 24 7128 420 Sc
  2193. 24 7164 421 Sc
  2194. 24 7200 421 Sc
  2195. U
  2196. PSL_cliprestore
  2197. %%EndObject
  2198. 0 A
  2199. FQ
  2200. O0
  2201. 0 0 TM
  2202. % PostScript produced by:
  2203. %@GMT: gmt psxy -R-25/25/-10/50 -JX6i/2.25i -O -K vgg.txt -W0.5p,blue
  2204. %@PROJ: xy -25.00000000 25.00000000 -10.00000000 50.00000000 -25.000 25.000 -10.000 50.000 +xy
  2205. %%BeginObject PSL_Layer_10
  2206. 0 setlinecap
  2207. 0 setlinejoin
  2208. 3.32551 setmiterlimit
  2209. 8 W
  2210. 0 0 1 C
  2211. clipsave
  2212. 0 0 M
  2213. 7200 0 D
  2214. 0 2700 D
  2215. -7200 0 D
  2216. P
  2217. PSL_clip N
  2218. 0 421 M
  2219. 468 -9 D
  2220. 360 -9 D
  2221. 360 -14 D
  2222. 252 -13 D
  2223. 288 -21 D
  2224. 180 -18 D
  2225. 180 -21 D
  2226. 180 -28 D
  2227. 108 -19 D
  2228. 216 -43 D
  2229. 108 -22 D
  2230. 72 -11 D
  2231. 72 -5 D
  2232. 36 1 D
  2233. 36 4 D
  2234. 36 9 D
  2235. 36 15 D
  2236. 36 22 D
  2237. 36 31 D
  2238. 36 44 D
  2239. 36 59 D
  2240. 36 77 D
  2241. 36 99 D
  2242. 36 124 D
  2243. 36 153 D
  2244. 36 182 D
  2245. 36 212 D
  2246. 36 236 D
  2247. 72 503 D
  2248. 36 232 D
  2249. 36 188 D
  2250. 36 124 D
  2251. 36 43 D
  2252. 36 -43 D
  2253. 36 -124 D
  2254. 36 -188 D
  2255. 36 -232 D
  2256. 72 -503 D
  2257. 36 -236 D
  2258. 36 -212 D
  2259. 36 -182 D
  2260. 36 -153 D
  2261. 36 -124 D
  2262. 36 -99 D
  2263. 36 -77 D
  2264. 36 -59 D
  2265. 36 -44 D
  2266. 36 -31 D
  2267. 36 -22 D
  2268. 36 -15 D
  2269. 36 -9 D
  2270. 36 -4 D
  2271. 36 -1 D
  2272. 72 5 D
  2273. 72 11 D
  2274. 324 65 D
  2275. 180 31 D
  2276. 108 16 D
  2277. 252 29 D
  2278. 180 16 D
  2279. 288 19 D
  2280. 288 14 D
  2281. 468 15 D
  2282. 468 10 D
  2283. 144 2 D
  2284. S
  2285. PSL_cliprestore
  2286. %%EndObject
  2287. 0 A
  2288. FQ
  2289. O0
  2290. 0 0 TM
  2291. % PostScript produced by:
  2292. %@GMT: gmt pstext -R-25/25/-10/50 -JX6i/2.25i -O -K -F+f14p+cTR+jTR -Dj0.1i
  2293. %@PROJ: xy -25.00000000 25.00000000 -10.00000000 50.00000000 -25.000 25.000 -10.000 50.000 +xy
  2294. %%BeginObject PSL_Layer_11
  2295. 0 setlinecap
  2296. 0 setlinejoin
  2297. 3.32551 setmiterlimit
  2298. clipsave
  2299. 0 0 M
  2300. 7200 0 D
  2301. 0 2700 D
  2302. -7200 0 D
  2303. P
  2304. PSL_clip N
  2305. 7080 2580 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2306. 233 F0
  2307. (VGG) tr Z
  2308. PSL_cliprestore
  2309. %%EndObject
  2310. 0 A
  2311. FQ
  2312. O0
  2313. 0 0 TM
  2314. % PostScript produced by:
  2315. %@GMT: gmt psxy -R-25/25/-10/50 -JX6i/2.25i -O -T
  2316. %@PROJ: xy -25.00000000 25.00000000 -10.00000000 50.00000000 -25.000 25.000 -10.000 50.000 +xy
  2317. %%BeginObject PSL_Layer_12
  2318. 0 setlinecap
  2319. 0 setlinejoin
  2320. 3.32551 setmiterlimit
  2321. %%EndObject
  2322. grestore
  2323. PSL_movie_completion /PSL_movie_completion {} def
  2324. %PSL_Begin_Trailer
  2325. %%PageTrailer
  2326. U
  2327. showpage
  2328. %%Trailer
  2329. end
  2330. %%EOF
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...