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

sample.ps 38 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
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612.0000 792.0000
  4. %%Title: GMT v6.2.0_bd0a74c-dirty_2020.12.21 [64-bit] Document from psxy
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Tue Dec 22 20:56:48 2020
  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. /PSL_BM_arg edef /PSL_S_arg edef /PSL_F_arg edef
  115. /.setfillconstantalpha where
  116. { pop PSL_BM_arg .setblendmode PSL_S_arg .setstrokeconstantalpha PSL_F_arg .setfillconstantalpha }
  117. { /pdfmark where {pop [ /BM PSL_BM_arg /CA PSL_S_arg /ca PSL_F_arg /SetTransparency pdfmark} if }
  118. ifelse
  119. }!
  120. /Standard+_Encoding [
  121. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  122. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  123. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  124. /.notdef /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
  125. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  126. /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
  127. /zero /one /two /three /four /five /six /seven
  128. /eight /nine /colon /semicolon /less /equal /greater /question
  129. /at /A /B /C /D /E /F /G
  130. /H /I /J /K /L /M /N /O
  131. /P /Q /R /S /T /U /V /W
  132. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  133. /quoteleft /a /b /c /d /e /f /g
  134. /h /i /j /k /l /m /n /o
  135. /p /q /r /s /t /u /v /w
  136. /x /y /z /braceleft /bar /braceright /asciitilde /florin
  137. /Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
  138. /Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
  139. /divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
  140. /onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
  141. /.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
  142. /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
  143. /Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
  144. /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
  145. /Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
  146. /dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
  147. /emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
  148. /Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
  149. /acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
  150. /egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
  151. /oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
  152. /udieresis /oslash /oe /germandbls /ugrave /Aring /aring /ydieresis
  153. ] def
  154. /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
  155. /F0 {/Helvetica Y}!
  156. /F1 {/Helvetica-Bold Y}!
  157. /F2 {/Helvetica-Oblique Y}!
  158. /F3 {/Helvetica-BoldOblique Y}!
  159. /F4 {/Times-Roman Y}!
  160. /F5 {/Times-Bold Y}!
  161. /F6 {/Times-Italic Y}!
  162. /F7 {/Times-BoldItalic Y}!
  163. /F8 {/Courier Y}!
  164. /F9 {/Courier-Bold Y}!
  165. /F10 {/Courier-Oblique Y}!
  166. /F11 {/Courier-BoldOblique Y}!
  167. /F12 {/Symbol Y}!
  168. /F13 {/AvantGarde-Book Y}!
  169. /F14 {/AvantGarde-BookOblique Y}!
  170. /F15 {/AvantGarde-Demi Y}!
  171. /F16 {/AvantGarde-DemiOblique Y}!
  172. /F17 {/Bookman-Demi Y}!
  173. /F18 {/Bookman-DemiItalic Y}!
  174. /F19 {/Bookman-Light Y}!
  175. /F20 {/Bookman-LightItalic Y}!
  176. /F21 {/Helvetica-Narrow Y}!
  177. /F22 {/Helvetica-Narrow-Bold Y}!
  178. /F23 {/Helvetica-Narrow-Oblique Y}!
  179. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  180. /F25 {/NewCenturySchlbk-Roman Y}!
  181. /F26 {/NewCenturySchlbk-Italic Y}!
  182. /F27 {/NewCenturySchlbk-Bold Y}!
  183. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  184. /F29 {/Palatino-Roman Y}!
  185. /F30 {/Palatino-Italic Y}!
  186. /F31 {/Palatino-Bold Y}!
  187. /F32 {/Palatino-BoldItalic Y}!
  188. /F33 {/ZapfChancery-MediumItalic Y}!
  189. /F34 {/ZapfDingbats Y}!
  190. /F35 {/Ryumin-Light-EUC-H Y}!
  191. /F36 {/Ryumin-Light-EUC-V Y}!
  192. /F37 {/GothicBBB-Medium-EUC-H Y}!
  193. /F38 {/GothicBBB-Medium-EUC-V Y}!
  194. /PSL_pathtextdict 26 dict def
  195. /PSL_pathtext
  196. {PSL_pathtextdict begin
  197. /ydepth exch def
  198. /textheight exch def
  199. /just exch def
  200. /offset exch def
  201. /str exch def
  202. /pathdist 0 def
  203. /setdist offset def
  204. /charcount 0 def
  205. /justy just 4 idiv textheight mul 2 div neg ydepth sub def
  206. V flattenpath
  207. {movetoproc} {linetoproc}
  208. {curvetoproc} {closepathproc}
  209. pathforall
  210. U N
  211. end
  212. } def
  213. PSL_pathtextdict begin
  214. /movetoproc
  215. { /newy exch def /newx exch def
  216. /firstx newx def /firsty newy def
  217. /ovr 0 def
  218. newx newy transform
  219. /cpy exch def /cpx exch def
  220. } def
  221. /linetoproc
  222. { /oldx newx def /oldy newy def
  223. /newy exch def /newx exch def
  224. /dx newx oldx sub def
  225. /dy newy oldy sub def
  226. /dist dx dup mul dy dup mul add sqrt def
  227. dist 0 ne
  228. { /dsx dx dist div ovr mul def
  229. /dsy dy dist div ovr mul def
  230. oldx dsx add oldy dsy add transform
  231. /cpy exch def /cpx exch def
  232. /pathdist pathdist dist add def
  233. {setdist pathdist le
  234. {charcount str length lt
  235. {setchar} {exit} ifelse}
  236. { /ovr setdist pathdist sub def
  237. exit}
  238. ifelse
  239. } loop
  240. } if
  241. } def
  242. /curvetoproc
  243. { (ERROR: No curveto's after flattenpath!)
  244. print
  245. } def
  246. /closepathproc
  247. {firstx firsty linetoproc
  248. firstx firsty movetoproc
  249. } def
  250. /setchar
  251. { /char str charcount 1 getinterval def
  252. /charcount charcount 1 add def
  253. /charwidth char stringwidth pop def
  254. V cpx cpy itransform T
  255. dy dx atan R
  256. 0 justy M
  257. char show
  258. 0 justy neg G
  259. currentpoint transform
  260. /cpy exch def /cpx exch def
  261. U /setdist setdist charwidth add def
  262. } def
  263. end
  264. /PSL_set_label_heights
  265. {
  266. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  267. /PSL_heights PSL_n_labels array def
  268. 0 1 PSL_n_labels_minus_1
  269. { /psl_k exch def
  270. /psl_label PSL_label_str psl_k get def
  271. PSL_label_font psl_k get cvx exec
  272. psl_label sH /PSL_height edef
  273. PSL_heights psl_k PSL_height put
  274. } for
  275. } def
  276. /PSL_curved_path_labels
  277. { /psl_bits exch def
  278. /PSL_placetext psl_bits 2 and 2 eq def
  279. /PSL_clippath psl_bits 4 and 4 eq def
  280. /PSL_strokeline false def
  281. /PSL_fillbox psl_bits 128 and 128 eq def
  282. /PSL_drawbox psl_bits 256 and 256 eq def
  283. /PSL_n_paths1 PSL_n_paths 1 sub def
  284. /PSL_usebox PSL_fillbox PSL_drawbox or def
  285. PSL_clippath {clipsave N clippath} if
  286. /psl_k 0 def
  287. /psl_p 0 def
  288. 0 1 PSL_n_paths1
  289. { /psl_kk exch def
  290. /PSL_n PSL_path_n psl_kk get def
  291. /PSL_m PSL_label_n psl_kk get def
  292. /PSL_x PSL_path_x psl_k PSL_n getinterval def
  293. /PSL_y PSL_path_y psl_k PSL_n getinterval def
  294. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
  295. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
  296. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
  297. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
  298. PSL_curved_path_label
  299. /psl_k psl_k PSL_n add def
  300. /psl_p psl_p PSL_m add def
  301. } for
  302. PSL_clippath {PSL_eoclip} if N
  303. } def
  304. /PSL_curved_path_label
  305. {
  306. /PSL_n1 PSL_n 1 sub def
  307. /PSL_m1 PSL_m 1 sub def
  308. PSL_CT_calcstringwidth
  309. PSL_CT_calclinedist
  310. PSL_CT_excludelabels
  311. PSL_CT_addcutpoints
  312. /PSL_nn1 PSL_nn 1 sub def
  313. /n 0 def
  314. /k 0 def
  315. /j 0 def
  316. /PSL_seg 0 def
  317. /PSL_xp PSL_nn array def
  318. /PSL_yp PSL_nn array def
  319. PSL_xp 0 PSL_xx 0 get put
  320. PSL_yp 0 PSL_yy 0 get put
  321. 1 1 PSL_nn1
  322. { /i exch def
  323. /node_type PSL_kind i get def
  324. /j j 1 add def
  325. PSL_xp j PSL_xx i get put
  326. PSL_yp j PSL_yy i get put
  327. node_type 1 eq
  328. {n 0 eq
  329. {PSL_CT_drawline}
  330. { PSL_CT_reversepath
  331. PSL_CT_textline} ifelse
  332. /j 0 def
  333. PSL_xp j PSL_xx i get put
  334. PSL_yp j PSL_yy i get put
  335. } if
  336. } for
  337. n 0 eq {PSL_CT_drawline} if
  338. } def
  339. /PSL_CT_textline
  340. { PSL_fnt k get cvx exec
  341. /PSL_height PSL_heights k get def
  342. PSL_placetext {PSL_CT_placelabel} if
  343. PSL_clippath {PSL_CT_clippath} if
  344. /n 0 def /k k 1 add def
  345. } def
  346. /PSL_CT_calcstringwidth
  347. { /PSL_width_tmp PSL_m array def
  348. 0 1 PSL_m1
  349. { /i exch def
  350. PSL_fnt_tmp i get cvx exec
  351. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  352. } for
  353. } def
  354. /PSL_CT_calclinedist
  355. { /PSL_newx PSL_x 0 get def
  356. /PSL_newy PSL_y 0 get def
  357. /dist 0.0 def
  358. /PSL_dist PSL_n array def
  359. PSL_dist 0 0.0 put
  360. 1 1 PSL_n1
  361. { /i exch def
  362. /PSL_oldx PSL_newx def
  363. /PSL_oldy PSL_newy def
  364. /PSL_newx PSL_x i get def
  365. /PSL_newy PSL_y i get def
  366. /dx PSL_newx PSL_oldx sub def
  367. /dy PSL_newy PSL_oldy sub def
  368. /dist dist dx dx mul dy dy mul add sqrt add def
  369. PSL_dist i dist put
  370. } for
  371. } def
  372. /PSL_CT_excludelabels
  373. { /k 0 def
  374. /PSL_width PSL_m array def
  375. /PSL_angle PSL_m array def
  376. /PSL_node PSL_m array def
  377. /PSL_str PSL_m array def
  378. /PSL_fnt PSL_m array def
  379. /lastdist PSL_dist PSL_n1 get def
  380. 0 1 PSL_m1
  381. { /i exch def
  382. /dist PSL_dist PSL_node_tmp i get get def
  383. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  384. /L_dist dist halfwidth sub def
  385. /R_dist dist halfwidth add def
  386. L_dist 0 gt R_dist lastdist lt and
  387. {
  388. PSL_width k PSL_width_tmp i get put
  389. PSL_node k PSL_node_tmp i get put
  390. PSL_angle k PSL_angle_tmp i get put
  391. PSL_str k PSL_str_tmp i get put
  392. PSL_fnt k PSL_fnt_tmp i get put
  393. /k k 1 add def
  394. } if
  395. } for
  396. /PSL_m k def
  397. /PSL_m1 PSL_m 1 sub def
  398. } def
  399. /PSL_CT_addcutpoints
  400. { /k 0 def
  401. /PSL_nc PSL_m 2 mul 1 add def
  402. /PSL_cuts PSL_nc array def
  403. /PSL_nc1 PSL_nc 1 sub def
  404. 0 1 PSL_m1
  405. { /i exch def
  406. /dist PSL_dist PSL_node i get get def
  407. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  408. PSL_cuts k dist halfwidth sub put
  409. /k k 1 add def
  410. PSL_cuts k dist halfwidth add put
  411. /k k 1 add def
  412. } for
  413. PSL_cuts k 100000.0 put
  414. /PSL_nn PSL_n PSL_m 2 mul add def
  415. /PSL_xx PSL_nn array def
  416. /PSL_yy PSL_nn array def
  417. /PSL_kind PSL_nn array def
  418. /j 0 def
  419. /k 0 def
  420. /dist 0.0 def
  421. 0 1 PSL_n1
  422. { /i exch def
  423. /last_dist dist def
  424. /dist PSL_dist i get def
  425. k 1 PSL_nc1
  426. { /kk exch def
  427. /this_cut PSL_cuts kk get def
  428. dist this_cut gt
  429. { /ds dist last_dist sub def
  430. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  431. /i1 i 0 eq {0} {i 1 sub} ifelse def
  432. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  433. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  434. PSL_kind j 1 put
  435. /j j 1 add def
  436. /k k 1 add def
  437. } if
  438. } for
  439. dist PSL_cuts k get le
  440. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  441. PSL_kind j 0 put
  442. /j j 1 add def
  443. } if
  444. } for
  445. } def
  446. /PSL_CT_reversepath
  447. {PSL_xp j get PSL_xp 0 get lt
  448. {0 1 j 2 idiv
  449. { /left exch def
  450. /right j left sub def
  451. /tmp PSL_xp left get def
  452. PSL_xp left PSL_xp right get put
  453. PSL_xp right tmp put
  454. /tmp PSL_yp left get def
  455. PSL_yp left PSL_yp right get put
  456. PSL_yp right tmp put
  457. } for
  458. } if
  459. } def
  460. /PSL_CT_placelabel
  461. {
  462. /PSL_just PSL_label_justify k get def
  463. /PSL_height PSL_heights k get def
  464. /psl_label PSL_str k get def
  465. /psl_depth psl_label sd def
  466. PSL_usebox
  467. {PSL_CT_clippath
  468. PSL_fillbox
  469. {V PSL_setboxrgb fill U} if
  470. PSL_drawbox
  471. {V PSL_setboxpen S U} if N
  472. } if
  473. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  474. } def
  475. /PSL_CT_clippath
  476. {
  477. /H PSL_height 2 div PSL_gap_y add def
  478. /xoff j 1 add array def
  479. /yoff j 1 add array def
  480. /angle 0 def
  481. 0 1 j {
  482. /ii exch def
  483. /x PSL_xp ii get def
  484. /y PSL_yp ii get def
  485. ii 0 eq {
  486. /x1 PSL_xp 1 get def
  487. /y1 PSL_yp 1 get def
  488. /dx x1 x sub def
  489. /dy y1 y sub def
  490. }
  491. { /i1 ii 1 sub def
  492. /x1 PSL_xp i1 get def
  493. /y1 PSL_yp i1 get def
  494. /dx x x1 sub def
  495. /dy y y1 sub def
  496. } ifelse
  497. dx 0.0 eq dy 0.0 eq and not
  498. { /angle dy dx atan 90 add def} if
  499. /sina angle sin def
  500. /cosa angle cos def
  501. xoff ii H cosa mul put
  502. yoff ii H sina mul put
  503. } for
  504. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  505. 1 1 j {
  506. /ii exch def
  507. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  508. } for
  509. j -1 0 {
  510. /ii exch def
  511. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  512. } for P
  513. } def
  514. /PSL_CT_drawline
  515. {
  516. /str 20 string def
  517. PSL_strokeline
  518. {PSL_CT_placeline S} if
  519. /PSL_seg PSL_seg 1 add def
  520. /n 1 def
  521. } def
  522. /PSL_CT_placeline
  523. {PSL_xp 0 get PSL_yp 0 get M
  524. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  525. } def
  526. /PSL_draw_path_lines
  527. {
  528. /PSL_n_paths1 PSL_n_paths 1 sub def
  529. V
  530. /psl_start 0 def
  531. 0 1 PSL_n_paths1
  532. { /psl_k exch def
  533. /PSL_n PSL_path_n psl_k get def
  534. /PSL_n1 PSL_n 1 sub def
  535. PSL_path_pen psl_k get cvx exec
  536. N
  537. PSL_path_x psl_start get PSL_path_y psl_start get M
  538. 1 1 PSL_n1
  539. { /psl_i exch def
  540. /psl_kk psl_i psl_start add def
  541. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  542. } for
  543. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  544. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  545. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  546. S
  547. /psl_start psl_start PSL_n add def
  548. } for
  549. U
  550. } def
  551. /PSL_straight_path_labels
  552. {
  553. /psl_bits exch def
  554. /PSL_placetext psl_bits 2 and 2 eq def
  555. /PSL_rounded psl_bits 32 and 32 eq def
  556. /PSL_fillbox psl_bits 128 and 128 eq def
  557. /PSL_drawbox psl_bits 256 and 256 eq def
  558. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  559. /PSL_usebox PSL_fillbox PSL_drawbox or def
  560. 0 1 PSL_n_labels_minus_1
  561. { /psl_k exch def
  562. PSL_ST_prepare_text
  563. PSL_usebox
  564. { PSL_rounded
  565. {PSL_ST_textbox_round}
  566. {PSL_ST_textbox_rect}
  567. ifelse
  568. PSL_fillbox {V PSL_setboxrgb fill U} if
  569. PSL_drawbox {V PSL_setboxpen S U} if
  570. N
  571. } if
  572. PSL_placetext {PSL_ST_place_label} if
  573. } for
  574. } def
  575. /PSL_straight_path_clip
  576. {
  577. /psl_bits exch def
  578. /PSL_rounded psl_bits 32 and 32 eq def
  579. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  580. N clipsave clippath
  581. 0 1 PSL_n_labels_minus_1
  582. { /psl_k exch def
  583. PSL_ST_prepare_text
  584. PSL_rounded
  585. {PSL_ST_textbox_round}
  586. {PSL_ST_textbox_rect}
  587. ifelse
  588. } for
  589. PSL_eoclip N
  590. } def
  591. /PSL_ST_prepare_text
  592. {
  593. /psl_xp PSL_txt_x psl_k get def
  594. /psl_yp PSL_txt_y psl_k get def
  595. /psl_label PSL_label_str psl_k get def
  596. PSL_label_font psl_k get cvx exec
  597. /PSL_height PSL_heights psl_k get def
  598. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  599. /PSL_just PSL_label_justify psl_k get def
  600. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  601. /PSL_justy PSL_just 4 idiv 2 div neg def
  602. /psl_SW psl_label stringwidth pop def
  603. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  604. /psl_x0 psl_SW PSL_justx mul def
  605. /psl_y0 PSL_justy PSL_height mul def
  606. /psl_angle PSL_label_angle psl_k get def
  607. } def
  608. /PSL_ST_textbox_rect
  609. {
  610. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  611. PSL_gap_x neg PSL_gap_y neg M
  612. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  613. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  614. } def
  615. /PSL_ST_textbox_round
  616. {
  617. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  618. /psl_xd PSL_gap_x psl_BoxR sub def
  619. /psl_yd PSL_gap_y psl_BoxR sub def
  620. /psl_xL PSL_gap_x neg def
  621. /psl_yB PSL_gap_y neg def
  622. /psl_yT psl_boxH psl_yB add def
  623. /psl_H2 PSL_height psl_yd 2 mul add def
  624. /psl_W2 psl_SW psl_xd 2 mul add def
  625. /psl_xR psl_xL psl_boxW add def
  626. /psl_x0 psl_SW PSL_justx mul def
  627. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  628. psl_xL psl_yd M
  629. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  630. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  631. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  632. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  633. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  634. } def
  635. /PSL_ST_place_label
  636. {
  637. V psl_xp psl_yp T psl_angle R
  638. psl_SW PSL_justx mul psl_y0 M
  639. psl_label dup sd neg 0 exch G show
  640. U
  641. } def
  642. /PSL_nclip 0 def
  643. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  644. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  645. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  646. %%EndProlog
  647. %%BeginSetup
  648. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  649. PSLevel 1 gt { << /WhiteIsOpaque true >> setpagedevice } if
  650. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  651. %%EndSetup
  652. %%Page: 1 1
  653. %%BeginPageSetup
  654. V 0.06 0.06 scale
  655. %%EndPageSetup
  656. /PSL_page_xsize 10200 def
  657. /PSL_page_ysize 13200 def
  658. /PSL_plot_completion {} def
  659. /PSL_movie_label_completion {} def
  660. /PSL_movie_prog_indicator_completion {} def
  661. %PSL_End_Header
  662. gsave
  663. 0 A
  664. FQ
  665. O0
  666. 1200 1200 TM
  667. % PostScript produced by:
  668. %@GMT: gmt psxy track.txt -R-10/50/67/77 -JX6i -P -Sc0.2c -Ggreen -W0.25p -Baf -BWSne -K
  669. %@PROJ: xy -10.00000000 50.00000000 67.00000000 77.00000000 -10.000 50.000 67.000 77.000 +xy
  670. %GMTBoundingBox: 72 72 432 432
  671. %%BeginObject PSL_Layer_1
  672. 0 setlinecap
  673. 0 setlinejoin
  674. 3.32550952342 setmiterlimit
  675. 0 A
  676. clipsave
  677. 0 0 M
  678. 7200 0 D
  679. 0 7200 D
  680. -7200 0 D
  681. P
  682. PSL_clip N
  683. V
  684. 4 W
  685. {0 1 0 C} FS
  686. O1
  687. 47 600 5040 Sc
  688. 47 6360 6480 Sc
  689. 47 6240 4320 Sc
  690. 47 6480 4320 Sc
  691. 47 5760 720 Sc
  692. U
  693. PSL_cliprestore
  694. 25 W
  695. 0 A
  696. /PSL_slant_y 0 def
  697. 2 setlinecap
  698. N 0 7200 M 0 -7200 D S
  699. /PSL_A0_y 83 def
  700. /PSL_A1_y 0 def
  701. 8 W
  702. N 0 720 M -83 0 D S
  703. N 0 2160 M -83 0 D S
  704. N 0 3600 M -83 0 D S
  705. N 0 5040 M -83 0 D S
  706. N 0 6480 M -83 0 D S
  707. /MM {neg exch M} def
  708. /PSL_AH0 0
  709. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  710. 200 F0
  711. (68) sw mx
  712. (70) sw mx
  713. (72) sw mx
  714. (74) sw mx
  715. (76) sw mx
  716. def
  717. /PSL_A0_y PSL_A0_y 83 add def
  718. 720 PSL_A0_y MM
  719. (68) mr Z
  720. 2160 PSL_A0_y MM
  721. (70) mr Z
  722. 3600 PSL_A0_y MM
  723. (72) mr Z
  724. 5040 PSL_A0_y MM
  725. (74) mr Z
  726. 6480 PSL_A0_y MM
  727. (76) mr Z
  728. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  729. N 0 0 M -42 0 D S
  730. N 0 1440 M -42 0 D S
  731. N 0 2880 M -42 0 D S
  732. N 0 4320 M -42 0 D S
  733. N 0 5760 M -42 0 D S
  734. N 0 7200 M -42 0 D S
  735. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  736. 7200 0 T
  737. 25 W
  738. N 0 7200 M 0 -7200 D S
  739. /PSL_A0_y 83 def
  740. /PSL_A1_y 0 def
  741. 8 W
  742. N 0 720 M 83 0 D S
  743. N 0 2160 M 83 0 D S
  744. N 0 3600 M 83 0 D S
  745. N 0 5040 M 83 0 D S
  746. N 0 6480 M 83 0 D S
  747. N 0 0 M 42 0 D S
  748. N 0 1440 M 42 0 D S
  749. N 0 2880 M 42 0 D S
  750. N 0 4320 M 42 0 D S
  751. N 0 5760 M 42 0 D S
  752. N 0 7200 M 42 0 D S
  753. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  754. -7200 0 T
  755. 25 W
  756. N 0 0 M 7200 0 D S
  757. /PSL_A0_y 83 def
  758. /PSL_A1_y 0 def
  759. 8 W
  760. N 0 0 M 0 -83 D S
  761. N 1200 0 M 0 -83 D S
  762. N 2400 0 M 0 -83 D S
  763. N 3600 0 M 0 -83 D S
  764. N 4800 0 M 0 -83 D S
  765. N 6000 0 M 0 -83 D S
  766. N 7200 0 M 0 -83 D S
  767. /MM {neg M} def
  768. /PSL_AH0 0
  769. (”10) sh mx
  770. (0) sh mx
  771. (10) sh mx
  772. (20) sh mx
  773. (30) sh mx
  774. (40) sh mx
  775. (50) sh mx
  776. def
  777. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  778. 0 PSL_A0_y MM
  779. (”10) bc Z
  780. 1200 PSL_A0_y MM
  781. (0) bc Z
  782. 2400 PSL_A0_y MM
  783. (10) bc Z
  784. 3600 PSL_A0_y MM
  785. (20) bc Z
  786. 4800 PSL_A0_y MM
  787. (30) bc Z
  788. 6000 PSL_A0_y MM
  789. (40) bc Z
  790. 7200 PSL_A0_y MM
  791. (50) bc Z
  792. N 240 0 M 0 -42 D S
  793. N 480 0 M 0 -42 D S
  794. N 720 0 M 0 -42 D S
  795. N 960 0 M 0 -42 D S
  796. N 1440 0 M 0 -42 D S
  797. N 1680 0 M 0 -42 D S
  798. N 1920 0 M 0 -42 D S
  799. N 2160 0 M 0 -42 D S
  800. N 2640 0 M 0 -42 D S
  801. N 2880 0 M 0 -42 D S
  802. N 3120 0 M 0 -42 D S
  803. N 3360 0 M 0 -42 D S
  804. N 3840 0 M 0 -42 D S
  805. N 4080 0 M 0 -42 D S
  806. N 4320 0 M 0 -42 D S
  807. N 4560 0 M 0 -42 D S
  808. N 5040 0 M 0 -42 D S
  809. N 5280 0 M 0 -42 D S
  810. N 5520 0 M 0 -42 D S
  811. N 5760 0 M 0 -42 D S
  812. N 6240 0 M 0 -42 D S
  813. N 6480 0 M 0 -42 D S
  814. N 6720 0 M 0 -42 D S
  815. N 6960 0 M 0 -42 D S
  816. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  817. 0 7200 T
  818. 25 W
  819. N 0 0 M 7200 0 D S
  820. /PSL_A0_y 83 def
  821. /PSL_A1_y 0 def
  822. 8 W
  823. N 0 0 M 0 83 D S
  824. N 1200 0 M 0 83 D S
  825. N 2400 0 M 0 83 D S
  826. N 3600 0 M 0 83 D S
  827. N 4800 0 M 0 83 D S
  828. N 6000 0 M 0 83 D S
  829. N 7200 0 M 0 83 D S
  830. N 240 0 M 0 42 D S
  831. N 480 0 M 0 42 D S
  832. N 720 0 M 0 42 D S
  833. N 960 0 M 0 42 D S
  834. N 1440 0 M 0 42 D S
  835. N 1680 0 M 0 42 D S
  836. N 1920 0 M 0 42 D S
  837. N 2160 0 M 0 42 D S
  838. N 2640 0 M 0 42 D S
  839. N 2880 0 M 0 42 D S
  840. N 3120 0 M 0 42 D S
  841. N 3360 0 M 0 42 D S
  842. N 3840 0 M 0 42 D S
  843. N 4080 0 M 0 42 D S
  844. N 4320 0 M 0 42 D S
  845. N 4560 0 M 0 42 D S
  846. N 5040 0 M 0 42 D S
  847. N 5280 0 M 0 42 D S
  848. N 5520 0 M 0 42 D S
  849. N 5760 0 M 0 42 D S
  850. N 6240 0 M 0 42 D S
  851. N 6480 0 M 0 42 D S
  852. N 6720 0 M 0 42 D S
  853. N 6960 0 M 0 42 D S
  854. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  855. 0 -7200 T
  856. 0 setlinecap
  857. %%EndObject
  858. 0 A
  859. FQ
  860. O0
  861. 0 0 TM
  862. % PostScript produced by:
  863. %@GMT: gmt psxy track.txt -R-10/50/67/77 -JX6i -O -K -W0.25p
  864. %@PROJ: xy -10.00000000 50.00000000 67.00000000 77.00000000 -10.000 50.000 67.000 77.000 +xy
  865. %%BeginObject PSL_Layer_2
  866. 0 setlinecap
  867. 0 setlinejoin
  868. 3.32550952342 setmiterlimit
  869. V
  870. 4 W
  871. clipsave
  872. 0 0 M
  873. 7200 0 D
  874. 0 7200 D
  875. -7200 0 D
  876. P
  877. PSL_clip N
  878. 600 5040 M
  879. 5760 1440 D
  880. -120 -2160 D
  881. 240 0 D
  882. -720 -3600 D
  883. S
  884. PSL_cliprestore
  885. U
  886. %%EndObject
  887. 0 A
  888. FQ
  889. O0
  890. 0 0 TM
  891. % PostScript produced by:
  892. %@GMT: gmt psxy -R-10/50/67/77 -JX6i -O -K -Sc0.1c -Gcyan
  893. %@PROJ: xy -10.00000000 50.00000000 67.00000000 77.00000000 -10.000 50.000 67.000 77.000 +xy
  894. %%BeginObject PSL_Layer_3
  895. 0 setlinecap
  896. 0 setlinejoin
  897. 3.32550952342 setmiterlimit
  898. clipsave
  899. 0 0 M
  900. 7200 0 D
  901. 0 7200 D
  902. -7200 0 D
  903. P
  904. PSL_clip N
  905. V
  906. 4 W
  907. {0 1 1 C} FS
  908. 24 600 5040 Sc
  909. 24 840 5100 Sc
  910. 24 1080 5160 Sc
  911. 24 1319 5220 Sc
  912. 24 1559 5280 Sc
  913. 24 1799 5340 Sc
  914. 24 2039 5400 Sc
  915. 24 2279 5460 Sc
  916. 24 2518 5520 Sc
  917. 24 2758 5580 Sc
  918. 24 2998 5639 Sc
  919. 24 3238 5699 Sc
  920. 24 3478 5759 Sc
  921. 24 3717 5819 Sc
  922. 24 3957 5879 Sc
  923. 24 4197 5939 Sc
  924. 24 4437 5999 Sc
  925. 24 4676 6059 Sc
  926. 24 4916 6119 Sc
  927. 24 5156 6179 Sc
  928. 24 5396 6239 Sc
  929. 24 5636 6299 Sc
  930. 24 5875 6359 Sc
  931. 24 6115 6419 Sc
  932. 24 6355 6479 Sc
  933. 24 6286 5142 Sc
  934. 24 6336 4320 Sc
  935. 24 6407 3953 Sc
  936. 24 6222 3031 Sc
  937. 24 6038 2109 Sc
  938. 24 5853 1187 Sc
  939. U
  940. PSL_cliprestore
  941. %%EndObject
  942. 0 A
  943. FQ
  944. O0
  945. 0 0 TM
  946. % PostScript produced by:
  947. %@GMT: gmt psxy -R-10/50/67/77 -JX6i -O -K -Sc0.1c -Gblack
  948. %@PROJ: xy -10.00000000 50.00000000 67.00000000 77.00000000 -10.000 50.000 67.000 77.000 +xy
  949. %%BeginObject PSL_Layer_4
  950. 0 setlinecap
  951. 0 setlinejoin
  952. 3.32550952342 setmiterlimit
  953. clipsave
  954. 0 0 M
  955. 7200 0 D
  956. 0 7200 D
  957. -7200 0 D
  958. P
  959. PSL_clip N
  960. V
  961. 4 W
  962. {0 A} FS
  963. 24 600 5040 Sc
  964. 24 836 5099 Sc
  965. 24 1072 5158 Sc
  966. 24 1308 5217 Sc
  967. 24 1544 5276 Sc
  968. 24 1780 5335 Sc
  969. 24 2016 5394 Sc
  970. 24 2252 5453 Sc
  971. 24 2488 5512 Sc
  972. 24 2724 5571 Sc
  973. 24 2960 5630 Sc
  974. 24 3196 5689 Sc
  975. 24 3432 5748 Sc
  976. 24 3668 5807 Sc
  977. 24 3904 5866 Sc
  978. 24 4140 5925 Sc
  979. 24 4376 5984 Sc
  980. 24 4612 6043 Sc
  981. 24 4848 6102 Sc
  982. 24 5084 6161 Sc
  983. 24 5320 6220 Sc
  984. 24 5556 6279 Sc
  985. 24 5792 6338 Sc
  986. 24 6028 6397 Sc
  987. 24 6263 6456 Sc
  988. 24 6316 5685 Sc
  989. 24 6241 4341 Sc
  990. 24 6472 4320 Sc
  991. 24 6304 3442 Sc
  992. 24 6123 2534 Sc
  993. 24 5941 1627 Sc
  994. 24 5760 720 Sc
  995. U
  996. PSL_cliprestore
  997. %%EndObject
  998. 0 A
  999. FQ
  1000. O0
  1001. 0 0 TM
  1002. % PostScript produced by:
  1003. %@GMT: gmt psxy -R-10/50/67/77 -JX6i -O -K -W0.25p,blue,-
  1004. %@PROJ: xy -10.00000000 50.00000000 67.00000000 77.00000000 -10.000 50.000 67.000 77.000 +xy
  1005. %%BeginObject PSL_Layer_5
  1006. 0 setlinecap
  1007. 0 setlinejoin
  1008. 3.32550952342 setmiterlimit
  1009. V
  1010. 4 W
  1011. [33 17] 0 B
  1012. 0 0 1 C
  1013. clipsave
  1014. 0 0 M
  1015. 7200 0 D
  1016. 0 7200 D
  1017. -7200 0 D
  1018. P
  1019. PSL_clip N
  1020. 600 5040 M
  1021. 5760 0 D
  1022. 0 1440 D
  1023. -12 0 D
  1024. -12 0 D
  1025. -12 0 D
  1026. -12 0 D
  1027. -12 0 D
  1028. -12 0 D
  1029. -12 0 D
  1030. -12 0 D
  1031. -12 0 D
  1032. -12 0 D
  1033. 0 -2160 D
  1034. 240 0 D
  1035. -12 0 D
  1036. -12 0 D
  1037. -12 0 D
  1038. -12 0 D
  1039. -12 0 D
  1040. -12 0 D
  1041. -12 0 D
  1042. -12 0 D
  1043. -12 0 D
  1044. -12 0 D
  1045. -12 0 D
  1046. -12 0 D
  1047. -12 0 D
  1048. -12 0 D
  1049. -12 0 D
  1050. -12 0 D
  1051. -12 0 D
  1052. -12 0 D
  1053. -12 0 D
  1054. -12 0 D
  1055. -12 0 D
  1056. -12 0 D
  1057. -12 0 D
  1058. -12 0 D
  1059. -12 0 D
  1060. -12 0 D
  1061. -12 0 D
  1062. -12 0 D
  1063. -12 0 D
  1064. -12 0 D
  1065. -12 0 D
  1066. -12 0 D
  1067. -12 0 D
  1068. -12 0 D
  1069. -12 0 D
  1070. -12 0 D
  1071. -12 0 D
  1072. -12 0 D
  1073. -12 0 D
  1074. -12 0 D
  1075. -12 0 D
  1076. -12 0 D
  1077. -12 0 D
  1078. -12 0 D
  1079. -12 0 D
  1080. -12 0 D
  1081. -12 0 D
  1082. -12 0 D
  1083. -12 0 D
  1084. -12 0 D
  1085. -12 0 D
  1086. -12 0 D
  1087. -12 0 D
  1088. -12 0 D
  1089. -12 0 D
  1090. -12 0 D
  1091. -12 0 D
  1092. -12 0 D
  1093. -12 0 D
  1094. -12 0 D
  1095. 0 -3600 D
  1096. S
  1097. PSL_cliprestore
  1098. U
  1099. [] 0 B
  1100. %%EndObject
  1101. 0 A
  1102. FQ
  1103. O0
  1104. 0 0 TM
  1105. % PostScript produced by:
  1106. %@GMT: gmt psxy -R-10/50/67/77 -JX6i -O -K -W0.25p,orange,-
  1107. %@PROJ: xy -10.00000000 50.00000000 67.00000000 77.00000000 -10.000 50.000 67.000 77.000 +xy
  1108. %%BeginObject PSL_Layer_6
  1109. 0 setlinecap
  1110. 0 setlinejoin
  1111. 3.32550952342 setmiterlimit
  1112. V
  1113. 4 W
  1114. [33 17] 0 B
  1115. 1 0.647 0 C
  1116. clipsave
  1117. 0 0 M
  1118. 7200 0 D
  1119. 0 7200 D
  1120. -7200 0 D
  1121. P
  1122. PSL_clip N
  1123. 600 5040 M
  1124. 0 1440 D
  1125. 5760 0 D
  1126. 0 -2160 D
  1127. -12 0 D
  1128. -12 0 D
  1129. -12 0 D
  1130. -12 0 D
  1131. -12 0 D
  1132. -12 0 D
  1133. -12 0 D
  1134. -12 0 D
  1135. -12 0 D
  1136. -12 0 D
  1137. 240 0 D
  1138. 0 -3600 D
  1139. -12 0 D
  1140. -12 0 D
  1141. -12 0 D
  1142. -12 0 D
  1143. -12 0 D
  1144. -12 0 D
  1145. -12 0 D
  1146. -12 0 D
  1147. -12 0 D
  1148. -12 0 D
  1149. -12 0 D
  1150. -12 0 D
  1151. -12 0 D
  1152. -12 0 D
  1153. -12 0 D
  1154. -12 0 D
  1155. -12 0 D
  1156. -12 0 D
  1157. -12 0 D
  1158. -12 0 D
  1159. -12 0 D
  1160. -12 0 D
  1161. -12 0 D
  1162. -12 0 D
  1163. -12 0 D
  1164. -12 0 D
  1165. -12 0 D
  1166. -12 0 D
  1167. -12 0 D
  1168. -12 0 D
  1169. -12 0 D
  1170. -12 0 D
  1171. -12 0 D
  1172. -12 0 D
  1173. -12 0 D
  1174. -12 0 D
  1175. -12 0 D
  1176. -12 0 D
  1177. -12 0 D
  1178. -12 0 D
  1179. -12 0 D
  1180. -12 0 D
  1181. -12 0 D
  1182. -12 0 D
  1183. -12 0 D
  1184. -12 0 D
  1185. -12 0 D
  1186. -12 0 D
  1187. -12 0 D
  1188. -12 0 D
  1189. -12 0 D
  1190. -12 0 D
  1191. -12 0 D
  1192. -12 0 D
  1193. -12 0 D
  1194. -12 0 D
  1195. -12 0 D
  1196. -12 0 D
  1197. -12 0 D
  1198. -12 0 D
  1199. S
  1200. PSL_cliprestore
  1201. U
  1202. [] 0 B
  1203. %%EndObject
  1204. 0 A
  1205. FQ
  1206. O0
  1207. 0 7800 TM
  1208. % PostScript produced by:
  1209. %@GMT: gmt psxy track.txt -R-10/50/67/77 -JM6i -O -K -Sc0.2c -Ggreen -W0.25p -Baf -BWSne -Y6.5i
  1210. %@PROJ: merc -10.00000000 50.00000000 67.00000000 77.00000000 -3339584.724 3339584.724 10116680.739 13812398.800 +proj=merc +lon_0=20 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1211. %%BeginObject PSL_Layer_7
  1212. 0 setlinecap
  1213. 0 setlinejoin
  1214. 3.32550952342 setmiterlimit
  1215. 8 W
  1216. 0 A
  1217. N 0 0 M 0 -83 D S
  1218. N 0 3984 M 0 83 D S
  1219. N 1200 0 M 0 -83 D S
  1220. N 1200 3984 M 0 83 D S
  1221. N 2400 0 M 0 -83 D S
  1222. N 2400 3984 M 0 83 D S
  1223. N 3600 0 M 0 -83 D S
  1224. N 3600 3984 M 0 83 D S
  1225. N 4800 0 M 0 -83 D S
  1226. N 4800 3984 M 0 83 D S
  1227. N 6000 0 M 0 -83 D S
  1228. N 6000 3984 M 0 83 D S
  1229. N 7200 0 M 0 -83 D S
  1230. N 7200 3984 M 0 83 D S
  1231. N 0 983 M -83 0 D S
  1232. N 7200 983 M 83 0 D S
  1233. 0 -167 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1234. 200 F0
  1235. (”10�) tc Z
  1236. 1200 -167 M (0�) tc Z
  1237. 2400 -167 M (10�) tc Z
  1238. 3600 -167 M (20�) tc Z
  1239. 4800 -167 M (30�) tc Z
  1240. 6000 -167 M (40�) tc Z
  1241. 7200 -167 M (50�) tc Z
  1242. -167 983 M (70�) mr Z
  1243. clipsave
  1244. 0 0 M
  1245. 7200 0 D
  1246. 0 3984 D
  1247. -7200 0 D
  1248. P
  1249. PSL_clip N
  1250. V
  1251. 4 W
  1252. {0 1 0 C} FS
  1253. O1
  1254. 47 600 2542 Sc
  1255. 47 6360 3470 Sc
  1256. 47 6240 2119 Sc
  1257. 47 6480 2119 Sc
  1258. 47 5760 313 Sc
  1259. U
  1260. PSL_cliprestore
  1261. 25 W
  1262. 0 A
  1263. 83 W
  1264. 1 A
  1265. N -42 0 M 0 313 D S
  1266. N 7242 0 M 0 313 D S
  1267. 0 A
  1268. N -42 313 M 0 670 D S
  1269. N 7242 313 M 0 670 D S
  1270. 1 A
  1271. N -42 983 M 0 737 D S
  1272. N 7242 983 M 0 737 D S
  1273. 0 A
  1274. N -42 1720 M 0 822 D S
  1275. N 7242 1720 M 0 822 D S
  1276. 1 A
  1277. N -42 2542 M 0 928 D S
  1278. N 7242 2542 M 0 928 D S
  1279. 0 A
  1280. N -42 3470 M 0 514 D S
  1281. N 7242 3470 M 0 514 D S
  1282. 1 A
  1283. N 0 -42 M 240 0 D S
  1284. N 0 4026 M 240 0 D S
  1285. 0 A
  1286. N 240 -42 M 240 0 D S
  1287. N 240 4026 M 240 0 D S
  1288. 1 A
  1289. N 480 -42 M 240 0 D S
  1290. N 480 4026 M 240 0 D S
  1291. 0 A
  1292. N 720 -42 M 240 0 D S
  1293. N 720 4026 M 240 0 D S
  1294. 1 A
  1295. N 960 -42 M 240 0 D S
  1296. N 960 4026 M 240 0 D S
  1297. 0 A
  1298. N 1200 -42 M 240 0 D S
  1299. N 1200 4026 M 240 0 D S
  1300. 1 A
  1301. N 1440 -42 M 240 0 D S
  1302. N 1440 4026 M 240 0 D S
  1303. 0 A
  1304. N 1680 -42 M 240 0 D S
  1305. N 1680 4026 M 240 0 D S
  1306. 1 A
  1307. N 1920 -42 M 240 0 D S
  1308. N 1920 4026 M 240 0 D S
  1309. 0 A
  1310. N 2160 -42 M 240 0 D S
  1311. N 2160 4026 M 240 0 D S
  1312. 1 A
  1313. N 2400 -42 M 240 0 D S
  1314. N 2400 4026 M 240 0 D S
  1315. 0 A
  1316. N 2640 -42 M 240 0 D S
  1317. N 2640 4026 M 240 0 D S
  1318. 1 A
  1319. N 2880 -42 M 240 0 D S
  1320. N 2880 4026 M 240 0 D S
  1321. 0 A
  1322. N 3120 -42 M 240 0 D S
  1323. N 3120 4026 M 240 0 D S
  1324. 1 A
  1325. N 3360 -42 M 240 0 D S
  1326. N 3360 4026 M 240 0 D S
  1327. 0 A
  1328. N 3600 -42 M 240 0 D S
  1329. N 3600 4026 M 240 0 D S
  1330. 1 A
  1331. N 3840 -42 M 240 0 D S
  1332. N 3840 4026 M 240 0 D S
  1333. 0 A
  1334. N 4080 -42 M 240 0 D S
  1335. N 4080 4026 M 240 0 D S
  1336. 1 A
  1337. N 4320 -42 M 240 0 D S
  1338. N 4320 4026 M 240 0 D S
  1339. 0 A
  1340. N 4560 -42 M 240 0 D S
  1341. N 4560 4026 M 240 0 D S
  1342. 1 A
  1343. N 4800 -42 M 240 0 D S
  1344. N 4800 4026 M 240 0 D S
  1345. 0 A
  1346. N 5040 -42 M 240 0 D S
  1347. N 5040 4026 M 240 0 D S
  1348. 1 A
  1349. N 5280 -42 M 240 0 D S
  1350. N 5280 4026 M 240 0 D S
  1351. 0 A
  1352. N 5520 -42 M 240 0 D S
  1353. N 5520 4026 M 240 0 D S
  1354. 1 A
  1355. N 5760 -42 M 240 0 D S
  1356. N 5760 4026 M 240 0 D S
  1357. 0 A
  1358. N 6000 -42 M 240 0 D S
  1359. N 6000 4026 M 240 0 D S
  1360. 1 A
  1361. N 6240 -42 M 240 0 D S
  1362. N 6240 4026 M 240 0 D S
  1363. 0 A
  1364. N 6480 -42 M 240 0 D S
  1365. N 6480 4026 M 240 0 D S
  1366. 1 A
  1367. N 6720 -42 M 240 0 D S
  1368. N 6720 4026 M 240 0 D S
  1369. 0 A
  1370. N 6960 -42 M 240 0 D S
  1371. N 6960 4026 M 240 0 D S
  1372. 8 W
  1373. N -83 0 M 7366 0 D S
  1374. N -83 -83 M 7366 0 D S
  1375. N 7200 -83 M 0 4150 D S
  1376. N 7283 -83 M 0 4150 D S
  1377. N 7283 3984 M -7366 0 D S
  1378. N 7283 4067 M -7366 0 D S
  1379. N 0 4067 M 0 -4150 D S
  1380. N -83 4067 M 0 -4150 D S
  1381. %%EndObject
  1382. 0 A
  1383. FQ
  1384. O0
  1385. 0 0 TM
  1386. % PostScript produced by:
  1387. %@GMT: gmt psxy track.txt -R-10/50/67/77 -JM6i -O -K -W0.25p
  1388. %@PROJ: merc -10.00000000 50.00000000 67.00000000 77.00000000 -3339584.724 3339584.724 10116680.739 13812398.800 +proj=merc +lon_0=20 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1389. %%BeginObject PSL_Layer_8
  1390. 0 setlinecap
  1391. 0 setlinejoin
  1392. 3.32550952342 setmiterlimit
  1393. V
  1394. 4 W
  1395. clipsave
  1396. 0 0 M
  1397. 7200 0 D
  1398. 0 3984 D
  1399. -7200 0 D
  1400. P
  1401. PSL_clip N
  1402. 600 2542 M
  1403. 155 94 D
  1404. 201 115 D
  1405. 165 89 D
  1406. 84 44 D
  1407. 172 85 D
  1408. 266 121 D
  1409. 182 77 D
  1410. 234 90 D
  1411. 191 67 D
  1412. 145 47 D
  1413. 198 59 D
  1414. 150 41 D
  1415. 151 38 D
  1416. 154 35 D
  1417. 207 41 D
  1418. 209 35 D
  1419. 158 23 D
  1420. 212 25 D
  1421. 160 14 D
  1422. 160 11 D
  1423. 215 9 D
  1424. 161 2 D
  1425. 161 -1 D
  1426. 160 -5 D
  1427. 214 -13 D
  1428. 213 -18 D
  1429. 211 -25 D
  1430. 157 -23 D
  1431. 155 -26 D
  1432. 257 -51 D
  1433. 252 -59 D
  1434. 50 -13 D
  1435. -55 -590 D
  1436. -44 -501 D
  1437. -21 -260 D
  1438. 200 1 D
  1439. 40 -1 D
  1440. -136 -303 D
  1441. -125 -293 D
  1442. -116 -284 D
  1443. -133 -343 D
  1444. -121 -329 D
  1445. -89 -254 D
  1446. S
  1447. PSL_cliprestore
  1448. U
  1449. %%EndObject
  1450. 0 A
  1451. FQ
  1452. O0
  1453. 0 0 TM
  1454. % PostScript produced by:
  1455. %@GMT: gmt psxy -R-10/50/67/77 -JM6i -O -K -W0.25p,red,-
  1456. %@PROJ: merc -10.00000000 50.00000000 67.00000000 77.00000000 -3339584.724 3339584.724 10116680.739 13812398.800 +proj=merc +lon_0=20 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1457. %%BeginObject PSL_Layer_9
  1458. 0 setlinecap
  1459. 0 setlinejoin
  1460. 3.32550952342 setmiterlimit
  1461. V
  1462. 4 W
  1463. [33 17] 0 B
  1464. 1 0 0 C
  1465. clipsave
  1466. 0 0 M
  1467. 7200 0 D
  1468. 0 3984 D
  1469. -7200 0 D
  1470. P
  1471. PSL_clip N
  1472. 600 2542 M
  1473. 138 25 D
  1474. 185 29 D
  1475. 93 13 D
  1476. 138 25 D
  1477. 185 29 D
  1478. 93 13 D
  1479. 138 25 D
  1480. 232 36 D
  1481. 46 6 D
  1482. 138 25 D
  1483. 232 36 D
  1484. 47 6 D
  1485. 184 33 D
  1486. 232 34 D
  1487. 184 33 D
  1488. 232 34 D
  1489. 184 33 D
  1490. 249 37 D
  1491. 215 38 D
  1492. 207 30 D
  1493. 100 19 D
  1494. 169 27 D
  1495. 142 20 D
  1496. 112 21 D
  1497. 164 26 D
  1498. 123 17 D
  1499. 103 19 D
  1500. 83 14 D
  1501. 153 24 D
  1502. 88 12 D
  1503. 88 16 D
  1504. 29 6 D
  1505. 182 29 D
  1506. 121 17 D
  1507. 112 21 D
  1508. 31 5 D
  1509. 165 26 D
  1510. 93 12 D
  1511. 47 1 D
  1512. 157 -2 D
  1513. 140 -5 D
  1514. -105 -1189 D
  1515. 221 -125 D
  1516. -90 -223 D
  1517. -251 -630 D
  1518. -146 -367 D
  1519. -158 -396 D
  1520. -65 -164 D
  1521. S
  1522. PSL_cliprestore
  1523. U
  1524. [] 0 B
  1525. %%EndObject
  1526. 0 A
  1527. FQ
  1528. O0
  1529. 0 0 TM
  1530. % PostScript produced by:
  1531. %@GMT: gmt psxy -R-10/50/67/77 -JM6i -O -K -Sc0.1c -Gcyan
  1532. %@PROJ: merc -10.00000000 50.00000000 67.00000000 77.00000000 -3339584.724 3339584.724 10116680.739 13812398.800 +proj=merc +lon_0=20 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1533. %%BeginObject PSL_Layer_10
  1534. 0 setlinecap
  1535. 0 setlinejoin
  1536. 3.32550952342 setmiterlimit
  1537. clipsave
  1538. 0 0 M
  1539. 7200 0 D
  1540. 0 3984 D
  1541. -7200 0 D
  1542. P
  1543. PSL_clip N
  1544. V
  1545. 4 W
  1546. {0 1 1 C} FS
  1547. 24 600 2542 Sc
  1548. 24 941 2742 Sc
  1549. 24 1300 2931 Sc
  1550. 24 1679 3106 Sc
  1551. 24 2076 3263 Sc
  1552. 24 2489 3400 Sc
  1553. 24 2918 3514 Sc
  1554. 24 3359 3603 Sc
  1555. 24 3809 3665 Sc
  1556. 24 4266 3698 Sc
  1557. 24 4725 3702 Sc
  1558. 24 5182 3676 Sc
  1559. 24 5635 3620 Sc
  1560. 24 6078 3538 Sc
  1561. 24 6345 3316 Sc
  1562. 24 6306 2896 Sc
  1563. 24 6272 2499 Sc
  1564. 24 6240 2123 Sc
  1565. 24 6429 2008 Sc
  1566. 24 6287 1684 Sc
  1567. 24 6156 1371 Sc
  1568. 24 6037 1070 Sc
  1569. 24 5926 778 Sc
  1570. 24 5824 496 Sc
  1571. U
  1572. PSL_cliprestore
  1573. %%EndObject
  1574. 0 A
  1575. FQ
  1576. O0
  1577. 0 0 TM
  1578. % PostScript produced by:
  1579. %@GMT: gmt psxy -R-10/50/67/77 -JM6i -O -K -Sc0.1c -Gblack
  1580. %@PROJ: merc -10.00000000 50.00000000 67.00000000 77.00000000 -3339584.724 3339584.724 10116680.739 13812398.800 +proj=merc +lon_0=20 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1581. %%BeginObject PSL_Layer_11
  1582. 0 setlinecap
  1583. 0 setlinejoin
  1584. 3.32550952342 setmiterlimit
  1585. clipsave
  1586. 0 0 M
  1587. 7200 0 D
  1588. 0 3984 D
  1589. -7200 0 D
  1590. P
  1591. PSL_clip N
  1592. V
  1593. 4 W
  1594. {0 A} FS
  1595. 24 600 2542 Sc
  1596. 24 936 2740 Sc
  1597. 24 1290 2926 Sc
  1598. 24 1663 3099 Sc
  1599. 24 2053 3255 Sc
  1600. 24 2460 3391 Sc
  1601. 24 2882 3506 Sc
  1602. 24 3316 3596 Sc
  1603. 24 3759 3660 Sc
  1604. 24 4209 3696 Sc
  1605. 24 4661 3703 Sc
  1606. 24 5113 3682 Sc
  1607. 24 5560 3632 Sc
  1608. 24 5999 3554 Sc
  1609. 24 6353 3401 Sc
  1610. 24 6314 2982 Sc
  1611. 24 6279 2586 Sc
  1612. 24 6247 2210 Sc
  1613. 24 6467 2090 Sc
  1614. 24 6323 1768 Sc
  1615. 24 6191 1457 Sc
  1616. 24 6071 1156 Sc
  1617. 24 5959 866 Sc
  1618. 24 5856 585 Sc
  1619. 24 5760 313 Sc
  1620. U
  1621. PSL_cliprestore
  1622. %%EndObject
  1623. 0 A
  1624. FQ
  1625. O0
  1626. 0 0 TM
  1627. % PostScript produced by:
  1628. %@GMT: gmt psxy -R-10/50/67/77 -JM6i -O -K -W0.25p,blue,-
  1629. %@PROJ: merc -10.00000000 50.00000000 67.00000000 77.00000000 -3339584.724 3339584.724 10116680.739 13812398.800 +proj=merc +lon_0=20 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1630. %%BeginObject PSL_Layer_12
  1631. 0 setlinecap
  1632. 0 setlinejoin
  1633. 3.32550952342 setmiterlimit
  1634. V
  1635. 4 W
  1636. [33 17] 0 B
  1637. 0 0 1 C
  1638. clipsave
  1639. 0 0 M
  1640. 7200 0 D
  1641. 0 3984 D
  1642. -7200 0 D
  1643. P
  1644. PSL_clip N
  1645. 600 2542 M
  1646. 5760 0 D
  1647. 0 928 D
  1648. -4 0 D
  1649. -5 0 D
  1650. -4 0 D
  1651. -5 0 D
  1652. -4 0 D
  1653. -5 0 D
  1654. -4 0 D
  1655. -5 0 D
  1656. -4 0 D
  1657. -4 0 D
  1658. -5 0 D
  1659. -4 0 D
  1660. -5 0 D
  1661. -4 0 D
  1662. -5 0 D
  1663. -4 0 D
  1664. -5 0 D
  1665. -4 0 D
  1666. -4 0 D
  1667. -5 0 D
  1668. -4 0 D
  1669. -5 0 D
  1670. -4 0 D
  1671. -5 0 D
  1672. -4 0 D
  1673. -5 0 D
  1674. -4 0 D
  1675. 0 -1351 D
  1676. 240 0 D
  1677. -36 0 D
  1678. -36 0 D
  1679. -36 0 D
  1680. -36 0 D
  1681. -36 0 D
  1682. -36 0 D
  1683. -36 0 D
  1684. -36 0 D
  1685. -36 0 D
  1686. -36 0 D
  1687. -36 0 D
  1688. -36 0 D
  1689. -36 0 D
  1690. -36 0 D
  1691. -36 0 D
  1692. -36 0 D
  1693. -36 0 D
  1694. -36 0 D
  1695. -36 0 D
  1696. -36 0 D
  1697. 0 -1806 D
  1698. S
  1699. PSL_cliprestore
  1700. U
  1701. [] 0 B
  1702. %%EndObject
  1703. 0 A
  1704. FQ
  1705. O0
  1706. 0 0 TM
  1707. % PostScript produced by:
  1708. %@GMT: gmt psxy -R-10/50/67/77 -JM6i -O -K -W0.25p,orange,-
  1709. %@PROJ: merc -10.00000000 50.00000000 67.00000000 77.00000000 -3339584.724 3339584.724 10116680.739 13812398.800 +proj=merc +lon_0=20 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1710. %%BeginObject PSL_Layer_13
  1711. 0 setlinecap
  1712. 0 setlinejoin
  1713. 3.32550952342 setmiterlimit
  1714. V
  1715. 4 W
  1716. [33 17] 0 B
  1717. 1 0.647 0 C
  1718. clipsave
  1719. 0 0 M
  1720. 7200 0 D
  1721. 0 3984 D
  1722. -7200 0 D
  1723. P
  1724. PSL_clip N
  1725. 600 2542 M
  1726. 0 928 D
  1727. 5760 0 D
  1728. 0 -1351 D
  1729. -40 0 D
  1730. -40 0 D
  1731. -40 0 D
  1732. 240 0 D
  1733. 0 -1806 D
  1734. -29 0 D
  1735. -29 0 D
  1736. -28 0 D
  1737. -29 0 D
  1738. -29 0 D
  1739. -29 0 D
  1740. -29 0 D
  1741. -28 0 D
  1742. -29 0 D
  1743. -29 0 D
  1744. -29 0 D
  1745. -29 0 D
  1746. -28 0 D
  1747. -29 0 D
  1748. -29 0 D
  1749. -29 0 D
  1750. -29 0 D
  1751. -28 0 D
  1752. -29 0 D
  1753. -29 0 D
  1754. -29 0 D
  1755. -29 0 D
  1756. -28 0 D
  1757. -29 0 D
  1758. -29 0 D
  1759. S
  1760. PSL_cliprestore
  1761. U
  1762. [] 0 B
  1763. %%EndObject
  1764. 0 A
  1765. FQ
  1766. O0
  1767. 0 0 TM
  1768. % PostScript produced by:
  1769. %@GMT: gmt psxy -R-10/50/67/77 -JM6i -O -K tmp.txt -Sc0.1c -Ggreen
  1770. %@PROJ: merc -10.00000000 50.00000000 67.00000000 77.00000000 -3339584.724 3339584.724 10116680.739 13812398.800 +proj=merc +lon_0=20 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1771. %%BeginObject PSL_Layer_14
  1772. 0 setlinecap
  1773. 0 setlinejoin
  1774. 3.32550952342 setmiterlimit
  1775. clipsave
  1776. 0 0 M
  1777. 7200 0 D
  1778. 0 3984 D
  1779. -7200 0 D
  1780. P
  1781. PSL_clip N
  1782. V
  1783. 4 W
  1784. {0 1 0 C} FS
  1785. 24 3600 2119 Sc
  1786. 24 3687 2051 Sc
  1787. 24 3772 1983 Sc
  1788. 24 3856 1914 Sc
  1789. 24 3937 1846 Sc
  1790. 24 4018 1776 Sc
  1791. 24 4097 1707 Sc
  1792. 24 4174 1637 Sc
  1793. 24 4250 1568 Sc
  1794. 24 4325 1498 Sc
  1795. 24 4398 1428 Sc
  1796. 24 4469 1358 Sc
  1797. 24 4540 1288 Sc
  1798. 24 4609 1218 Sc
  1799. 24 4676 1148 Sc
  1800. 24 4742 1079 Sc
  1801. 24 4808 1009 Sc
  1802. 24 4871 939 Sc
  1803. 24 4934 870 Sc
  1804. 24 4996 800 Sc
  1805. 24 5056 731 Sc
  1806. 24 5115 662 Sc
  1807. 24 5173 593 Sc
  1808. 24 5230 524 Sc
  1809. 24 5286 456 Sc
  1810. 24 5341 388 Sc
  1811. 24 5395 319 Sc
  1812. 24 5400 313 Sc
  1813. U
  1814. PSL_cliprestore
  1815. %%EndObject
  1816. 0 A
  1817. FQ
  1818. O0
  1819. 0 0 TM
  1820. % PostScript produced by:
  1821. %@GMT: gmt psxy -R-10/50/67/77 -JM6i -O -K -Sc0.2c -Gblack
  1822. %@PROJ: merc -10.00000000 50.00000000 67.00000000 77.00000000 -3339584.724 3339584.724 10116680.739 13812398.800 +proj=merc +lon_0=20 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1823. %%BeginObject PSL_Layer_15
  1824. 0 setlinecap
  1825. 0 setlinejoin
  1826. 3.32550952342 setmiterlimit
  1827. clipsave
  1828. 0 0 M
  1829. 7200 0 D
  1830. 0 3984 D
  1831. -7200 0 D
  1832. P
  1833. PSL_clip N
  1834. V
  1835. 4 W
  1836. {0 A} FS
  1837. 47 3600 2119 Sc
  1838. 47 3877 1896 Sc
  1839. 47 4137 1671 Sc
  1840. 47 4382 1443 Sc
  1841. 47 4611 1215 Sc
  1842. 47 4827 988 Sc
  1843. 47 5030 761 Sc
  1844. 47 5221 536 Sc
  1845. 47 5400 313 Sc
  1846. U
  1847. PSL_cliprestore
  1848. %%EndObject
  1849. 0 A
  1850. FQ
  1851. O0
  1852. 0 0 TM
  1853. % PostScript produced by:
  1854. %@GMT: gmt pstext -R0/6/0/4 -Jx1i -O -F+jLB+f14p,Courier
  1855. %@PROJ: xy 0.00000000 6.00000000 0.00000000 4.00000000 0.000 6.000 0.000 4.000 +xy
  1856. %%BeginObject PSL_Layer_16
  1857. 0 setlinecap
  1858. 0 setlinejoin
  1859. 3.32550952342 setmiterlimit
  1860. clipsave
  1861. 0 0 M
  1862. 7200 0 D
  1863. 0 4800 D
  1864. -7200 0 D
  1865. P
  1866. PSL_clip N
  1867. PSL_font_encode 8 get 0 eq {Standard+_Encoding /Courier /Courier PSL_reencode PSL_font_encode 8 1 put} if
  1868. 240 240 M 233 F8
  1869. (BLACK LINE: psxy default) bl Z
  1870. 240 480 M (RED LINE: Loxodrome mode) bl Z
  1871. 240 720 M (BLUE LINE: -Am mode) bl Z
  1872. 240 960 M (ORANGE LINE: -Ap mode) bl Z
  1873. 240 1200 M (GREEN PTS: Input) bl Z
  1874. 240 1440 M (BLACK PTS: -AR mode) bl Z
  1875. 240 1680 M (CYAN PTS: -Ar mode) bl Z
  1876. PSL_cliprestore
  1877. %%EndObject
  1878. grestore
  1879. PSL_movie_label_completion /PSL_movie_label_completion {} def
  1880. PSL_movie_prog_indicator_completion /PSL_movie_prog_indicator_completion {} def
  1881. %PSL_Begin_Trailer
  1882. %%PageTrailer
  1883. U
  1884. showpage
  1885. %%Trailer
  1886. end
  1887. %%EOF
Tip!

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

Comments

Loading...