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
%!PS-Adobe-3.0
%%BoundingBox: 0 0 612 792
%%HiResBoundingBox: 0 0 612.0000 792.0000
%%Title: GMT v6.0.0_1ded948 [64-bit] Document from psbasemap
%%Creator: GMT6
%%For: unknown
%%DocumentNeededResources: font Helvetica
%%CreationDate: Thu Dec 6 10:51:35 2018
%%LanguageLevel: 2
%%DocumentData: Clean7Bit
%%Orientation: Portrait
%%Pages: 1
%%EndComments
%%BeginProlog
250 dict begin
/! {bind def} bind def
/# {load def}!
/A /setgray #
/B /setdash #
/C /setrgbcolor #
/D /rlineto #
/E {dup stringwidth pop}!
/F /fill #
/G /rmoveto #
/H /sethsbcolor #
/I /setpattern #
/K /setcmykcolor #
/L /lineto #
/M /moveto #
/N /newpath #
/P /closepath #
/R /rotate #
/S /stroke #
/T /translate #
/U /grestore #
/V /gsave #
/W /setlinewidth #
/Y {findfont exch scalefont setfont}!
/Z /show #
/FP {true charpath flattenpath}!
/MU {matrix setmatrix}!
/MS {/SMat matrix currentmatrix def}!
/MR {SMat setmatrix}!
/edef {exch def}!
/FS {/fc edef /fs {V fc F U} def}!
/FQ {/fs {} def}!
/O0 {/os {N} def}!
/O1 {/os {P S} def}!
/FO {fs os}!
/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}!
/Sb {M dup 0 D exch 0 exch D neg 0 D FO}!
/SB {MS T /BoxR edef /BoxW edef /BoxH edef BoxR 0 M
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}!
/Sc {N 3 -1 roll 0 360 arc FO}!
/Sd {M 4 {dup} repeat 0 G neg dup dup D exch D D FO}!
/Se {N MS T R scale 0 0 1 0 360 arc MR FO}!
/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}!
/Sh {M MS dup 0 G -120 R dup 0 D 4 {-60 R dup 0 D} repeat pop MR FO}!
/Si {M MS dup neg 0 exch G 60 R 1.732050808 mul dup 0 D 120 R 0 D MR FO}!
/Sj {M MS R dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D MR FO}!
/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}!
/Sp {N 3 -1 roll 0 360 arc fs N}!
/SP {M {D} repeat FO}!
/Sr {M dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D FO}!
/SR {MS T /BoxR edef /BoxW edef /BoxH edef BoxR BoxW -2 div BoxH -2 div T BoxR 0 M
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}!
/Ss {M 1.414213562 mul dup dup dup -2 div dup G 0 D 0 exch D neg 0 D FO}!
/St {M MS dup 0 exch G -60 R 1.732050808 mul dup 0 D -120 R 0 D MR FO}!
/SV {0 exch M 0 D D D D D 0 D FO}!
/Sv {0 0 M D D 0 D D D D D 0 D D FO}!
/Sw {2 copy M 5 2 roll arc FO}!
/Sx {M 1.414213562 mul 5 {dup} repeat -2 div dup G D neg 0 G neg D S}!
/Sy {M dup 0 exch G dup -2 mul dup 0 exch D S}!
/S+ {M dup 0 G dup -2 mul dup 0 D exch dup G 0 exch D S}!
/S- {M dup 0 G dup -2 mul dup 0 D S}!
/sw {stringwidth pop}!
/sh {V MU 0 0 M FP pathbbox N 4 1 roll pop pop pop U}!
/sd {V MU 0 0 M FP pathbbox N pop pop exch pop U}!
/sH {V MU 0 0 M FP pathbbox N exch pop exch sub exch pop U}!
/sb {E exch sh}!
/bl {}!
/bc {E -2 div 0 G}!
/br {E neg 0 G}!
/ml {dup 0 exch sh -2 div G}!
/mc {dup E -2 div exch sh -2 div G}!
/mr {dup E neg exch sh -2 div G}!
/tl {dup 0 exch sh neg G}!
/tc {dup E -2 div exch sh neg G}!
/tr {dup E neg exch sh neg G}!
/mx {2 copy lt {exch} if pop}!
/PSL_xorig 0 def /PSL_yorig 0 def
/TM {2 copy T PSL_yorig add /PSL_yorig edef PSL_xorig add /PSL_xorig edef}!
/PSL_reencode {findfont dup length dict begin
{1 index /FID ne {def}{pop pop} ifelse} forall
exch /Encoding edef currentdict end definefont pop
}!
/PSL_eps_begin {
/PSL_eps_state save def
/PSL_dict_count countdictstack def
/PSL_op_count count 1 sub def
userdict begin
/showpage {} def
0 setgray 0 setlinecap 1 setlinewidth
0 setlinejoin 10 setmiterlimit [] 0 setdash newpath
/languagelevel where
{pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if
}!
/PSL_eps_end {
count PSL_op_count sub {pop} repeat
countdictstack PSL_dict_count sub {end} repeat
PSL_eps_state restore
}!
/PSL_transp {
/.setopacityalpha where {pop .setblendmode .setopacityalpha}{
/pdfmark where {pop [ /BM exch /CA exch dup /ca exch /SetTransparency pdfmark}
{pop pop} ifelse} ifelse
}!
/Standard+_Encoding [
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
/.notdef /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
/parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
/zero /one /two /three /four /five /six /seven
/eight /nine /colon /semicolon /less /equal /greater /question
/at /A /B /C /D /E /F /G
/H /I /J /K /L /M /N /O
/P /Q /R /S /T /U /V /W
/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
/quoteleft /a /b /c /d /e /f /g
/h /i /j /k /l /m /n /o
/p /q /r /s /t /u /v /w
/x /y /z /braceleft /bar /braceright /asciitilde /florin
/Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
/Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
/divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
/onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
/.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
/currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
/Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
/quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
/Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
/dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
/emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
/Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
/acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
/egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
/oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
/udieresis /oslash /oe /germandbls /ugrave /Aring /aring /ydieresis
] def
/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
/F0 {/Helvetica Y}!
/F1 {/Helvetica-Bold Y}!
/F2 {/Helvetica-Oblique Y}!
/F3 {/Helvetica-BoldOblique Y}!
/F4 {/Times-Roman Y}!
/F5 {/Times-Bold Y}!
/F6 {/Times-Italic Y}!
/F7 {/Times-BoldItalic Y}!
/F8 {/Courier Y}!
/F9 {/Courier-Bold Y}!
/F10 {/Courier-Oblique Y}!
/F11 {/Courier-BoldOblique Y}!
/F12 {/Symbol Y}!
/F13 {/AvantGarde-Book Y}!
/F14 {/AvantGarde-BookOblique Y}!
/F15 {/AvantGarde-Demi Y}!
/F16 {/AvantGarde-DemiOblique Y}!
/F17 {/Bookman-Demi Y}!
/F18 {/Bookman-DemiItalic Y}!
/F19 {/Bookman-Light Y}!
/F20 {/Bookman-LightItalic Y}!
/F21 {/Helvetica-Narrow Y}!
/F22 {/Helvetica-Narrow-Bold Y}!
/F23 {/Helvetica-Narrow-Oblique Y}!
/F24 {/Helvetica-Narrow-BoldOblique Y}!
/F25 {/NewCenturySchlbk-Roman Y}!
/F26 {/NewCenturySchlbk-Italic Y}!
/F27 {/NewCenturySchlbk-Bold Y}!
/F28 {/NewCenturySchlbk-BoldItalic Y}!
/F29 {/Palatino-Roman Y}!
/F30 {/Palatino-Italic Y}!
/F31 {/Palatino-Bold Y}!
/F32 {/Palatino-BoldItalic Y}!
/F33 {/ZapfChancery-MediumItalic Y}!
/F34 {/ZapfDingbats Y}!
/F35 {/Ryumin-Light-EUC-H Y}!
/F36 {/Ryumin-Light-EUC-V Y}!
/F37 {/GothicBBB-Medium-EUC-H Y}!
/F38 {/GothicBBB-Medium-EUC-V Y}!
/PSL_pathtextdict 26 dict def
/PSL_pathtext
{PSL_pathtextdict begin
/ydepth exch def
/textheight exch def
/just exch def
/offset exch def
/str exch def
/pathdist 0 def
/setdist offset def
/charcount 0 def
/justy just 4 idiv textheight mul 2 div neg ydepth sub def
V flattenpath
{movetoproc} {linetoproc}
{curvetoproc} {closepathproc}
pathforall
U N
end
} def
PSL_pathtextdict begin
/movetoproc
{ /newy exch def /newx exch def
/firstx newx def /firsty newy def
/ovr 0 def
newx newy transform
/cpy exch def /cpx exch def
} def
/linetoproc
{ /oldx newx def /oldy newy def
/newy exch def /newx exch def
/dx newx oldx sub def
/dy newy oldy sub def
/dist dx dup mul dy dup mul add sqrt def
dist 0 ne
{ /dsx dx dist div ovr mul def
/dsy dy dist div ovr mul def
oldx dsx add oldy dsy add transform
/cpy exch def /cpx exch def
/pathdist pathdist dist add def
{setdist pathdist le
{charcount str length lt
{setchar} {exit} ifelse}
{ /ovr setdist pathdist sub def
exit}
ifelse
} loop
} if
} def
/curvetoproc
{ (ERROR: No curveto's after flattenpath!)
print
} def
/closepathproc
{firstx firsty linetoproc
firstx firsty movetoproc
} def
/setchar
{ /char str charcount 1 getinterval def
/charcount charcount 1 add def
/charwidth char stringwidth pop def
V cpx cpy itransform T
dy dx atan R
0 justy M
char show
0 justy neg G
currentpoint transform
/cpy exch def /cpx exch def
U /setdist setdist charwidth add def
} def
end
/PSL_set_label_heights
{
/PSL_n_labels_minus_1 PSL_n_labels 1 sub def
/PSL_heights PSL_n_labels array def
0 1 PSL_n_labels_minus_1
{ /psl_k exch def
/psl_label PSL_label_str psl_k get def
PSL_label_font psl_k get cvx exec
psl_label sH /PSL_height edef
PSL_heights psl_k PSL_height put
} for
} def
/PSL_curved_path_labels
{ /psl_bits exch def
/PSL_placetext psl_bits 2 and 2 eq def
/PSL_clippath psl_bits 4 and 4 eq def
/PSL_strokeline false def
/PSL_fillbox psl_bits 128 and 128 eq def
/PSL_drawbox psl_bits 256 and 256 eq def
/PSL_n_paths1 PSL_n_paths 1 sub def
/PSL_usebox PSL_fillbox PSL_drawbox or def
PSL_clippath {clipsave N clippath} if
/psl_k 0 def
/psl_p 0 def
0 1 PSL_n_paths1
{ /psl_kk exch def
/PSL_n PSL_path_n psl_kk get def
/PSL_m PSL_label_n psl_kk get def
/PSL_x PSL_path_x psl_k PSL_n getinterval def
/PSL_y PSL_path_y psl_k PSL_n getinterval def
/PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
/PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
/PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
/PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
PSL_curved_path_label
/psl_k psl_k PSL_n add def
/psl_p psl_p PSL_m add def
} for
PSL_clippath {PSL_eoclip} if N
} def
/PSL_curved_path_label
{
/PSL_n1 PSL_n 1 sub def
/PSL_m1 PSL_m 1 sub def
PSL_CT_calcstringwidth
PSL_CT_calclinedist
PSL_CT_excludelabels
PSL_CT_addcutpoints
/PSL_nn1 PSL_nn 1 sub def
/n 0 def
/k 0 def
/j 0 def
/PSL_seg 0 def
/PSL_xp PSL_nn array def
/PSL_yp PSL_nn array def
PSL_xp 0 PSL_xx 0 get put
PSL_yp 0 PSL_yy 0 get put
1 1 PSL_nn1
{ /i exch def
/node_type PSL_kind i get def
/j j 1 add def
PSL_xp j PSL_xx i get put
PSL_yp j PSL_yy i get put
node_type 1 eq
{n 0 eq
{PSL_CT_drawline}
{ PSL_CT_reversepath
PSL_CT_textline} ifelse
/j 0 def
PSL_xp j PSL_xx i get put
PSL_yp j PSL_yy i get put
} if
} for
n 0 eq {PSL_CT_drawline} if
} def
/PSL_CT_textline
{ /psl_fnt PSL_fnt k get def
psl_fnt (FS) search {pop pop pop /PSL_fmode 2 def} {pop /PSL_fmode 1 def} ifelse
psl_fnt cvx exec
/PSL_height PSL_heights k get def
PSL_placetext {PSL_CT_placelabel} if
PSL_clippath {PSL_CT_clippath} if
/n 0 def /k k 1 add def
} def
/PSL_CT_calcstringwidth
{ /PSL_width_tmp PSL_m array def
0 1 PSL_m1
{ /i exch def
PSL_fnt_tmp i get cvx exec
PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
} for
} def
/PSL_CT_calclinedist
{ /PSL_newx PSL_x 0 get def
/PSL_newy PSL_y 0 get def
/dist 0.0 def
/PSL_dist PSL_n array def
PSL_dist 0 0.0 put
1 1 PSL_n1
{ /i exch def
/PSL_oldx PSL_newx def
/PSL_oldy PSL_newy def
/PSL_newx PSL_x i get def
/PSL_newy PSL_y i get def
/dx PSL_newx PSL_oldx sub def
/dy PSL_newy PSL_oldy sub def
/dist dist dx dx mul dy dy mul add sqrt add def
PSL_dist i dist put
} for
} def
/PSL_CT_excludelabels
{ /k 0 def
/PSL_width PSL_m array def
/PSL_angle PSL_m array def
/PSL_node PSL_m array def
/PSL_str PSL_m array def
/PSL_fnt PSL_m array def
/lastdist PSL_dist PSL_n1 get def
0 1 PSL_m1
{ /i exch def
/dist PSL_dist PSL_node_tmp i get get def
/halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
/L_dist dist halfwidth sub def
/R_dist dist halfwidth add def
L_dist 0 gt R_dist lastdist lt and
{
PSL_width k PSL_width_tmp i get put
PSL_node k PSL_node_tmp i get put
PSL_angle k PSL_angle_tmp i get put
PSL_str k PSL_str_tmp i get put
PSL_fnt k PSL_fnt_tmp i get put
/k k 1 add def
} if
} for
/PSL_m k def
/PSL_m1 PSL_m 1 sub def
} def
/PSL_CT_addcutpoints
{ /k 0 def
/PSL_nc PSL_m 2 mul 1 add def
/PSL_cuts PSL_nc array def
/PSL_nc1 PSL_nc 1 sub def
0 1 PSL_m1
{ /i exch def
/dist PSL_dist PSL_node i get get def
/halfwidth PSL_width i get 2 div PSL_gap_x add def
PSL_cuts k dist halfwidth sub put
/k k 1 add def
PSL_cuts k dist halfwidth add put
/k k 1 add def
} for
PSL_cuts k 100000.0 put
/PSL_nn PSL_n PSL_m 2 mul add def
/PSL_xx PSL_nn array def
/PSL_yy PSL_nn array def
/PSL_kind PSL_nn array def
/j 0 def
/k 0 def
/dist 0.0 def
0 1 PSL_n1
{ /i exch def
/last_dist dist def
/dist PSL_dist i get def
k 1 PSL_nc1
{ /kk exch def
/this_cut PSL_cuts kk get def
dist this_cut gt
{ /ds dist last_dist sub def
/f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
/i1 i 0 eq {0} {i 1 sub} ifelse def
PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
PSL_kind j 1 put
/j j 1 add def
/k k 1 add def
} if
} for
dist PSL_cuts k get le
{PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
PSL_kind j 0 put
/j j 1 add def
} if
} for
} def
/PSL_CT_reversepath
{PSL_xp j get PSL_xp 0 get lt
{0 1 j 2 idiv
{ /left exch def
/right j left sub def
/tmp PSL_xp left get def
PSL_xp left PSL_xp right get put
PSL_xp right tmp put
/tmp PSL_yp left get def
PSL_yp left PSL_yp right get put
PSL_yp right tmp put
} for
} if
} def
/PSL_CT_placelabel
{
/PSL_just PSL_label_justify k get def
/PSL_height PSL_heights k get def
/psl_label PSL_str k get def
/psl_depth psl_label sd def
PSL_usebox
{PSL_CT_clippath
PSL_fillbox
{V PSL_setboxrgb fill U} if
PSL_drawbox
{V PSL_setboxpen S U} if N
} if
PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
} def
/PSL_CT_clippath
{
/H PSL_height 2 div PSL_gap_y add def
/xoff j 1 add array def
/yoff j 1 add array def
/angle 0 def
0 1 j {
/ii exch def
/x PSL_xp ii get def
/y PSL_yp ii get def
ii 0 eq {
/x1 PSL_xp 1 get def
/y1 PSL_yp 1 get def
/dx x1 x sub def
/dy y1 y sub def
}
{ /i1 ii 1 sub def
/x1 PSL_xp i1 get def
/y1 PSL_yp i1 get def
/dx x x1 sub def
/dy y y1 sub def
} ifelse
dx 0.0 eq dy 0.0 eq and not
{ /angle dy dx atan 90 add def} if
/sina angle sin def
/cosa angle cos def
xoff ii H cosa mul put
yoff ii H sina mul put
} for
PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
1 1 j {
/ii exch def
PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
} for
j -1 0 {
/ii exch def
PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
} for P
} def
/PSL_CT_drawline
{
/str 20 string def
PSL_strokeline
{PSL_CT_placeline S} if
/PSL_seg PSL_seg 1 add def
/n 1 def
} def
/PSL_CT_placeline
{PSL_xp 0 get PSL_yp 0 get M
1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
} def
/PSL_draw_path_lines
{
/PSL_n_paths1 PSL_n_paths 1 sub def
V
/psl_start 0 def
0 1 PSL_n_paths1
{ /psl_k exch def
/PSL_n PSL_path_n psl_k get def
/PSL_n1 PSL_n 1 sub def
PSL_path_pen psl_k get cvx exec
N
PSL_path_x psl_start get PSL_path_y psl_start get M
1 1 PSL_n1
{ /psl_i exch def
/psl_kk psl_i psl_start add def
PSL_path_x psl_kk get PSL_path_y psl_kk get L
} for
/psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
/psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
psl_xclose 0 eq psl_yclose 0 eq and { P } if
S
/psl_start psl_start PSL_n add def
} for
U
} def
/PSL_straight_path_labels
{
/psl_bits exch def
/PSL_placetext psl_bits 2 and 2 eq def
/PSL_rounded psl_bits 32 and 32 eq def
/PSL_fillbox psl_bits 128 and 128 eq def
/PSL_drawbox psl_bits 256 and 256 eq def
/PSL_n_labels_minus_1 PSL_n_labels 1 sub def
/PSL_usebox PSL_fillbox PSL_drawbox or def
0 1 PSL_n_labels_minus_1
{ /psl_k exch def
PSL_ST_prepare_text
PSL_usebox
{ PSL_rounded
{PSL_ST_textbox_round}
{PSL_ST_textbox_rect}
ifelse
PSL_fillbox {V PSL_setboxrgb fill U} if
PSL_drawbox {V PSL_setboxpen S U} if
N
} if
PSL_placetext {PSL_ST_place_label} if
} for
} def
/PSL_straight_path_clip
{
/psl_bits exch def
/PSL_rounded psl_bits 32 and 32 eq def
/PSL_n_labels_minus_1 PSL_n_labels 1 sub def
N clipsave clippath
0 1 PSL_n_labels_minus_1
{ /psl_k exch def
PSL_ST_prepare_text
PSL_rounded
{PSL_ST_textbox_round}
{PSL_ST_textbox_rect}
ifelse
} for
PSL_eoclip N
} def
/PSL_ST_prepare_text
{
/psl_xp PSL_txt_x psl_k get def
/psl_yp PSL_txt_y psl_k get def
/psl_label PSL_label_str psl_k get def
/psl_fnt PSL_label_font psl_k get def
psl_fnt cvx exec
psl_fnt (FS) search {pop pop pop /PSL_fmode 2 def} {pop /PSL_fmode 1 def} ifelse
/PSL_height PSL_heights psl_k get def
/psl_boxH PSL_height PSL_gap_y 2 mul add def
/PSL_just PSL_label_justify psl_k get def
/PSL_justx PSL_just 4 mod 1 sub 2 div neg def
/PSL_justy PSL_just 4 idiv 2 div neg def
/psl_SW psl_label stringwidth pop def
/psl_boxW psl_SW PSL_gap_x 2 mul add def
/psl_x0 psl_SW PSL_justx mul def
/psl_y0 PSL_justy PSL_height mul def
/psl_angle PSL_label_angle psl_k get def
} def
/PSL_ST_textbox_rect
{
psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
PSL_gap_x neg PSL_gap_y neg M
0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
} def
/PSL_ST_textbox_round
{
/psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
/psl_xd PSL_gap_x psl_BoxR sub def
/psl_yd PSL_gap_y psl_BoxR sub def
/psl_xL PSL_gap_x neg def
/psl_yB PSL_gap_y neg def
/psl_yT psl_boxH psl_yB add def
/psl_H2 PSL_height psl_yd 2 mul add def
/psl_W2 psl_SW psl_xd 2 mul add def
/psl_xR psl_xL psl_boxW add def
/psl_x0 psl_SW PSL_justx mul def
psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
psl_xL psl_yd M
psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
} def
/PSL_ST_place_label
{
V psl_xp psl_yp T psl_angle R
psl_SW PSL_justx mul psl_y0 M
psl_label dup sd neg 0 exch G
PSL_fmode 1 eq {show} {false charpath V S U fs N} ifelse
U
} def
/PSL_nclip 0 def
/PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
/PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
/PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
%%EndProlog
%%BeginSetup
/PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
V 0.06 0.06 scale
%%EndPageSetup
/PSL_page_xsize 10200 def
/PSL_page_ysize 13200 def
/PSL_completion {} def
/PSL_movie_completion {} def
%PSL_End_Header
gsave
0 A
FQ
O0
-3600 PSL_xorig sub PSL_page_xsize 2 div add 4800 TM
% PostScript produced by:
%@GMT: gmt psbasemap -R-25/25/-5/120 -JX6i/6i -P -K -Xc -Y4i -Bxafg1000 '-Byafg1000+lmGal or Eotvos' '-BWsn+tTesting FAA, VGG and Geoid over sphere'
%@PROJ: xy -25.00000000 25.00000000 -5.00000000 120.00000000 -25.000 25.000 -5.000 120.000 +xy
%GMTBoundingBox: -216 288 432 432
%%BeginObject PSL_Layer_1
0 setlinecap
0 setlinejoin
3.32551 setmiterlimit
25 W
4 W
3600 0 M
0 7200 D
S
0 288 M
7200 0 D
S
2 setlinecap
25 W
N 0 7200 M 0 -7200 D S
/PSL_A0_y 83 def
/PSL_A1_y 0 def
8 W
N 0 288 M -83 0 D S
N 0 1440 M -83 0 D S
N 0 2592 M -83 0 D S
N 0 3744 M -83 0 D S
N 0 4896 M -83 0 D S
N 0 6048 M -83 0 D S
N 0 7200 M -83 0 D S
/PSL_AH0 0
/MM {neg exch M} def
PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
200 F0
(0) sw mx
(20) sw mx
(40) sw mx
(60) sw mx
(80) sw mx
(100) sw mx
(120) sw mx
def
/PSL_A0_y PSL_A0_y 83 add def
288 PSL_A0_y MM
(0) mr Z
1440 PSL_A0_y MM
(20) mr Z
2592 PSL_A0_y MM
(40) mr Z
3744 PSL_A0_y MM
(60) mr Z
4896 PSL_A0_y MM
(80) mr Z
6048 PSL_A0_y MM
(100) mr Z
7200 PSL_A0_y MM
(120) mr Z
/PSL_A0_y PSL_A0_y PSL_AH0 add def
N 0 864 M -42 0 D S
N 0 2016 M -42 0 D S
N 0 3168 M -42 0 D S
N 0 4320 M -42 0 D S
N 0 5472 M -42 0 D S
N 0 6624 M -42 0 D S
/PSL_LH 267 F0
(M) sh def
/PSL_L_y PSL_A0_y PSL_A1_y mx 133 add def
3600 PSL_L_y MM
V 90 R (mGal or Eotvos) bc Z U
25 W
N 0 0 M 7200 0 D S
/PSL_A0_y 83 def
/PSL_A1_y 0 def
8 W
N 720 0 M 0 -83 D S
N 2160 0 M 0 -83 D S
N 3600 0 M 0 -83 D S
N 5040 0 M 0 -83 D S
N 6480 0 M 0 -83 D S
N 144 0 M 0 -42 D S
N 432 0 M 0 -42 D S
N 1008 0 M 0 -42 D S
N 1296 0 M 0 -42 D S
N 1584 0 M 0 -42 D S
N 1872 0 M 0 -42 D S
N 2448 0 M 0 -42 D S
N 2736 0 M 0 -42 D S
N 3024 0 M 0 -42 D S
N 3312 0 M 0 -42 D S
N 3888 0 M 0 -42 D S
N 4176 0 M 0 -42 D S
N 4464 0 M 0 -42 D S
N 4752 0 M 0 -42 D S
N 5328 0 M 0 -42 D S
N 5616 0 M 0 -42 D S
N 5904 0 M 0 -42 D S
N 6192 0 M 0 -42 D S
N 6768 0 M 0 -42 D S
N 7056 0 M 0 -42 D S
/PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
0 7200 T
25 W
N 0 0 M 7200 0 D S
/PSL_A0_y 83 def
/PSL_A1_y 0 def
8 W
N 720 0 M 0 83 D S
N 2160 0 M 0 83 D S
N 3600 0 M 0 83 D S
N 5040 0 M 0 83 D S
N 6480 0 M 0 83 D S
N 144 0 M 0 42 D S
N 432 0 M 0 42 D S
N 1008 0 M 0 42 D S
N 1296 0 M 0 42 D S
N 1584 0 M 0 42 D S
N 1872 0 M 0 42 D S
N 2448 0 M 0 42 D S
N 2736 0 M 0 42 D S
N 3024 0 M 0 42 D S
N 3312 0 M 0 42 D S
N 3888 0 M 0 42 D S
N 4176 0 M 0 42 D S
N 4464 0 M 0 42 D S
N 4752 0 M 0 42 D S
N 5328 0 M 0 42 D S
N 5616 0 M 0 42 D S
N 5904 0 M 0 42 D S
N 6192 0 M 0 42 D S
N 6768 0 M 0 42 D S
N 7056 0 M 0 42 D S
/PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
0 -7200 T
0 setlinecap
/PSL_H_y PSL_L_y PSL_LH add 233 add def
3600 7200 PSL_H_y add M
400 F0
(Testing FAA, VGG and Geoid over sphere) bc Z
%%EndObject
0 A
FQ
O0
0 0 TM
% PostScript produced by:
%@GMT: gmt psxy -R-25/25/-5/120 -JX6i/6i -W0.25p,red -O -K s_g.txt
%@PROJ: xy -25.00000000 25.00000000 -5.00000000 120.00000000 -25.000 25.000 -5.000 120.000 +xy
%%BeginObject PSL_Layer_2
0 setlinecap
0 setlinejoin
3.32551 setmiterlimit
4 W
1 0 0 C
0 293 M
648 4 D
461 6 D
374 9 D
259 11 D
159 9 D
173 15 D
144 17 D
144 25 D
86 19 D
101 29 D
72 26 D
72 32 D
43 22 D
58 35 D
57 41 D
29 23 D
43 38 D
29 28 D
58 64 D
43 54 D
43 61 D
58 91 D
72 128 D
86 170 D
72 142 D
43 77 D
29 47 D
29 40 D
14 17 D
29 28 D
14 11 D
15 9 D
14 6 D
15 4 D
14 1 D
14 -1 D
15 -4 D
14 -6 D
15 -9 D
14 -11 D
29 -28 D
29 -37 D
28 -43 D
44 -75 D
72 -139 D
57 -115 D
58 -111 D
57 -101 D
58 -91 D
43 -61 D
43 -54 D
58 -64 D
43 -41 D
43 -37 D
44 -32 D
28 -20 D
58 -35 D
58 -29 D
57 -25 D
72 -26 D
101 -29 D
115 -25 D
130 -21 D
129 -15 D
130 -11 D
58 -5 D
216 -12 D
302 -10 D
346 -7 D
446 -5 D
576 -4 D
S
%%EndObject
0 A
FQ
O0
0 0 TM
% PostScript produced by:
%@GMT: gmt psxy -R-25/25/-5/120 -JX6i/6i -W0.25p,blue -O -K s_v.txt
%@PROJ: xy -25.00000000 25.00000000 -5.00000000 120.00000000 -25.000 25.000 -5.000 120.000 +xy
%%BeginObject PSL_Layer_3
0 setlinecap
0 setlinejoin
3.32551 setmiterlimit
4 W
0 0 1 C
0 276 M
490 -6 D
446 -9 D
418 -15 D
244 -13 D
173 -11 D
288 -25 D
259 -24 D
101 -5 D
87 1 D
57 6 D
58 13 D
29 9 D
28 12 D
44 25 D
28 21 D
29 27 D
15 15 D
43 56 D
29 48 D
43 89 D
29 75 D
28 89 D
15 50 D
29 114 D
43 209 D
29 168 D
43 304 D
29 240 D
43 422 D
29 324 D
43 550 D
43 620 D
72 1130 D
43 678 D
43 616 D
29 347 D
29 278 D
14 108 D
15 86 D
14 62 D
15 37 D
14 13 D
14 -13 D
15 -37 D
14 -62 D
15 -86 D
14 -108 D
29 -278 D
29 -347 D
43 -616 D
115 -1808 D
43 -620 D
43 -550 D
29 -324 D
43 -422 D
29 -240 D
43 -304 D
29 -168 D
43 -209 D
29 -114 D
29 -97 D
14 -42 D
29 -75 D
43 -89 D
29 -48 D
43 -56 D
29 -29 D
29 -24 D
29 -19 D
29 -16 D
43 -17 D
57 -14 D
29 -5 D
43 -4 D
101 -1 D
115 7 D
389 36 D
259 20 D
303 16 D
417 14 D
389 8 D
475 6 D
58 1 D
S
%%EndObject
0 A
FQ
O0
0 0 TM
% PostScript produced by:
%@GMT: gmt psxy -R-25/25/-5/120 -JX6i/6i faa.txt -Sc0.02i -Gred -O -K
%@PROJ: xy -25.00000000 25.00000000 -5.00000000 120.00000000 -25.000 25.000 -5.000 120.000 +xy
%%BeginObject PSL_Layer_4
0 setlinecap
0 setlinejoin
3.32551 setmiterlimit
clipsave
0 0 M
7200 0 D
0 7200 D
-7200 0 D
P
PSL_clip N
4 W
V
{1 0 0 C} FS
12 0 293 Sc
12 29 293 Sc
12 58 294 Sc
12 86 294 Sc
12 115 294 Sc
12 144 294 Sc
12 173 294 Sc
12 202 294 Sc
12 230 294 Sc
12 259 295 Sc
12 288 295 Sc
12 317 295 Sc
12 346 295 Sc
12 374 295 Sc
12 403 295 Sc
12 432 296 Sc
12 461 296 Sc
12 490 296 Sc
12 518 296 Sc
12 547 297 Sc
12 576 297 Sc
12 605 297 Sc
12 634 297 Sc
12 662 298 Sc
12 691 298 Sc
12 720 298 Sc
12 749 298 Sc
12 778 299 Sc
12 806 299 Sc
12 835 299 Sc
12 864 300 Sc
12 893 300 Sc
12 922 300 Sc
12 950 301 Sc
12 979 301 Sc
12 1008 302 Sc
12 1037 302 Sc
12 1066 303 Sc
12 1094 303 Sc
12 1123 304 Sc
12 1152 304 Sc
12 1181 305 Sc
12 1210 305 Sc
12 1238 306 Sc
12 1267 306 Sc
12 1296 307 Sc
12 1325 308 Sc
12 1354 309 Sc
12 1382 309 Sc
12 1411 310 Sc
12 1440 311 Sc
12 1469 312 Sc
12 1498 313 Sc
12 1526 314 Sc
12 1555 315 Sc
12 1584 316 Sc
12 1613 317 Sc
12 1642 318 Sc
12 1670 319 Sc
12 1699 321 Sc
12 1728 322 Sc
12 1757 324 Sc
12 1786 325 Sc
12 1814 327 Sc
12 1843 329 Sc
12 1872 330 Sc
12 1901 332 Sc
12 1930 334 Sc
12 1958 337 Sc
12 1987 339 Sc
12 2016 342 Sc
12 2045 344 Sc
12 2074 347 Sc
12 2102 350 Sc
12 2131 353 Sc
12 2160 357 Sc
12 2189 360 Sc
12 2218 364 Sc
12 2246 368 Sc
12 2275 373 Sc
12 2304 378 Sc
12 2333 383 Sc
12 2362 389 Sc
12 2390 395 Sc
12 2419 401 Sc
12 2448 408 Sc
12 2477 415 Sc
12 2506 423 Sc
12 2534 432 Sc
12 2563 442 Sc
12 2592 452 Sc
12 2621 463 Sc
12 2650 475 Sc
12 2678 488 Sc
12 2707 502 Sc
12 2736 517 Sc
12 2765 533 Sc
12 2794 551 Sc
12 2822 571 Sc
12 2851 592 Sc
12 2880 615 Sc
12 2909 640 Sc
12 2938 667 Sc
12 2966 696 Sc
12 2995 728 Sc
12 3024 762 Sc
12 3053 799 Sc
12 3082 839 Sc
12 3110 881 Sc
12 3139 926 Sc
12 3168 975 Sc
12 3197 1025 Sc
12 3226 1078 Sc
12 3254 1133 Sc
12 3283 1190 Sc
12 3312 1248 Sc
12 3341 1305 Sc
12 3370 1361 Sc
12 3398 1416 Sc
12 3427 1467 Sc
12 3456 1513 Sc
12 3485 1553 Sc
12 3514 1585 Sc
12 3542 1609 Sc
12 3571 1624 Sc
12 3600 1629 Sc
12 3629 1624 Sc
12 3658 1609 Sc
12 3686 1585 Sc
12 3715 1553 Sc
12 3744 1513 Sc
12 3773 1467 Sc
12 3802 1416 Sc
12 3830 1361 Sc
12 3859 1305 Sc
12 3888 1248 Sc
12 3917 1190 Sc
12 3946 1133 Sc
12 3974 1078 Sc
12 4003 1025 Sc
12 4032 975 Sc
12 4061 926 Sc
12 4090 881 Sc
12 4118 839 Sc
12 4147 799 Sc
12 4176 762 Sc
12 4205 728 Sc
12 4234 696 Sc
12 4262 667 Sc
12 4291 640 Sc
12 4320 615 Sc
12 4349 592 Sc
12 4378 571 Sc
12 4406 551 Sc
12 4435 533 Sc
12 4464 517 Sc
12 4493 502 Sc
12 4522 488 Sc
12 4550 475 Sc
12 4579 463 Sc
12 4608 452 Sc
12 4637 442 Sc
12 4666 432 Sc
12 4694 423 Sc
12 4723 415 Sc
12 4752 408 Sc
12 4781 401 Sc
12 4810 395 Sc
12 4838 389 Sc
12 4867 383 Sc
12 4896 378 Sc
12 4925 373 Sc
12 4954 368 Sc
12 4982 364 Sc
12 5011 360 Sc
12 5040 357 Sc
12 5069 353 Sc
12 5098 350 Sc
12 5126 347 Sc
12 5155 344 Sc
12 5184 342 Sc
12 5213 339 Sc
12 5242 337 Sc
12 5270 334 Sc
12 5299 332 Sc
12 5328 330 Sc
12 5357 329 Sc
12 5386 327 Sc
12 5414 325 Sc
12 5443 324 Sc
12 5472 322 Sc
12 5501 321 Sc
12 5530 319 Sc
12 5558 318 Sc
12 5587 317 Sc
12 5616 316 Sc
12 5645 315 Sc
12 5674 314 Sc
12 5702 313 Sc
12 5731 312 Sc
12 5760 311 Sc
12 5789 310 Sc
12 5818 309 Sc
12 5846 309 Sc
12 5875 308 Sc
12 5904 307 Sc
12 5933 306 Sc
12 5962 306 Sc
12 5990 305 Sc
12 6019 305 Sc
12 6048 304 Sc
12 6077 304 Sc
12 6106 303 Sc
12 6134 303 Sc
12 6163 302 Sc
12 6192 302 Sc
12 6221 301 Sc
12 6250 301 Sc
12 6278 300 Sc
12 6307 300 Sc
12 6336 300 Sc
12 6365 299 Sc
12 6394 299 Sc
12 6422 299 Sc
12 6451 298 Sc
12 6480 298 Sc
12 6509 298 Sc
12 6538 298 Sc
12 6566 297 Sc
12 6595 297 Sc
12 6624 297 Sc
12 6653 297 Sc
12 6682 296 Sc
12 6710 296 Sc
12 6739 296 Sc
12 6768 296 Sc
12 6797 295 Sc
12 6826 295 Sc
12 6854 295 Sc
12 6883 295 Sc
12 6912 295 Sc
12 6941 295 Sc
12 6970 294 Sc
12 6998 294 Sc
12 7027 294 Sc
12 7056 294 Sc
12 7085 294 Sc
12 7114 294 Sc
12 7142 294 Sc
12 7171 293 Sc
12 7200 293 Sc
U
PSL_cliprestore
%%EndObject
0 A
FQ
O0
0 0 TM
% PostScript produced by:
%@GMT: gmt psxy -R-25/25/-5/120 -JX6i/6i -O -K vgg.txt -Sc0.02i -Gdarkgreen
%@PROJ: xy -25.00000000 25.00000000 -5.00000000 120.00000000 -25.000 25.000 -5.000 120.000 +xy
%%BeginObject PSL_Layer_5
0 setlinecap
0 setlinejoin
3.32551 setmiterlimit
clipsave
0 0 M
7200 0 D
0 7200 D
-7200 0 D
P
PSL_clip N
4 W
V
{0 0.392 0 C} FS
12 0 276 Sc
12 29 275 Sc
12 58 275 Sc
12 86 275 Sc
12 115 275 Sc
12 144 274 Sc
12 173 274 Sc
12 202 274 Sc
12 230 273 Sc
12 259 273 Sc
12 288 273 Sc
12 317 272 Sc
12 346 272 Sc
12 374 271 Sc
12 403 271 Sc
12 432 271 Sc
12 461 270 Sc
12 490 270 Sc
12 518 269 Sc
12 547 269 Sc
12 576 268 Sc
12 605 268 Sc
12 634 267 Sc
12 662 267 Sc
12 691 266 Sc
12 720 266 Sc
12 749 265 Sc
12 778 264 Sc
12 806 264 Sc
12 835 263 Sc
12 864 262 Sc
12 893 262 Sc
12 922 261 Sc
12 950 260 Sc
12 979 259 Sc
12 1008 259 Sc
12 1037 258 Sc
12 1066 257 Sc
12 1094 256 Sc
12 1123 255 Sc
12 1152 254 Sc
12 1181 253 Sc
12 1210 252 Sc
12 1238 251 Sc
12 1267 250 Sc
12 1296 249 Sc
12 1325 247 Sc
12 1354 246 Sc
12 1382 245 Sc
12 1411 243 Sc
12 1440 242 Sc
12 1469 241 Sc
12 1498 239 Sc
12 1526 238 Sc
12 1555 236 Sc
12 1584 234 Sc
12 1613 232 Sc
12 1642 231 Sc
12 1670 229 Sc
12 1699 227 Sc
12 1728 225 Sc
12 1757 223 Sc
12 1786 221 Sc
12 1814 218 Sc
12 1843 216 Sc
12 1872 214 Sc
12 1901 211 Sc
12 1930 209 Sc
12 1958 206 Sc
12 1987 204 Sc
12 2016 201 Sc
12 2045 198 Sc
12 2074 196 Sc
12 2102 193 Sc
12 2131 190 Sc
12 2160 187 Sc
12 2189 185 Sc
12 2218 182 Sc
12 2246 179 Sc
12 2275 177 Sc
12 2304 175 Sc
12 2333 172 Sc
12 2362 171 Sc
12 2390 169 Sc
12 2419 168 Sc
12 2448 168 Sc
12 2477 168 Sc
12 2506 170 Sc
12 2534 172 Sc
12 2563 176 Sc
12 2592 181 Sc
12 2621 188 Sc
12 2650 197 Sc
12 2678 209 Sc
12 2707 225 Sc
12 2736 244 Sc
12 2765 268 Sc
12 2794 297 Sc
12 2822 332 Sc
12 2851 375 Sc
12 2880 427 Sc
12 2909 490 Sc
12 2938 564 Sc
12 2966 652 Sc
12 2995 757 Sc
12 3024 880 Sc
12 3053 1024 Sc
12 3082 1193 Sc
12 3110 1387 Sc
12 3139 1611 Sc
12 3168 1867 Sc
12 3197 2155 Sc
12 3226 2479 Sc
12 3254 2837 Sc
12 3283 3227 Sc
12 3312 3647 Sc
12 3341 4089 Sc
12 3370 4545 Sc
12 3398 5004 Sc
12 3427 5452 Sc
12 3456 5873 Sc
12 3485 6248 Sc
12 3514 6562 Sc
12 3542 6799 Sc
12 3571 6947 Sc
12 3600 6997 Sc
12 3629 6947 Sc
12 3658 6799 Sc
12 3686 6562 Sc
12 3715 6248 Sc
12 3744 5873 Sc
12 3773 5452 Sc
12 3802 5004 Sc
12 3830 4545 Sc
12 3859 4089 Sc
12 3888 3647 Sc
12 3917 3227 Sc
12 3946 2837 Sc
12 3974 2479 Sc
12 4003 2155 Sc
12 4032 1867 Sc
12 4061 1611 Sc
12 4090 1387 Sc
12 4118 1193 Sc
12 4147 1024 Sc
12 4176 880 Sc
12 4205 757 Sc
12 4234 652 Sc
12 4262 564 Sc
12 4291 490 Sc
12 4320 427 Sc
12 4349 375 Sc
12 4378 332 Sc
12 4406 297 Sc
12 4435 268 Sc
12 4464 244 Sc
12 4493 225 Sc
12 4522 209 Sc
12 4550 197 Sc
12 4579 188 Sc
12 4608 181 Sc
12 4637 176 Sc
12 4666 172 Sc
12 4694 170 Sc
12 4723 168 Sc
12 4752 168 Sc
12 4781 168 Sc
12 4810 169 Sc
12 4838 171 Sc
12 4867 172 Sc
12 4896 175 Sc
12 4925 177 Sc
12 4954 179 Sc
12 4982 182 Sc
12 5011 185 Sc
12 5040 187 Sc
12 5069 190 Sc
12 5098 193 Sc
12 5126 196 Sc
12 5155 198 Sc
12 5184 201 Sc
12 5213 204 Sc
12 5242 206 Sc
12 5270 209 Sc
12 5299 211 Sc
12 5328 214 Sc
12 5357 216 Sc
12 5386 218 Sc
12 5414 221 Sc
12 5443 223 Sc
12 5472 225 Sc
12 5501 227 Sc
12 5530 229 Sc
12 5558 231 Sc
12 5587 232 Sc
12 5616 234 Sc
12 5645 236 Sc
12 5674 238 Sc
12 5702 239 Sc
12 5731 241 Sc
12 5760 242 Sc
12 5789 243 Sc
12 5818 245 Sc
12 5846 246 Sc
12 5875 247 Sc
12 5904 249 Sc
12 5933 250 Sc
12 5962 251 Sc
12 5990 252 Sc
12 6019 253 Sc
12 6048 254 Sc
12 6077 255 Sc
12 6106 256 Sc
12 6134 257 Sc
12 6163 258 Sc
12 6192 259 Sc
12 6221 259 Sc
12 6250 260 Sc
12 6278 261 Sc
12 6307 262 Sc
12 6336 262 Sc
12 6365 263 Sc
12 6394 264 Sc
12 6422 264 Sc
12 6451 265 Sc
12 6480 266 Sc
12 6509 266 Sc
12 6538 267 Sc
12 6566 267 Sc
12 6595 268 Sc
12 6624 268 Sc
12 6653 269 Sc
12 6682 269 Sc
12 6710 270 Sc
12 6739 270 Sc
12 6768 271 Sc
12 6797 271 Sc
12 6826 271 Sc
12 6854 272 Sc
12 6883 272 Sc
12 6912 273 Sc
12 6941 273 Sc
12 6970 273 Sc
12 6998 274 Sc
12 7027 274 Sc
12 7056 274 Sc
12 7085 275 Sc
12 7114 275 Sc
12 7142 275 Sc
12 7171 275 Sc
12 7200 276 Sc
U
PSL_cliprestore
%%EndObject
0 A
FQ
O0
0 0 TM
% PostScript produced by:
%@GMT: gmt psxy -R-25/25/0/0.15 -JX6i/6i -O -K s_n.txt -W0.25p,brown -Byafg1000+lm -BE
%@PROJ: xy -25.00000000 25.00000000 0.00000000 0.15000000 -25.000 25.000 0.000 0.150 +xy
%%BeginObject PSL_Layer_6
0 setlinecap
0 setlinejoin
3.32551 setmiterlimit
4 W
0.647 0.165 0.165 C
0 722 M
202 41 D
172 40 D
116 29 D
201 55 D
130 40 D
144 48 D
144 54 D
129 53 D
87 39 D
72 34 D
115 60 D
115 65 D
101 63 D
86 59 D
87 65 D
72 57 D
72 63 D
57 53 D
44 42 D
72 75 D
86 98 D
58 71 D
72 97 D
43 61 D
86 134 D
58 98 D
72 132 D
72 145 D
72 159 D
43 102 D
58 143 D
86 233 D
72 208 D
187 565 D
58 163 D
57 146 D
44 93 D
28 52 D
29 43 D
29 33 D
14 12 D
15 10 D
14 7 D
15 5 D
14 1 D
14 -1 D
15 -5 D
14 -7 D
15 -10 D
14 -12 D
29 -33 D
29 -43 D
43 -82 D
29 -63 D
57 -146 D
58 -163 D
201 -608 D
101 -284 D
43 -114 D
72 -178 D
72 -164 D
72 -150 D
72 -137 D
72 -126 D
72 -114 D
44 -65 D
57 -80 D
43 -57 D
87 -105 D
86 -95 D
43 -44 D
72 -69 D
101 -89 D
87 -69 D
100 -73 D
72 -48 D
116 -71 D
129 -71 D
101 -51 D
101 -46 D
129 -55 D
130 -49 D
86 -31 D
58 -19 D
101 -32 D
129 -38 D
173 -47 D
202 -48 D
230 -49 D
29 -5 D
S
25 W
0 A
4 W
0 0 M
7200 0 D
S
2 setlinecap
7200 0 T
25 W
N 0 7200 M 0 -7200 D S
/PSL_A0_y 83 def
/PSL_A1_y 0 def
8 W
N 0 0 M 83 0 D S
N 0 2400 M 83 0 D S
N 0 4800 M 83 0 D S
N 0 7200 M 83 0 D S
/PSL_AH0 0
/MM {exch M} def
PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
200 F0
(0.00) sw mx
(0.05) sw mx
(0.10) sw mx
(0.15) sw mx
def
/PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
0 PSL_A0_y MM
(0.00) mr Z
2400 PSL_A0_y MM
(0.05) mr Z
4800 PSL_A0_y MM
(0.10) mr Z
7200 PSL_A0_y MM
(0.15) mr Z
N 0 480 M 42 0 D S
N 0 960 M 42 0 D S
N 0 1440 M 42 0 D S
N 0 1920 M 42 0 D S
N 0 2880 M 42 0 D S
N 0 3360 M 42 0 D S
N 0 3840 M 42 0 D S
N 0 4320 M 42 0 D S
N 0 5280 M 42 0 D S
N 0 5760 M 42 0 D S
N 0 6240 M 42 0 D S
N 0 6720 M 42 0 D S
/PSL_LH 267 F0
(M) sh def
/PSL_L_y PSL_A0_y PSL_A1_y mx 133 add PSL_LH add def
3600 PSL_L_y MM
V 90 R (m) bc Z U
-7200 0 T
0 setlinecap
%%EndObject
0 A
FQ
O0
0 0 TM
% PostScript produced by:
%@GMT: gmt psxy -R-25/25/0/0.15 -JX6i/6i -O -K n.txt -Sc0.02i -Gbrown
%@PROJ: xy -25.00000000 25.00000000 0.00000000 0.15000000 -25.000 25.000 0.000 0.150 +xy
%%BeginObject PSL_Layer_7
0 setlinecap
0 setlinejoin
3.32551 setmiterlimit
clipsave
0 0 M
7200 0 D
0 7200 D
-7200 0 D
P
PSL_clip N
4 W
V
{0.647 0.165 0.165 C} FS
12 0 720 Sc
12 29 726 Sc
12 58 731 Sc
12 86 737 Sc
12 115 743 Sc
12 144 749 Sc
12 173 755 Sc
12 202 762 Sc
12 230 768 Sc
12 259 774 Sc
12 288 781 Sc
12 317 788 Sc
12 346 794 Sc
12 374 801 Sc
12 403 808 Sc
12 432 815 Sc
12 461 823 Sc
12 490 830 Sc
12 518 837 Sc
12 547 845 Sc
12 576 853 Sc
12 605 861 Sc
12 634 869 Sc
12 662 877 Sc
12 691 885 Sc
12 720 894 Sc
12 749 903 Sc
12 778 911 Sc
12 806 920 Sc
12 835 930 Sc
12 864 939 Sc
12 893 949 Sc
12 922 958 Sc
12 950 968 Sc
12 979 978 Sc
12 1008 989 Sc
12 1037 999 Sc
12 1066 1010 Sc
12 1094 1021 Sc
12 1123 1032 Sc
12 1152 1044 Sc
12 1181 1056 Sc
12 1210 1068 Sc
12 1238 1080 Sc
12 1267 1093 Sc
12 1296 1105 Sc
12 1325 1119 Sc
12 1354 1132 Sc
12 1382 1146 Sc
12 1411 1160 Sc
12 1440 1174 Sc
12 1469 1189 Sc
12 1498 1204 Sc
12 1526 1220 Sc
12 1555 1236 Sc
12 1584 1252 Sc
12 1613 1269 Sc
12 1642 1286 Sc
12 1670 1304 Sc
12 1699 1322 Sc
12 1728 1340 Sc
12 1757 1359 Sc
12 1786 1379 Sc
12 1814 1399 Sc
12 1843 1420 Sc
12 1872 1441 Sc
12 1901 1463 Sc
12 1930 1486 Sc
12 1958 1509 Sc
12 1987 1533 Sc
12 2016 1558 Sc
12 2045 1583 Sc
12 2074 1609 Sc
12 2102 1636 Sc
12 2131 1664 Sc
12 2160 1693 Sc
12 2189 1722 Sc
12 2218 1753 Sc
12 2246 1785 Sc
12 2275 1817 Sc
12 2304 1851 Sc
12 2333 1886 Sc
12 2362 1922 Sc
12 2390 1960 Sc
12 2419 1998 Sc
12 2448 2038 Sc
12 2477 2080 Sc
12 2506 2123 Sc
12 2534 2167 Sc
12 2563 2213 Sc
12 2592 2261 Sc
12 2621 2311 Sc
12 2650 2362 Sc
12 2678 2416 Sc
12 2707 2471 Sc
12 2736 2528 Sc
12 2765 2588 Sc
12 2794 2649 Sc
12 2822 2713 Sc
12 2851 2779 Sc
12 2880 2847 Sc
12 2909 2918 Sc
12 2938 2991 Sc
12 2966 3066 Sc
12 2995 3143 Sc
12 3024 3223 Sc
12 3053 3304 Sc
12 3082 3388 Sc
12 3110 3473 Sc
12 3139 3559 Sc
12 3168 3646 Sc
12 3197 3734 Sc
12 3226 3822 Sc
12 3254 3908 Sc
12 3283 3994 Sc
12 3312 4075 Sc
12 3341 4157 Sc
12 3370 4232 Sc
12 3398 4302 Sc
12 3427 4366 Sc
12 3456 4422 Sc
12 3485 4470 Sc
12 3514 4508 Sc
12 3542 4536 Sc
12 3571 4559 Sc
12 3600 4558 Sc
12 3629 4559 Sc
12 3658 4536 Sc
12 3686 4508 Sc
12 3715 4470 Sc
12 3744 4422 Sc
12 3773 4366 Sc
12 3802 4302 Sc
12 3830 4232 Sc
12 3859 4157 Sc
12 3888 4076 Sc
12 3917 3994 Sc
12 3946 3908 Sc
12 3974 3822 Sc
12 4003 3734 Sc
12 4032 3646 Sc
12 4061 3559 Sc
12 4090 3473 Sc
12 4118 3388 Sc
12 4147 3304 Sc
12 4176 3223 Sc
12 4205 3143 Sc
12 4234 3066 Sc
12 4262 2991 Sc
12 4291 2918 Sc
12 4320 2847 Sc
12 4349 2779 Sc
12 4378 2713 Sc
12 4406 2649 Sc
12 4435 2588 Sc
12 4464 2528 Sc
12 4493 2471 Sc
12 4522 2416 Sc
12 4550 2362 Sc
12 4579 2311 Sc
12 4608 2261 Sc
12 4637 2213 Sc
12 4666 2167 Sc
12 4694 2123 Sc
12 4723 2080 Sc
12 4752 2038 Sc
12 4781 1998 Sc
12 4810 1960 Sc
12 4838 1922 Sc
12 4867 1886 Sc
12 4896 1851 Sc
12 4925 1817 Sc
12 4954 1785 Sc
12 4982 1753 Sc
12 5011 1722 Sc
12 5040 1693 Sc
12 5069 1664 Sc
12 5098 1636 Sc
12 5126 1609 Sc
12 5155 1583 Sc
12 5184 1558 Sc
12 5213 1533 Sc
12 5242 1509 Sc
12 5270 1486 Sc
12 5299 1463 Sc
12 5328 1441 Sc
12 5357 1420 Sc
12 5386 1399 Sc
12 5414 1379 Sc
12 5443 1359 Sc
12 5472 1340 Sc
12 5501 1322 Sc
12 5530 1304 Sc
12 5558 1286 Sc
12 5587 1269 Sc
12 5616 1252 Sc
12 5645 1236 Sc
12 5674 1220 Sc
12 5702 1204 Sc
12 5731 1189 Sc
12 5760 1174 Sc
12 5789 1160 Sc
12 5818 1146 Sc
12 5846 1132 Sc
12 5875 1119 Sc
12 5904 1105 Sc
12 5933 1093 Sc
12 5962 1080 Sc
12 5990 1068 Sc
12 6019 1056 Sc
12 6048 1044 Sc
12 6077 1032 Sc
12 6106 1021 Sc
12 6134 1010 Sc
12 6163 999 Sc
12 6192 989 Sc
12 6221 978 Sc
12 6250 968 Sc
12 6278 958 Sc
12 6307 949 Sc
12 6336 939 Sc
12 6365 930 Sc
12 6394 920 Sc
12 6422 911 Sc
12 6451 903 Sc
12 6480 894 Sc
12 6509 885 Sc
12 6538 877 Sc
12 6566 869 Sc
12 6595 861 Sc
12 6624 853 Sc
12 6653 845 Sc
12 6682 837 Sc
12 6710 830 Sc
12 6739 823 Sc
12 6768 815 Sc
12 6797 808 Sc
12 6826 801 Sc
12 6854 794 Sc
12 6883 788 Sc
12 6912 781 Sc
12 6941 774 Sc
12 6970 768 Sc
12 6998 762 Sc
12 7027 755 Sc
12 7056 749 Sc
12 7085 743 Sc
12 7114 737 Sc
12 7142 731 Sc
12 7171 726 Sc
12 7200 720 Sc
U
PSL_cliprestore
%%EndObject
0 A
FQ
O0
0 0 TM
% PostScript produced by:
%@GMT: gmt pslegend -R-25/25/0/0.15 -JX6i/6i -O -K -DjTL+w2.2i+jTL+o0.1i/0.1i legend.txt -F+gwhite+p
%@PROJ: xy -25.00000000 25.00000000 0.00000000 0.15000000 -25.000 25.000 0.000 0.150 +xy
%%BeginObject PSL_Layer_8
0 setlinecap
0 setlinejoin
3.32551 setmiterlimit
120 5627 T
{1 A} FS
1453 2640 1320 727 Sr
25 W
FQ
O1
1453 2640 1320 727 Sr
0 A
FQ
O0
0 0 TM
% PostScript produced by:
%@GMT: gmt psxy -R0/6/0/6 -Jx1i -O -K -N -S @GMTAPI@-000001 --GMT_HISTORY=false
%@PROJ: xy 0.00000000 6.00000000 0.00000000 6.00000000 0.000 6.000 0.000 6.000 +xy
%%BeginObject PSL_Layer_9
0 setlinecap
0 setlinejoin
3.32551 setmiterlimit
4 W
V
O1
1 0 0 C
180 307 1277 S-
0 0 1 C
180 307 1057 S-
0.647 0.165 0.165 C
180 307 837 S-
{1 0 0 C} FS
O0
0 A
60 307 617 Sc
{0 0.392 0 C} FS
60 307 397 Sc
{0.647 0.165 0.165 C} FS
60 307 177 Sc
U
%%EndObject
0 A
FQ
O0
0 0 TM
% PostScript produced by:
%@GMT: gmt pstext -R0/6/0/6 -Jx1i -O -K -N -F+f+j @GMTAPI@-000002 --GMT_HISTORY=false
%@PROJ: xy 0.00000000 6.00000000 0.00000000 6.00000000 0.000 6.000 0.000 6.000 +xy
%%BeginObject PSL_Layer_10
0 setlinecap
0 setlinejoin
3.32551 setmiterlimit
667 1207 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
200 F0
(FAA \(sphere\)) bl Z
667 987 M (VGG \(sphere\)) bl Z
667 767 M (N \(sphere\)) bl Z
667 547 M (FAA \(Talwani3D\)) bl Z
667 327 M (VGG \(Talwani3D\)) bl Z
667 107 M (N \(Talwani3D\)) bl Z
%%EndObject
-120 -5627 T
%%EndObject
0 A
FQ
O0
0 -3300 TM
% PostScript produced by:
%@GMT: gmt psxy -R-25/25/0/6000 -JX6i/-2.5i -O -K -Y-2.75i -Se -Gblack '-Bxafg1000+u km' -Byafg4000 -BWSne
%@PROJ: xy -25.00000000 25.00000000 0.00000000 6000.00000000 -25.000 25.000 6000.000 -0.000 +xy
%%BeginObject PSL_Layer_11
0 setlinecap
0 setlinejoin
3.32551 setmiterlimit
clipsave
0 0 M
7200 0 D
0 3000 D
-7200 0 D
P
PSL_clip N
4 W
V
{0 A} FS
288 1000 -0 3600 1000 Se
U
PSL_cliprestore
25 W
4 W
3600 3000 M
0 -3000 D
S
0 3000 M
7200 0 D
S
0 1000 M
7200 0 D
S
2 setlinecap
25 W
N 0 3000 M 0 -3000 D S
/PSL_A0_y 83 def
/PSL_A1_y 0 def
8 W
N 0 3000 M -83 0 D S
N 0 2000 M -83 0 D S
N 0 1000 M -83 0 D S
N 0 0 M -83 0 D S
/PSL_AH0 0
/MM {neg exch M} def
PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
200 F0
(0) sw mx
(2000) sw mx
(4000) sw mx
(6000) sw mx
def
/PSL_A0_y PSL_A0_y 83 add def
3000 PSL_A0_y MM
(0) mr Z
2000 PSL_A0_y MM
(2000) mr Z
1000 PSL_A0_y MM
(4000) mr Z
0 PSL_A0_y MM
(6000) mr Z
/PSL_A0_y PSL_A0_y PSL_AH0 add def
N 0 2500 M -42 0 D S
N 0 1500 M -42 0 D S
N 0 500 M -42 0 D S
/PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
7200 0 T
25 W
N 0 3000 M 0 -3000 D S
/PSL_A0_y 83 def
/PSL_A1_y 0 def
8 W
N 0 3000 M 83 0 D S
N 0 2000 M 83 0 D S
N 0 1000 M 83 0 D S
N 0 0 M 83 0 D S
N 0 2500 M 42 0 D S
N 0 1500 M 42 0 D S
N 0 500 M 42 0 D S
/PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
-7200 0 T
25 W
N 0 0 M 7200 0 D S
/PSL_A0_y 83 def
/PSL_A1_y 0 def
8 W
N 720 0 M 0 -83 D S
N 2160 0 M 0 -83 D S
N 3600 0 M 0 -83 D S
N 5040 0 M 0 -83 D S
N 6480 0 M 0 -83 D S
/PSL_AH0 0
/MM {neg M} def
(”20 km) sh mx
(”10 km) sh mx
(0 km) sh mx
(10 km) sh mx
(20 km) sh mx
def
/PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
720 PSL_A0_y MM
(”20 km) bc Z
2160 PSL_A0_y MM
(”10 km) bc Z
3600 PSL_A0_y MM
(0 km) bc Z
5040 PSL_A0_y MM
(10 km) bc Z
6480 PSL_A0_y MM
(20 km) bc Z
N 144 0 M 0 -42 D S
N 432 0 M 0 -42 D S
N 1008 0 M 0 -42 D S
N 1296 0 M 0 -42 D S
N 1584 0 M 0 -42 D S
N 1872 0 M 0 -42 D S
N 2448 0 M 0 -42 D S
N 2736 0 M 0 -42 D S
N 3024 0 M 0 -42 D S
N 3312 0 M 0 -42 D S
N 3888 0 M 0 -42 D S
N 4176 0 M 0 -42 D S
N 4464 0 M 0 -42 D S
N 4752 0 M 0 -42 D S
N 5328 0 M 0 -42 D S
N 5616 0 M 0 -42 D S
N 5904 0 M 0 -42 D S
N 6192 0 M 0 -42 D S
N 6768 0 M 0 -42 D S
N 7056 0 M 0 -42 D S
/PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
0 3000 T
25 W
N 0 0 M 7200 0 D S
/PSL_A0_y 83 def
/PSL_A1_y 0 def
8 W
N 720 0 M 0 83 D S
N 2160 0 M 0 83 D S
N 3600 0 M 0 83 D S
N 5040 0 M 0 83 D S
N 6480 0 M 0 83 D S
N 144 0 M 0 42 D S
N 432 0 M 0 42 D S
N 1008 0 M 0 42 D S
N 1296 0 M 0 42 D S
N 1584 0 M 0 42 D S
N 1872 0 M 0 42 D S
N 2448 0 M 0 42 D S
N 2736 0 M 0 42 D S
N 3024 0 M 0 42 D S
N 3312 0 M 0 42 D S
N 3888 0 M 0 42 D S
N 4176 0 M 0 42 D S
N 4464 0 M 0 42 D S
N 4752 0 M 0 42 D S
N 5328 0 M 0 42 D S
N 5616 0 M 0 42 D S
N 5904 0 M 0 42 D S
N 6192 0 M 0 42 D S
N 6768 0 M 0 42 D S
N 7056 0 M 0 42 D S
/PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
0 -3000 T
0 setlinecap
%%EndObject
0 A
FQ
O0
0 0 TM
% PostScript produced by:
%@GMT: gmt pstext -R-25/25/0/6000 -JX6i/-2.5i -O -K -F+f18p,Helvetica+jCM -Gwhite
%@PROJ: xy -25.00000000 25.00000000 0.00000000 6000.00000000 -25.000 25.000 6000.000 -0.000 +xy
%%BeginObject PSL_Layer_12
0 setlinecap
0 setlinejoin
3.32551 setmiterlimit
clipsave
0 0 M
7200 0 D
0 3000 D
-7200 0 D
P
PSL_clip N
4 W
{1 A} FS
PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
300 F0
V
V MU 0 0 M 300 F12 (Dr = 1670) FP pathbbox N /PSL_dim_h edef /PSL_dim_x1 edef /PSL_dim_d edef /PSL_dim_x0 edef /PSL_dim_w PSL_dim_x1 PSL_dim_x0 add def U
/PSL_dx 45 def
/PSL_dy 45 def
3600 2250 T PSL_dim_w -2 div PSL_dim_h -2 div T
PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub Sb
U
3600 2250 M V MU 0 0 M 300 F12 (Dr = 1670) FP pathbbox N 4 1 roll exch pop add exch U -2 div exch -2 div exch G
300 F12 (Dr = 1670) Z
PSL_cliprestore
%%EndObject
0 A
FQ
O0
0 0 TM
% PostScript produced by:
%@GMT: gmt pstext -R-25/25/0/6000 -JX6i/-2.5i -O -K -F+f14p,Times-Italic+jRB -Dj0.1i/0.1i
%@PROJ: xy -25.00000000 25.00000000 0.00000000 6000.00000000 -25.000 25.000 6000.000 -0.000 +xy
%%BeginObject PSL_Layer_13
0 setlinecap
0 setlinejoin
3.32551 setmiterlimit
clipsave
0 0 M
7200 0 D
0 3000 D
-7200 0 D
P
PSL_clip N
PSL_font_encode 6 get 0 eq {Standard+_Encoding /Times-Italic /Times-Italic PSL_reencode PSL_font_encode 6 1 put} if
3048 1120 M 233 F6
(R = 2000 m) br Z
PSL_cliprestore
%%EndObject
0 A
FQ
O0
0 0 TM
% PostScript produced by:
%@GMT: gmt pstext -R-25/25/0/6000 -JX6i/-2.5i -O -K -F+f14p,Times-Italic+jLB -Dj0.1i/0.1i
%@PROJ: xy -25.00000000 25.00000000 0.00000000 6000.00000000 -25.000 25.000 6000.000 -0.000 +xy
%%BeginObject PSL_Layer_14
0 setlinecap
0 setlinejoin
3.32551 setmiterlimit
clipsave
0 0 M
7200 0 D
0 3000 D
-7200 0 D
P
PSL_clip N
PSL_font_encode 6 get 0 eq {Standard+_Encoding /Times-Italic /Times-Italic PSL_reencode PSL_font_encode 6 1 put} if
4152 1120 M 233 F6
(z) Z
0 -58 G 163 F6 (0) Z
0 58 G 233 F6 ( = 4000 m) Z
PSL_cliprestore
%%EndObject
0 A
FQ
O0
0 0 TM
% PostScript produced by:
%@GMT: gmt psxy -R-25/25/0/6000 -JX6i/-2.5i -O -T
%@PROJ: xy -25.00000000 25.00000000 0.00000000 6000.00000000 -25.000 25.000 6000.000 -0.000 +xy
%%BeginObject PSL_Layer_15
0 setlinecap
0 setlinejoin
3.32551 setmiterlimit
%%EndObject
grestore
PSL_movie_completion /PSL_movie_completion {} def
%PSL_Begin_Trailer
%%PageTrailer
U
showpage
%%Trailer
end
%%EOF
Tip!
Press p or to see the previous file or,
n or to see the next file