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

segments.ps 37 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
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612 792
  4. %%Title: GMT v5.0.0a (CVS Jun 27 2011 08:11:54) [64-bit] Document from GMT_psxy
  5. %%Creator: GMT
  6. %%For: pwessel
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Mon Jun 27 09:00:51 2011
  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 F}!
  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. /Standard+_Encoding [
  114. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  115. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  116. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  117. /.notdef /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
  118. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  119. /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
  120. /zero /one /two /three /four /five /six /seven
  121. /eight /nine /colon /semicolon /less /equal /greater /question
  122. /at /A /B /C /D /E /F /G
  123. /H /I /J /K /L /M /N /O
  124. /P /Q /R /S /T /U /V /W
  125. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  126. /quoteleft /a /b /c /d /e /f /g
  127. /h /i /j /k /l /m /n /o
  128. /p /q /r /s /t /u /v /w
  129. /x /y /z /braceleft /bar /braceright /asciitilde /florin
  130. /Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
  131. /Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
  132. /divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
  133. /onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
  134. /.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
  135. /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
  136. /Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
  137. /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
  138. /Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
  139. /dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
  140. /emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
  141. /Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
  142. /acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
  143. /egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
  144. /oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
  145. /udieresis /oslash /oe /germandbls /ugrave /Aring /aring /ydieresis
  146. ] def
  147. /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
  148. /F0 {/Helvetica Y}!
  149. /F1 {/Helvetica-Bold Y}!
  150. /F2 {/Helvetica-Oblique Y}!
  151. /F3 {/Helvetica-BoldOblique Y}!
  152. /F4 {/Times-Roman Y}!
  153. /F5 {/Times-Bold Y}!
  154. /F6 {/Times-Italic Y}!
  155. /F7 {/Times-BoldItalic Y}!
  156. /F8 {/Courier Y}!
  157. /F9 {/Courier-Bold Y}!
  158. /F10 {/Courier-Oblique Y}!
  159. /F11 {/Courier-BoldOblique Y}!
  160. /F12 {/Symbol Y}!
  161. /F13 {/AvantGarde-Book Y}!
  162. /F14 {/AvantGarde-BookOblique Y}!
  163. /F15 {/AvantGarde-Demi Y}!
  164. /F16 {/AvantGarde-DemiOblique Y}!
  165. /F17 {/Bookman-Demi Y}!
  166. /F18 {/Bookman-DemiItalic Y}!
  167. /F19 {/Bookman-Light Y}!
  168. /F20 {/Bookman-LightItalic Y}!
  169. /F21 {/Helvetica-Narrow Y}!
  170. /F22 {/Helvetica-Narrow-Bold Y}!
  171. /F23 {/Helvetica-Narrow-Oblique Y}!
  172. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  173. /F25 {/NewCenturySchlbk-Roman Y}!
  174. /F26 {/NewCenturySchlbk-Italic Y}!
  175. /F27 {/NewCenturySchlbk-Bold Y}!
  176. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  177. /F29 {/Palatino-Roman Y}!
  178. /F30 {/Palatino-Italic Y}!
  179. /F31 {/Palatino-Bold Y}!
  180. /F32 {/Palatino-BoldItalic Y}!
  181. /F33 {/ZapfChancery-MediumItalic Y}!
  182. /F34 {/ZapfDingbats Y}!
  183. /F35 {/Ryumin-Light-EUC-H Y}!
  184. /F36 {/Ryumin-Light-EUC-V Y}!
  185. /F37 {/GothicBBB-Medium-EUC-H Y}!
  186. /F38 {/GothicBBB-Medium-EUC-V Y}!
  187. /PSL_pathtextdict 26 dict def
  188. /PSL_pathtext
  189. {PSL_pathtextdict begin
  190. /textheight exch def
  191. /just exch def
  192. /offset exch def
  193. /str exch def
  194. /pathdist 0 def
  195. /setdist offset def
  196. /charcount 0 def
  197. /justy just 4 idiv textheight mul 2 div neg def
  198. V flattenpath
  199. {movetoproc} {linetoproc}
  200. {curvetoproc} {closepathproc}
  201. pathforall
  202. U N
  203. end
  204. } def
  205. PSL_pathtextdict begin
  206. /movetoproc
  207. { /newy exch def /newx exch def
  208. /firstx newx def /firsty newy def
  209. /ovr 0 def
  210. newx newy transform
  211. /cpy exch def /cpx exch def
  212. } def
  213. /linetoproc
  214. { /oldx newx def /oldy newy def
  215. /newy exch def /newx exch def
  216. /dx newx oldx sub def
  217. /dy newy oldy sub def
  218. /dist dx dup mul dy dup mul add sqrt def
  219. dist 0 ne
  220. { /dsx dx dist div ovr mul def
  221. /dsy dy dist div ovr mul def
  222. oldx dsx add oldy dsy add transform
  223. /cpy exch def /cpx exch def
  224. /pathdist pathdist dist add def
  225. {setdist pathdist le
  226. {charcount str length lt
  227. {setchar} {exit} ifelse}
  228. { /ovr setdist pathdist sub def
  229. exit}
  230. ifelse
  231. } loop
  232. } if
  233. } def
  234. /curvetoproc
  235. { (ERROR: No curveto's after flattenpath!)
  236. print
  237. } def
  238. /closepathproc
  239. {firstx firsty linetoproc
  240. firstx firsty movetoproc
  241. } def
  242. /setchar
  243. { /char str charcount 1 getinterval def
  244. /charcount charcount 1 add def
  245. /charwidth char stringwidth pop def
  246. V cpx cpy itransform T
  247. dy dx atan R
  248. 0 justy M
  249. char show
  250. 0 justy neg G
  251. currentpoint transform
  252. /cpy exch def /cpx exch def
  253. U /setdist setdist charwidth add def
  254. } def
  255. end
  256. /PSL_curved_text_labels
  257. { /bits exch def
  258. /PSL_clippath bits 1 and 1 eq def
  259. /PSL_placetext bits 2 and 0 eq def
  260. /PSL_strokeline bits 4 and 4 eq def
  261. /PSL_firstcall bits 32 and 32 eq def
  262. /PSL_lastcall bits 64 and 64 eq def
  263. /PSL_fillbox bits 128 and 128 eq def
  264. /PSL_drawbox bits 256 and 256 eq def
  265. /PSL_n1 PSL_n 1 sub def
  266. /PSL_m1 PSL_m 1 sub def
  267. /PSL_usebox PSL_fillbox PSL_drawbox or def
  268. PSL_CT_calcstringwidth
  269. PSL_CT_calclinedist
  270. PSL_CT_addcutpoints
  271. PSL_clippath PSL_firstcall and
  272. {clipsave N clippath} if
  273. PSL_setlinepen
  274. /PSL_nn1 PSL_nn 1 sub def
  275. /n 0 def
  276. /k 0 def
  277. /j 0 def
  278. /PSL_seg 0 def
  279. /PSL_xp PSL_nn array def
  280. /PSL_yp PSL_nn array def
  281. PSL_xp 0 PSL_xx 0 get put
  282. PSL_yp 0 PSL_yy 0 get put
  283. 1 1 PSL_nn1
  284. { /i exch def
  285. /node_type PSL_kind i get def
  286. /j j 1 add def
  287. PSL_xp j PSL_xx i get put
  288. PSL_yp j PSL_yy i get put
  289. node_type 1 eq
  290. {n 0 eq
  291. {PSL_CT_drawline}
  292. { PSL_CT_reversepath
  293. PSL_CT_textline} ifelse
  294. /j 0 def
  295. PSL_xp j PSL_xx i get put
  296. PSL_yp j PSL_yy i get put
  297. } if
  298. } for
  299. n 0 eq {PSL_CT_drawline} if
  300. PSL_lastcall
  301. {PSL_clippath
  302. {PSL_clip} if N
  303. } if
  304. } def
  305. /PSL_CT_textline
  306. {PSL_placetext
  307. {PSL_clippath
  308. {PSL_CT_clippath} {PSL_CT_placelabel} ifelse
  309. } if
  310. /n 0 def /k k 1 add def PSL_setlinepen
  311. } def
  312. /PSL_CT_calcstringwidth
  313. { /PSL_width PSL_m array def
  314. 0 1 PSL_m1
  315. { /i exch def
  316. PSL_width i PSL_str i get stringwidth pop put
  317. } for
  318. } def
  319. /PSL_CT_calclinedist
  320. { /PSL_newx PSL_x 0 get def
  321. /PSL_newy PSL_y 0 get def
  322. /dist 0.0 def
  323. /PSL_dist PSL_n array def
  324. PSL_dist 0 0.0 put
  325. 1 1 PSL_n1
  326. { /i exch def
  327. /PSL_oldx PSL_newx def
  328. /PSL_oldy PSL_newy def
  329. /PSL_newx PSL_x i get def
  330. /PSL_newy PSL_y i get def
  331. /dx PSL_newx PSL_oldx sub def
  332. /dy PSL_newy PSL_oldy sub def
  333. /dist dist dx dx mul dy dy mul add sqrt add def
  334. PSL_dist i dist put
  335. } for
  336. } def
  337. /PSL_CT_addcutpoints
  338. { /k 0 def
  339. /PSL_nc PSL_m 2 mul 1 add def
  340. /PSL_cuts PSL_nc array def
  341. /PSL_nc1 PSL_nc 1 sub def
  342. 0 1 PSL_m1
  343. { /i exch def
  344. /dist PSL_dist PSL_node i get get def
  345. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  346. PSL_cuts k dist halfwidth sub put
  347. /k k 1 add def
  348. PSL_cuts k dist halfwidth add put
  349. /k k 1 add def
  350. } for
  351. PSL_cuts k 100000.0 put
  352. /PSL_nn PSL_n PSL_m 2 mul add def
  353. /PSL_xx PSL_nn array def
  354. /PSL_yy PSL_nn array def
  355. /PSL_kind PSL_nn array def
  356. /j 0 def
  357. /k 0 def
  358. /dist 0.0 def
  359. 0 1 PSL_n1
  360. { /i exch def
  361. /last_dist dist def
  362. /dist PSL_dist i get def
  363. k 1 PSL_nc1
  364. { /kk exch def
  365. /this_cut PSL_cuts kk get def
  366. dist this_cut gt
  367. { /ds dist last_dist sub def
  368. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  369. /i1 i 0 eq {0} {i 1 sub} ifelse def
  370. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  371. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  372. PSL_kind j 1 put
  373. /j j 1 add def
  374. /k k 1 add def
  375. } if
  376. } for
  377. dist PSL_cuts k get le
  378. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  379. PSL_kind j 0 put
  380. /j j 1 add def
  381. } if
  382. } for
  383. } def
  384. /PSL_CT_reversepath
  385. {PSL_xp j get PSL_xp 0 get lt
  386. {0 1 j 2 idiv
  387. { /left exch def
  388. /right j left sub def
  389. /tmp PSL_xp left get def
  390. PSL_xp left PSL_xp right get put
  391. PSL_xp right tmp put
  392. /tmp PSL_yp left get def
  393. PSL_yp left PSL_yp right get put
  394. PSL_yp right tmp put
  395. } for
  396. } if
  397. } def
  398. /PSL_CT_placelabel
  399. {
  400. PSL_usebox
  401. {PSL_CT_clippath
  402. PSL_fillbox
  403. {V PSL_setboxrgb fill U} if
  404. PSL_drawbox
  405. {PSL_setboxpen S} if N
  406. } if
  407. PSL_settxtrgb PSL_CT_placeline PSL_str k get PSL_gap_x PSL_just PSL_height PSL_pathtext
  408. } def
  409. /PSL_CT_clippath
  410. {
  411. /H PSL_height 2 div PSL_gap_y add def
  412. /xoff j 1 add array def
  413. /yoff j 1 add array def
  414. /angle 0 def
  415. 0 1 j {
  416. /ii exch def
  417. /x PSL_xp ii get def
  418. /y PSL_yp ii get def
  419. ii 0 eq {
  420. /x1 PSL_xp 1 get def
  421. /y1 PSL_yp 1 get def
  422. /dx x1 x sub def
  423. /dy y1 y sub def
  424. }
  425. { /i1 ii 1 sub def
  426. /x1 PSL_xp i1 get def
  427. /y1 PSL_yp i1 get def
  428. /dx x x1 sub def
  429. /dy y y1 sub def
  430. } ifelse
  431. dx 0.0 ne dy 0.0 ne and
  432. { /angle dy dx atan 90 add def} if
  433. /sina angle sin def
  434. /cosa angle cos def
  435. xoff ii H cosa mul put
  436. yoff ii H sina mul put
  437. } for
  438. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  439. 1 1 j {
  440. /ii exch def
  441. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  442. } for
  443. j -1 0 {
  444. /ii exch def
  445. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  446. } for P
  447. } def
  448. /PSL_CT_drawline
  449. {
  450. /str 20 string def
  451. PSL_strokeline
  452. {PSL_CT_placeline PSL_setlinepen S} if
  453. /PSL_seg PSL_seg 1 add def
  454. /n 1 def
  455. } def
  456. /PSL_CT_placeline
  457. {PSL_xp 0 get PSL_yp 0 get M
  458. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  459. } def
  460. /PSL_straight_text_labels
  461. {
  462. /bits exch def
  463. /PSL_clippath bits 1 and 0 eq def
  464. /PSL_rounded bits 16 and 16 eq def
  465. /PSL_fillbox bits 128 and 128 eq def
  466. /PSL_drawbox bits 256 and 256 eq def
  467. /PSL_m1 PSL_m 1 sub def
  468. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  469. /PSL_justy PSL_just 4 idiv PSL_height mul 2 div neg def
  470. /PSL_usebox PSL_fillbox PSL_drawbox or def
  471. PSL_clippath
  472. {PSL_ST_clippath}
  473. {PSL_usebox {PSL_ST_clippath} if
  474. PSL_ST_placelabel
  475. } ifelse
  476. } def
  477. /PSL_ST_placelabel
  478. {PSL_settxtrgb
  479. 0 1 PSL_m1
  480. { /k exch def
  481. /xp PSL_txt_x k get def
  482. /yp PSL_txt_y k get def
  483. V PSL_txt_x k get PSL_txt_y k get T
  484. PSL_angle k get R
  485. /BoxW PSL_str k get stringwidth pop def
  486. BoxW PSL_justx mul PSL_justy M
  487. PSL_str k get show
  488. U
  489. } for
  490. } def
  491. /PSL_ST_clippath
  492. {N
  493. PSL_usebox not {clipsave clippath} if
  494. PSL_rounded {PSL_ST_clippath_round} {PSL_ST_clippath_rect} ifelse
  495. PSL_usebox
  496. {PSL_fillbox
  497. {V PSL_setboxrgb fill U} if
  498. PSL_drawbox
  499. {PSL_setboxpen S} if N
  500. }
  501. {PSL_clip
  502. } ifelse
  503. N
  504. } def
  505. /PSL_ST_clippath_rect
  506. {
  507. /BoxH PSL_height PSL_gap_y 2 mul add def
  508. /DelY BoxH BoxH 0 3 array astore def
  509. 0 1 PSL_m1
  510. { /k exch def
  511. /xp PSL_txt_x k get def
  512. /yp PSL_txt_y k get def
  513. /MAT PSL_angle k get matrix R def
  514. /BoxW PSL_str k get stringwidth pop PSL_gap_x 2 mul add def
  515. /x0 0 BoxW PSL_justx mul add def
  516. /y0 0 PSL_justy add PSL_gap_y sub def
  517. /DelX 0 BoxW BoxW 3 array astore def
  518. x0 y0 MAT transform
  519. /dy exch def /dx exch def
  520. xp dx add yp dy add M
  521. 0 1 2
  522. {
  523. /ii exch def
  524. x0 DelX ii get add y0 DelY ii get add MAT transform
  525. /dy exch def /dx exch def
  526. xp dx add yp dy add L
  527. } for P
  528. } for
  529. } def
  530. /PSL_ST_clippath_round
  531. {
  532. /PSL_justy2 PSL_just 4 idiv 2 div neg def
  533. /BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  534. /BoxH PSL_height PSL_gap_y 2 mul add def
  535. /y0 PSL_height PSL_gap_y 2 mul add PSL_justy2 mul def
  536. 0 1 PSL_m1
  537. { /k exch def
  538. /xp PSL_txt_x k get def
  539. /yp PSL_txt_y k get def
  540. /BoxW PSL_str k get stringwidth pop PSL_gap_x 2 mul add def
  541. /x0 BoxW PSL_justx mul def
  542. xp yp T PSL_angle k get R x0 y0 T
  543. BoxR 0 M
  544. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct P
  545. x0 neg y0 neg T PSL_angle k get neg R xp neg yp neg T
  546. } for
  547. } def
  548. /PSL_nclip 0 def
  549. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  550. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  551. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  552. %%EndProlog
  553. %%BeginSetup
  554. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  555. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  556. %%EndSetup
  557. %%Page: 1 1
  558. %%BeginPageSetup
  559. V 0.06 0.06 scale
  560. %%EndPageSetup
  561. /PSL_page_xsize 10200 def
  562. /PSL_page_ysize 13200 def
  563. 0 A
  564. FQ
  565. O0
  566. 1200 600 TM
  567. % PostScript produced by:
  568. %%GMT: psxy -R0/10/0/10 -JX3i -P -K -BaWSne gmt_i.txt -Sc0.2i -Ggreen -Y0.5i
  569. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  570. 0 setlinecap
  571. 0 setlinejoin
  572. 3.32551 setmiterlimit
  573. clipsave
  574. 0 0 M
  575. 3600 0 D
  576. 0 3600 D
  577. -3600 0 D
  578. PSL_eoclip N
  579. 4 W
  580. {0 1 0 C} FS
  581. 120 360 360 Sc
  582. 120 720 2520 Sc
  583. 120 1080 720 Sc
  584. 120 2160 1080 Sc
  585. 120 2880 1440 Sc
  586. 120 3240 1080 Sc
  587. PSL_cliprestore
  588. 2 setlinecap
  589. /MM {neg exch M} def
  590. /PSL_A0_y 83 def
  591. /PSL_A1_y 0 def
  592. 25 W
  593. 0 3600 M 0 -3600 D S
  594. 8 W
  595. 0 0 M -83 0 D S
  596. 0 720 M -83 0 D S
  597. 0 1440 M -83 0 D S
  598. 0 2160 M -83 0 D S
  599. 0 2880 M -83 0 D S
  600. 0 3600 M -83 0 D S
  601. /PSL_AH0 0
  602. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  603. 200 F0
  604. (0) sw mx
  605. (2) sw mx
  606. (4) sw mx
  607. (6) sw mx
  608. (8) sw mx
  609. (10) sw mx
  610. def
  611. /PSL_A0_y PSL_A0_y 83 add def
  612. 0 PSL_A0_y MM
  613. (0) mr Z
  614. 720 PSL_A0_y MM
  615. (2) mr Z
  616. 1440 PSL_A0_y MM
  617. (4) mr Z
  618. 2160 PSL_A0_y MM
  619. (6) mr Z
  620. 2880 PSL_A0_y MM
  621. (8) mr Z
  622. 3600 PSL_A0_y MM
  623. (10) mr Z
  624. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  625. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  626. 3600 0 T
  627. /MM {exch M} def
  628. /PSL_A0_y 83 def
  629. /PSL_A1_y 0 def
  630. 25 W
  631. 0 3600 M 0 -3600 D S
  632. 8 W
  633. 0 0 M 83 0 D S
  634. 0 720 M 83 0 D S
  635. 0 1440 M 83 0 D S
  636. 0 2160 M 83 0 D S
  637. 0 2880 M 83 0 D S
  638. 0 3600 M 83 0 D S
  639. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  640. -3600 0 T
  641. /MM {neg M} def
  642. /PSL_A0_y 83 def
  643. /PSL_A1_y 0 def
  644. 25 W
  645. 0 0 M 3600 0 D S
  646. 8 W
  647. 0 0 M 0 -83 D S
  648. 720 0 M 0 -83 D S
  649. 1440 0 M 0 -83 D S
  650. 2160 0 M 0 -83 D S
  651. 2880 0 M 0 -83 D S
  652. 3600 0 M 0 -83 D S
  653. /PSL_AH0 0
  654. (0) sh mx
  655. (2) sh mx
  656. (4) sh mx
  657. (6) sh mx
  658. (8) sh mx
  659. (10) sh mx
  660. def
  661. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  662. 0 PSL_A0_y MM
  663. (0) bc Z
  664. 720 PSL_A0_y MM
  665. (2) bc Z
  666. 1440 PSL_A0_y MM
  667. (4) bc Z
  668. 2160 PSL_A0_y MM
  669. (6) bc Z
  670. 2880 PSL_A0_y MM
  671. (8) bc Z
  672. 3600 PSL_A0_y MM
  673. (10) bc Z
  674. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  675. 0 3600 T
  676. /MM {M} def
  677. /PSL_A0_y 83 def
  678. /PSL_A1_y 0 def
  679. 25 W
  680. 0 0 M 3600 0 D S
  681. 8 W
  682. 0 0 M 0 83 D S
  683. 720 0 M 0 83 D S
  684. 1440 0 M 0 83 D S
  685. 2160 0 M 0 83 D S
  686. 2880 0 M 0 83 D S
  687. 3600 0 M 0 83 D S
  688. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  689. 0 -3600 T
  690. 0 setlinecap
  691. 0 A
  692. FQ
  693. O0
  694. 0 0 TM
  695. % PostScript produced by:
  696. %%GMT: psxy -R0/10/0/10 -JX3i -O -K t.txt -Sc0.1i -Gred --IO_SEGMENT_MARKER=B
  697. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  698. 0 setlinecap
  699. 0 setlinejoin
  700. 3.32551 setmiterlimit
  701. clipsave
  702. 0 0 M
  703. 3600 0 D
  704. 0 3600 D
  705. -3600 0 D
  706. PSL_eoclip N
  707. 4 W
  708. {1 0 0 C} FS
  709. 60 360 360 Sc
  710. 60 720 2520 Sc
  711. 60 1080 720 Sc
  712. 60 2160 1080 Sc
  713. 60 2880 1440 Sc
  714. 60 3240 1080 Sc
  715. PSL_cliprestore
  716. 0 A
  717. FQ
  718. O0
  719. 0 0 TM
  720. % PostScript produced by:
  721. %%GMT: psxy -R0/10/0/10 -JX3i -O -K t.txt -W0.5p --IO_SEGMENT_MARKER=B
  722. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  723. 0 setlinecap
  724. 0 setlinejoin
  725. 3.32551 setmiterlimit
  726. 8 W
  727. 360 360 M
  728. 360 2160 D
  729. 360 -1800 D
  730. S
  731. 2160 1080 M
  732. 720 360 D
  733. 360 -360 D
  734. S
  735. 0 A
  736. FQ
  737. O0
  738. 0 0 TM
  739. % PostScript produced by:
  740. %%GMT: pstext -R0/10/0/10 -JX3i -O -K -F+jTR+f12 -Dj0.1i
  741. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  742. 0 setlinecap
  743. 0 setlinejoin
  744. 3.32551 setmiterlimit
  745. clipsave
  746. 0 0 M
  747. 3600 0 D
  748. 0 3600 D
  749. -3600 0 D
  750. PSL_eoclip N
  751. 3480 3480 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  752. 200 F0
  753. (GMT-\>blank) tr Z
  754. PSL_cliprestore
  755. 0 A
  756. FQ
  757. O0
  758. 4200 0 TM
  759. % PostScript produced by:
  760. %%GMT: psxy -R0/10/0/10 -JX3i -O -K -BaWSne gmt_i.txt -Sc0.2i -Ggreen -X3.5i
  761. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  762. 0 setlinecap
  763. 0 setlinejoin
  764. 3.32551 setmiterlimit
  765. clipsave
  766. 0 0 M
  767. 3600 0 D
  768. 0 3600 D
  769. -3600 0 D
  770. PSL_eoclip N
  771. 4 W
  772. {0 1 0 C} FS
  773. 120 360 360 Sc
  774. 120 720 2520 Sc
  775. 120 1080 720 Sc
  776. 120 2160 1080 Sc
  777. 120 2880 1440 Sc
  778. 120 3240 1080 Sc
  779. PSL_cliprestore
  780. 2 setlinecap
  781. /MM {neg exch M} def
  782. /PSL_A0_y 83 def
  783. /PSL_A1_y 0 def
  784. 25 W
  785. 0 3600 M 0 -3600 D S
  786. 8 W
  787. 0 0 M -83 0 D S
  788. 0 720 M -83 0 D S
  789. 0 1440 M -83 0 D S
  790. 0 2160 M -83 0 D S
  791. 0 2880 M -83 0 D S
  792. 0 3600 M -83 0 D S
  793. /PSL_AH0 0
  794. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  795. 200 F0
  796. (0) sw mx
  797. (2) sw mx
  798. (4) sw mx
  799. (6) sw mx
  800. (8) sw mx
  801. (10) sw mx
  802. def
  803. /PSL_A0_y PSL_A0_y 83 add def
  804. 0 PSL_A0_y MM
  805. (0) mr Z
  806. 720 PSL_A0_y MM
  807. (2) mr Z
  808. 1440 PSL_A0_y MM
  809. (4) mr Z
  810. 2160 PSL_A0_y MM
  811. (6) mr Z
  812. 2880 PSL_A0_y MM
  813. (8) mr Z
  814. 3600 PSL_A0_y MM
  815. (10) mr Z
  816. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  817. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  818. 3600 0 T
  819. /MM {exch M} def
  820. /PSL_A0_y 83 def
  821. /PSL_A1_y 0 def
  822. 25 W
  823. 0 3600 M 0 -3600 D S
  824. 8 W
  825. 0 0 M 83 0 D S
  826. 0 720 M 83 0 D S
  827. 0 1440 M 83 0 D S
  828. 0 2160 M 83 0 D S
  829. 0 2880 M 83 0 D S
  830. 0 3600 M 83 0 D S
  831. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  832. -3600 0 T
  833. /MM {neg M} def
  834. /PSL_A0_y 83 def
  835. /PSL_A1_y 0 def
  836. 25 W
  837. 0 0 M 3600 0 D S
  838. 8 W
  839. 0 0 M 0 -83 D S
  840. 720 0 M 0 -83 D S
  841. 1440 0 M 0 -83 D S
  842. 2160 0 M 0 -83 D S
  843. 2880 0 M 0 -83 D S
  844. 3600 0 M 0 -83 D S
  845. /PSL_AH0 0
  846. (0) sh mx
  847. (2) sh mx
  848. (4) sh mx
  849. (6) sh mx
  850. (8) sh mx
  851. (10) sh mx
  852. def
  853. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  854. 0 PSL_A0_y MM
  855. (0) bc Z
  856. 720 PSL_A0_y MM
  857. (2) bc Z
  858. 1440 PSL_A0_y MM
  859. (4) bc Z
  860. 2160 PSL_A0_y MM
  861. (6) bc Z
  862. 2880 PSL_A0_y MM
  863. (8) bc Z
  864. 3600 PSL_A0_y MM
  865. (10) bc Z
  866. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  867. 0 3600 T
  868. /MM {M} def
  869. /PSL_A0_y 83 def
  870. /PSL_A1_y 0 def
  871. 25 W
  872. 0 0 M 3600 0 D S
  873. 8 W
  874. 0 0 M 0 83 D S
  875. 720 0 M 0 83 D S
  876. 1440 0 M 0 83 D S
  877. 2160 0 M 0 83 D S
  878. 2880 0 M 0 83 D S
  879. 3600 0 M 0 83 D S
  880. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  881. 0 -3600 T
  882. 0 setlinecap
  883. 0 A
  884. FQ
  885. O0
  886. 0 0 TM
  887. % PostScript produced by:
  888. %%GMT: psxy -R0/10/0/10 -JX3i -O -K t.txt -Sc0.1i -Gred --IO_SEGMENT_MARKER=N
  889. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  890. 0 setlinecap
  891. 0 setlinejoin
  892. 3.32551 setmiterlimit
  893. clipsave
  894. 0 0 M
  895. 3600 0 D
  896. 0 3600 D
  897. -3600 0 D
  898. PSL_eoclip N
  899. 4 W
  900. {1 0 0 C} FS
  901. 60 360 360 Sc
  902. 60 720 2520 Sc
  903. 60 1080 720 Sc
  904. 60 2160 1080 Sc
  905. 60 2880 1440 Sc
  906. 60 3240 1080 Sc
  907. PSL_cliprestore
  908. 0 A
  909. FQ
  910. O0
  911. 0 0 TM
  912. % PostScript produced by:
  913. %%GMT: psxy -R0/10/0/10 -JX3i -O -K t.txt -W0.5p --IO_SEGMENT_MARKER=N
  914. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  915. 0 setlinecap
  916. 0 setlinejoin
  917. 3.32551 setmiterlimit
  918. 8 W
  919. 360 360 M
  920. 360 2160 D
  921. 360 -1800 D
  922. S
  923. 2160 1080 M
  924. 720 360 D
  925. 360 -360 D
  926. S
  927. 0 A
  928. FQ
  929. O0
  930. 0 0 TM
  931. % PostScript produced by:
  932. %%GMT: pstext -R0/10/0/10 -JX3i -O -K -F+jTR+f12 -Dj0.1i
  933. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  934. 0 setlinecap
  935. 0 setlinejoin
  936. 3.32551 setmiterlimit
  937. clipsave
  938. 0 0 M
  939. 3600 0 D
  940. 0 3600 D
  941. -3600 0 D
  942. PSL_eoclip N
  943. 3480 3480 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  944. 200 F0
  945. (GMT-\>NaN) tr Z
  946. PSL_cliprestore
  947. 0 A
  948. FQ
  949. O0
  950. -4200 4080 TM
  951. % PostScript produced by:
  952. %%GMT: psxy -R0/10/0/10 -JX3i -O -K -BaWSne blank_i.txt -Sc0.2i -Ggreen -X-3.5i -Y3.4i --IO_SEGMENT_MARKER=B
  953. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  954. 0 setlinecap
  955. 0 setlinejoin
  956. 3.32551 setmiterlimit
  957. clipsave
  958. 0 0 M
  959. 3600 0 D
  960. 0 3600 D
  961. -3600 0 D
  962. PSL_eoclip N
  963. 4 W
  964. {0 1 0 C} FS
  965. 120 360 360 Sc
  966. 120 720 2520 Sc
  967. 120 1080 720 Sc
  968. 120 2160 1080 Sc
  969. 120 2880 1440 Sc
  970. 120 3240 1080 Sc
  971. PSL_cliprestore
  972. 2 setlinecap
  973. /MM {neg exch M} def
  974. /PSL_A0_y 83 def
  975. /PSL_A1_y 0 def
  976. 25 W
  977. 0 3600 M 0 -3600 D S
  978. 8 W
  979. 0 0 M -83 0 D S
  980. 0 720 M -83 0 D S
  981. 0 1440 M -83 0 D S
  982. 0 2160 M -83 0 D S
  983. 0 2880 M -83 0 D S
  984. 0 3600 M -83 0 D S
  985. /PSL_AH0 0
  986. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  987. 200 F0
  988. (0) sw mx
  989. (2) sw mx
  990. (4) sw mx
  991. (6) sw mx
  992. (8) sw mx
  993. (10) sw mx
  994. def
  995. /PSL_A0_y PSL_A0_y 83 add def
  996. 0 PSL_A0_y MM
  997. (0) mr Z
  998. 720 PSL_A0_y MM
  999. (2) mr Z
  1000. 1440 PSL_A0_y MM
  1001. (4) mr Z
  1002. 2160 PSL_A0_y MM
  1003. (6) mr Z
  1004. 2880 PSL_A0_y MM
  1005. (8) mr Z
  1006. 3600 PSL_A0_y MM
  1007. (10) mr Z
  1008. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1009. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1010. 3600 0 T
  1011. /MM {exch M} def
  1012. /PSL_A0_y 83 def
  1013. /PSL_A1_y 0 def
  1014. 25 W
  1015. 0 3600 M 0 -3600 D S
  1016. 8 W
  1017. 0 0 M 83 0 D S
  1018. 0 720 M 83 0 D S
  1019. 0 1440 M 83 0 D S
  1020. 0 2160 M 83 0 D S
  1021. 0 2880 M 83 0 D S
  1022. 0 3600 M 83 0 D S
  1023. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1024. -3600 0 T
  1025. /MM {neg M} def
  1026. /PSL_A0_y 83 def
  1027. /PSL_A1_y 0 def
  1028. 25 W
  1029. 0 0 M 3600 0 D S
  1030. 8 W
  1031. 0 0 M 0 -83 D S
  1032. 720 0 M 0 -83 D S
  1033. 1440 0 M 0 -83 D S
  1034. 2160 0 M 0 -83 D S
  1035. 2880 0 M 0 -83 D S
  1036. 3600 0 M 0 -83 D S
  1037. /PSL_AH0 0
  1038. (0) sh mx
  1039. (2) sh mx
  1040. (4) sh mx
  1041. (6) sh mx
  1042. (8) sh mx
  1043. (10) sh mx
  1044. def
  1045. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1046. 0 PSL_A0_y MM
  1047. (0) bc Z
  1048. 720 PSL_A0_y MM
  1049. (2) bc Z
  1050. 1440 PSL_A0_y MM
  1051. (4) bc Z
  1052. 2160 PSL_A0_y MM
  1053. (6) bc Z
  1054. 2880 PSL_A0_y MM
  1055. (8) bc Z
  1056. 3600 PSL_A0_y MM
  1057. (10) bc Z
  1058. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1059. 0 3600 T
  1060. /MM {M} def
  1061. /PSL_A0_y 83 def
  1062. /PSL_A1_y 0 def
  1063. 25 W
  1064. 0 0 M 3600 0 D S
  1065. 8 W
  1066. 0 0 M 0 83 D S
  1067. 720 0 M 0 83 D S
  1068. 1440 0 M 0 83 D S
  1069. 2160 0 M 0 83 D S
  1070. 2880 0 M 0 83 D S
  1071. 3600 0 M 0 83 D S
  1072. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1073. 0 -3600 T
  1074. 0 setlinecap
  1075. 0 A
  1076. FQ
  1077. O0
  1078. 0 0 TM
  1079. % PostScript produced by:
  1080. %%GMT: psxy -R0/10/0/10 -JX3i -O -K t.txt -Sc0.1i -Gred
  1081. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  1082. 0 setlinecap
  1083. 0 setlinejoin
  1084. 3.32551 setmiterlimit
  1085. clipsave
  1086. 0 0 M
  1087. 3600 0 D
  1088. 0 3600 D
  1089. -3600 0 D
  1090. PSL_eoclip N
  1091. 4 W
  1092. {1 0 0 C} FS
  1093. 60 360 360 Sc
  1094. 60 720 2520 Sc
  1095. 60 1080 720 Sc
  1096. 60 2160 1080 Sc
  1097. 60 2880 1440 Sc
  1098. 60 3240 1080 Sc
  1099. PSL_cliprestore
  1100. 0 A
  1101. FQ
  1102. O0
  1103. 0 0 TM
  1104. % PostScript produced by:
  1105. %%GMT: psxy -R0/10/0/10 -JX3i -O -K t.txt -W0.5p
  1106. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  1107. 0 setlinecap
  1108. 0 setlinejoin
  1109. 3.32551 setmiterlimit
  1110. 8 W
  1111. 360 360 M
  1112. 360 2160 D
  1113. 360 -1800 D
  1114. S
  1115. 2160 1080 M
  1116. 720 360 D
  1117. 360 -360 D
  1118. S
  1119. 0 A
  1120. FQ
  1121. O0
  1122. 0 0 TM
  1123. % PostScript produced by:
  1124. %%GMT: pstext -R0/10/0/10 -JX3i -O -K -F+jTR+f12 -Dj0.1i
  1125. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  1126. 0 setlinecap
  1127. 0 setlinejoin
  1128. 3.32551 setmiterlimit
  1129. clipsave
  1130. 0 0 M
  1131. 3600 0 D
  1132. 0 3600 D
  1133. -3600 0 D
  1134. PSL_eoclip N
  1135. 3480 3480 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1136. 200 F0
  1137. (blank-\>GMT) tr Z
  1138. PSL_cliprestore
  1139. 0 A
  1140. FQ
  1141. O0
  1142. 4200 0 TM
  1143. % PostScript produced by:
  1144. %%GMT: psxy -R0/10/0/10 -JX3i -O -K -BaWSne blank_i.txt -Sc0.2i -Ggreen -X3.5i --IO_SEGMENT_MARKER=B
  1145. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  1146. 0 setlinecap
  1147. 0 setlinejoin
  1148. 3.32551 setmiterlimit
  1149. clipsave
  1150. 0 0 M
  1151. 3600 0 D
  1152. 0 3600 D
  1153. -3600 0 D
  1154. PSL_eoclip N
  1155. 4 W
  1156. {0 1 0 C} FS
  1157. 120 360 360 Sc
  1158. 120 720 2520 Sc
  1159. 120 1080 720 Sc
  1160. 120 2160 1080 Sc
  1161. 120 2880 1440 Sc
  1162. 120 3240 1080 Sc
  1163. PSL_cliprestore
  1164. 2 setlinecap
  1165. /MM {neg exch M} def
  1166. /PSL_A0_y 83 def
  1167. /PSL_A1_y 0 def
  1168. 25 W
  1169. 0 3600 M 0 -3600 D S
  1170. 8 W
  1171. 0 0 M -83 0 D S
  1172. 0 720 M -83 0 D S
  1173. 0 1440 M -83 0 D S
  1174. 0 2160 M -83 0 D S
  1175. 0 2880 M -83 0 D S
  1176. 0 3600 M -83 0 D S
  1177. /PSL_AH0 0
  1178. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1179. 200 F0
  1180. (0) sw mx
  1181. (2) sw mx
  1182. (4) sw mx
  1183. (6) sw mx
  1184. (8) sw mx
  1185. (10) sw mx
  1186. def
  1187. /PSL_A0_y PSL_A0_y 83 add def
  1188. 0 PSL_A0_y MM
  1189. (0) mr Z
  1190. 720 PSL_A0_y MM
  1191. (2) mr Z
  1192. 1440 PSL_A0_y MM
  1193. (4) mr Z
  1194. 2160 PSL_A0_y MM
  1195. (6) mr Z
  1196. 2880 PSL_A0_y MM
  1197. (8) mr Z
  1198. 3600 PSL_A0_y MM
  1199. (10) mr Z
  1200. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1201. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1202. 3600 0 T
  1203. /MM {exch M} def
  1204. /PSL_A0_y 83 def
  1205. /PSL_A1_y 0 def
  1206. 25 W
  1207. 0 3600 M 0 -3600 D S
  1208. 8 W
  1209. 0 0 M 83 0 D S
  1210. 0 720 M 83 0 D S
  1211. 0 1440 M 83 0 D S
  1212. 0 2160 M 83 0 D S
  1213. 0 2880 M 83 0 D S
  1214. 0 3600 M 83 0 D S
  1215. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1216. -3600 0 T
  1217. /MM {neg M} def
  1218. /PSL_A0_y 83 def
  1219. /PSL_A1_y 0 def
  1220. 25 W
  1221. 0 0 M 3600 0 D S
  1222. 8 W
  1223. 0 0 M 0 -83 D S
  1224. 720 0 M 0 -83 D S
  1225. 1440 0 M 0 -83 D S
  1226. 2160 0 M 0 -83 D S
  1227. 2880 0 M 0 -83 D S
  1228. 3600 0 M 0 -83 D S
  1229. /PSL_AH0 0
  1230. (0) sh mx
  1231. (2) sh mx
  1232. (4) sh mx
  1233. (6) sh mx
  1234. (8) sh mx
  1235. (10) sh mx
  1236. def
  1237. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1238. 0 PSL_A0_y MM
  1239. (0) bc Z
  1240. 720 PSL_A0_y MM
  1241. (2) bc Z
  1242. 1440 PSL_A0_y MM
  1243. (4) bc Z
  1244. 2160 PSL_A0_y MM
  1245. (6) bc Z
  1246. 2880 PSL_A0_y MM
  1247. (8) bc Z
  1248. 3600 PSL_A0_y MM
  1249. (10) bc Z
  1250. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1251. 0 3600 T
  1252. /MM {M} def
  1253. /PSL_A0_y 83 def
  1254. /PSL_A1_y 0 def
  1255. 25 W
  1256. 0 0 M 3600 0 D S
  1257. 8 W
  1258. 0 0 M 0 83 D S
  1259. 720 0 M 0 83 D S
  1260. 1440 0 M 0 83 D S
  1261. 2160 0 M 0 83 D S
  1262. 2880 0 M 0 83 D S
  1263. 3600 0 M 0 83 D S
  1264. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1265. 0 -3600 T
  1266. 0 setlinecap
  1267. 0 A
  1268. FQ
  1269. O0
  1270. 0 0 TM
  1271. % PostScript produced by:
  1272. %%GMT: psxy -R0/10/0/10 -JX3i -O -K t.txt -Sc0.1i -Gred --IO_SEGMENT_MARKER=N
  1273. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  1274. 0 setlinecap
  1275. 0 setlinejoin
  1276. 3.32551 setmiterlimit
  1277. clipsave
  1278. 0 0 M
  1279. 3600 0 D
  1280. 0 3600 D
  1281. -3600 0 D
  1282. PSL_eoclip N
  1283. 4 W
  1284. {1 0 0 C} FS
  1285. 60 360 360 Sc
  1286. 60 720 2520 Sc
  1287. 60 1080 720 Sc
  1288. 60 2160 1080 Sc
  1289. 60 2880 1440 Sc
  1290. 60 3240 1080 Sc
  1291. PSL_cliprestore
  1292. 0 A
  1293. FQ
  1294. O0
  1295. 0 0 TM
  1296. % PostScript produced by:
  1297. %%GMT: psxy -R0/10/0/10 -JX3i -O -K t.txt -W0.5p --IO_SEGMENT_MARKER=N
  1298. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  1299. 0 setlinecap
  1300. 0 setlinejoin
  1301. 3.32551 setmiterlimit
  1302. 8 W
  1303. 360 360 M
  1304. 360 2160 D
  1305. 360 -1800 D
  1306. S
  1307. 2160 1080 M
  1308. 720 360 D
  1309. 360 -360 D
  1310. S
  1311. 0 A
  1312. FQ
  1313. O0
  1314. 0 0 TM
  1315. % PostScript produced by:
  1316. %%GMT: pstext -R0/10/0/10 -JX3i -O -K -F+jTR+f12 -Dj0.1i
  1317. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  1318. 0 setlinecap
  1319. 0 setlinejoin
  1320. 3.32551 setmiterlimit
  1321. clipsave
  1322. 0 0 M
  1323. 3600 0 D
  1324. 0 3600 D
  1325. -3600 0 D
  1326. PSL_eoclip N
  1327. 3480 3480 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1328. 200 F0
  1329. (blank-\>NaN) tr Z
  1330. PSL_cliprestore
  1331. 0 A
  1332. FQ
  1333. O0
  1334. -4200 4080 TM
  1335. % PostScript produced by:
  1336. %%GMT: psxy -R0/10/0/10 -JX3i -O -K -BaWSne nan_i.txt -Sc0.2i -Ggreen -X-3.5i -Y3.4i --IO_SEGMENT_MARKER=N
  1337. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  1338. 0 setlinecap
  1339. 0 setlinejoin
  1340. 3.32551 setmiterlimit
  1341. clipsave
  1342. 0 0 M
  1343. 3600 0 D
  1344. 0 3600 D
  1345. -3600 0 D
  1346. PSL_eoclip N
  1347. 4 W
  1348. {0 1 0 C} FS
  1349. 120 360 360 Sc
  1350. 120 720 2520 Sc
  1351. 120 1080 720 Sc
  1352. 120 2160 1080 Sc
  1353. 120 2880 1440 Sc
  1354. 120 3240 1080 Sc
  1355. PSL_cliprestore
  1356. 2 setlinecap
  1357. /MM {neg exch M} def
  1358. /PSL_A0_y 83 def
  1359. /PSL_A1_y 0 def
  1360. 25 W
  1361. 0 3600 M 0 -3600 D S
  1362. 8 W
  1363. 0 0 M -83 0 D S
  1364. 0 720 M -83 0 D S
  1365. 0 1440 M -83 0 D S
  1366. 0 2160 M -83 0 D S
  1367. 0 2880 M -83 0 D S
  1368. 0 3600 M -83 0 D S
  1369. /PSL_AH0 0
  1370. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1371. 200 F0
  1372. (0) sw mx
  1373. (2) sw mx
  1374. (4) sw mx
  1375. (6) sw mx
  1376. (8) sw mx
  1377. (10) sw mx
  1378. def
  1379. /PSL_A0_y PSL_A0_y 83 add def
  1380. 0 PSL_A0_y MM
  1381. (0) mr Z
  1382. 720 PSL_A0_y MM
  1383. (2) mr Z
  1384. 1440 PSL_A0_y MM
  1385. (4) mr Z
  1386. 2160 PSL_A0_y MM
  1387. (6) mr Z
  1388. 2880 PSL_A0_y MM
  1389. (8) mr Z
  1390. 3600 PSL_A0_y MM
  1391. (10) mr Z
  1392. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1393. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1394. 3600 0 T
  1395. /MM {exch M} def
  1396. /PSL_A0_y 83 def
  1397. /PSL_A1_y 0 def
  1398. 25 W
  1399. 0 3600 M 0 -3600 D S
  1400. 8 W
  1401. 0 0 M 83 0 D S
  1402. 0 720 M 83 0 D S
  1403. 0 1440 M 83 0 D S
  1404. 0 2160 M 83 0 D S
  1405. 0 2880 M 83 0 D S
  1406. 0 3600 M 83 0 D S
  1407. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1408. -3600 0 T
  1409. /MM {neg M} def
  1410. /PSL_A0_y 83 def
  1411. /PSL_A1_y 0 def
  1412. 25 W
  1413. 0 0 M 3600 0 D S
  1414. 8 W
  1415. 0 0 M 0 -83 D S
  1416. 720 0 M 0 -83 D S
  1417. 1440 0 M 0 -83 D S
  1418. 2160 0 M 0 -83 D S
  1419. 2880 0 M 0 -83 D S
  1420. 3600 0 M 0 -83 D S
  1421. /PSL_AH0 0
  1422. (0) sh mx
  1423. (2) sh mx
  1424. (4) sh mx
  1425. (6) sh mx
  1426. (8) sh mx
  1427. (10) sh mx
  1428. def
  1429. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1430. 0 PSL_A0_y MM
  1431. (0) bc Z
  1432. 720 PSL_A0_y MM
  1433. (2) bc Z
  1434. 1440 PSL_A0_y MM
  1435. (4) bc Z
  1436. 2160 PSL_A0_y MM
  1437. (6) bc Z
  1438. 2880 PSL_A0_y MM
  1439. (8) bc Z
  1440. 3600 PSL_A0_y MM
  1441. (10) bc Z
  1442. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1443. 0 3600 T
  1444. /MM {M} def
  1445. /PSL_A0_y 83 def
  1446. /PSL_A1_y 0 def
  1447. 25 W
  1448. 0 0 M 3600 0 D S
  1449. 8 W
  1450. 0 0 M 0 83 D S
  1451. 720 0 M 0 83 D S
  1452. 1440 0 M 0 83 D S
  1453. 2160 0 M 0 83 D S
  1454. 2880 0 M 0 83 D S
  1455. 3600 0 M 0 83 D S
  1456. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1457. 0 -3600 T
  1458. 0 setlinecap
  1459. 0 A
  1460. FQ
  1461. O0
  1462. 0 0 TM
  1463. % PostScript produced by:
  1464. %%GMT: psxy -R0/10/0/10 -JX3i -O -K t.txt -Sc0.1i -Gred
  1465. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  1466. 0 setlinecap
  1467. 0 setlinejoin
  1468. 3.32551 setmiterlimit
  1469. clipsave
  1470. 0 0 M
  1471. 3600 0 D
  1472. 0 3600 D
  1473. -3600 0 D
  1474. PSL_eoclip N
  1475. 4 W
  1476. {1 0 0 C} FS
  1477. 60 360 360 Sc
  1478. 60 720 2520 Sc
  1479. 60 1080 720 Sc
  1480. 60 2160 1080 Sc
  1481. 60 2880 1440 Sc
  1482. 60 3240 1080 Sc
  1483. PSL_cliprestore
  1484. 0 A
  1485. FQ
  1486. O0
  1487. 0 0 TM
  1488. % PostScript produced by:
  1489. %%GMT: psxy -R0/10/0/10 -JX3i -O -K t.txt -W0.5p
  1490. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  1491. 0 setlinecap
  1492. 0 setlinejoin
  1493. 3.32551 setmiterlimit
  1494. 8 W
  1495. 360 360 M
  1496. 360 2160 D
  1497. 360 -1800 D
  1498. S
  1499. 2160 1080 M
  1500. 720 360 D
  1501. 360 -360 D
  1502. S
  1503. 0 A
  1504. FQ
  1505. O0
  1506. 0 0 TM
  1507. % PostScript produced by:
  1508. %%GMT: pstext -R0/10/0/10 -JX3i -O -K -F+jTR+f12 -Dj0.1i
  1509. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  1510. 0 setlinecap
  1511. 0 setlinejoin
  1512. 3.32551 setmiterlimit
  1513. clipsave
  1514. 0 0 M
  1515. 3600 0 D
  1516. 0 3600 D
  1517. -3600 0 D
  1518. PSL_eoclip N
  1519. 3480 3480 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1520. 200 F0
  1521. (NaN-\>GMT) tr Z
  1522. PSL_cliprestore
  1523. 0 A
  1524. FQ
  1525. O0
  1526. 4200 0 TM
  1527. % PostScript produced by:
  1528. %%GMT: psxy -R0/10/0/10 -JX3i -O -K -BaWSne nan_i.txt -Sc0.2i -Ggreen -X3.5i --IO_SEGMENT_MARKER=N
  1529. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  1530. 0 setlinecap
  1531. 0 setlinejoin
  1532. 3.32551 setmiterlimit
  1533. clipsave
  1534. 0 0 M
  1535. 3600 0 D
  1536. 0 3600 D
  1537. -3600 0 D
  1538. PSL_eoclip N
  1539. 4 W
  1540. {0 1 0 C} FS
  1541. 120 360 360 Sc
  1542. 120 720 2520 Sc
  1543. 120 1080 720 Sc
  1544. 120 2160 1080 Sc
  1545. 120 2880 1440 Sc
  1546. 120 3240 1080 Sc
  1547. PSL_cliprestore
  1548. 2 setlinecap
  1549. /MM {neg exch M} def
  1550. /PSL_A0_y 83 def
  1551. /PSL_A1_y 0 def
  1552. 25 W
  1553. 0 3600 M 0 -3600 D S
  1554. 8 W
  1555. 0 0 M -83 0 D S
  1556. 0 720 M -83 0 D S
  1557. 0 1440 M -83 0 D S
  1558. 0 2160 M -83 0 D S
  1559. 0 2880 M -83 0 D S
  1560. 0 3600 M -83 0 D S
  1561. /PSL_AH0 0
  1562. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1563. 200 F0
  1564. (0) sw mx
  1565. (2) sw mx
  1566. (4) sw mx
  1567. (6) sw mx
  1568. (8) sw mx
  1569. (10) sw mx
  1570. def
  1571. /PSL_A0_y PSL_A0_y 83 add def
  1572. 0 PSL_A0_y MM
  1573. (0) mr Z
  1574. 720 PSL_A0_y MM
  1575. (2) mr Z
  1576. 1440 PSL_A0_y MM
  1577. (4) mr Z
  1578. 2160 PSL_A0_y MM
  1579. (6) mr Z
  1580. 2880 PSL_A0_y MM
  1581. (8) mr Z
  1582. 3600 PSL_A0_y MM
  1583. (10) mr Z
  1584. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1585. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1586. 3600 0 T
  1587. /MM {exch M} def
  1588. /PSL_A0_y 83 def
  1589. /PSL_A1_y 0 def
  1590. 25 W
  1591. 0 3600 M 0 -3600 D S
  1592. 8 W
  1593. 0 0 M 83 0 D S
  1594. 0 720 M 83 0 D S
  1595. 0 1440 M 83 0 D S
  1596. 0 2160 M 83 0 D S
  1597. 0 2880 M 83 0 D S
  1598. 0 3600 M 83 0 D S
  1599. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1600. -3600 0 T
  1601. /MM {neg M} def
  1602. /PSL_A0_y 83 def
  1603. /PSL_A1_y 0 def
  1604. 25 W
  1605. 0 0 M 3600 0 D S
  1606. 8 W
  1607. 0 0 M 0 -83 D S
  1608. 720 0 M 0 -83 D S
  1609. 1440 0 M 0 -83 D S
  1610. 2160 0 M 0 -83 D S
  1611. 2880 0 M 0 -83 D S
  1612. 3600 0 M 0 -83 D S
  1613. /PSL_AH0 0
  1614. (0) sh mx
  1615. (2) sh mx
  1616. (4) sh mx
  1617. (6) sh mx
  1618. (8) sh mx
  1619. (10) sh mx
  1620. def
  1621. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1622. 0 PSL_A0_y MM
  1623. (0) bc Z
  1624. 720 PSL_A0_y MM
  1625. (2) bc Z
  1626. 1440 PSL_A0_y MM
  1627. (4) bc Z
  1628. 2160 PSL_A0_y MM
  1629. (6) bc Z
  1630. 2880 PSL_A0_y MM
  1631. (8) bc Z
  1632. 3600 PSL_A0_y MM
  1633. (10) bc Z
  1634. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1635. 0 3600 T
  1636. /MM {M} def
  1637. /PSL_A0_y 83 def
  1638. /PSL_A1_y 0 def
  1639. 25 W
  1640. 0 0 M 3600 0 D S
  1641. 8 W
  1642. 0 0 M 0 83 D S
  1643. 720 0 M 0 83 D S
  1644. 1440 0 M 0 83 D S
  1645. 2160 0 M 0 83 D S
  1646. 2880 0 M 0 83 D S
  1647. 3600 0 M 0 83 D S
  1648. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1649. 0 -3600 T
  1650. 0 setlinecap
  1651. 0 A
  1652. FQ
  1653. O0
  1654. 0 0 TM
  1655. % PostScript produced by:
  1656. %%GMT: psxy -R0/10/0/10 -JX3i -O -K t.txt -Sc0.1i -Gred --IO_SEGMENT_MARKER=B
  1657. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  1658. 0 setlinecap
  1659. 0 setlinejoin
  1660. 3.32551 setmiterlimit
  1661. clipsave
  1662. 0 0 M
  1663. 3600 0 D
  1664. 0 3600 D
  1665. -3600 0 D
  1666. PSL_eoclip N
  1667. 4 W
  1668. {1 0 0 C} FS
  1669. 60 360 360 Sc
  1670. 60 720 2520 Sc
  1671. 60 1080 720 Sc
  1672. 60 2160 1080 Sc
  1673. 60 2880 1440 Sc
  1674. 60 3240 1080 Sc
  1675. PSL_cliprestore
  1676. 0 A
  1677. FQ
  1678. O0
  1679. 0 0 TM
  1680. % PostScript produced by:
  1681. %%GMT: psxy -R0/10/0/10 -JX3i -O -K t.txt -W0.5p --IO_SEGMENT_MARKER=B
  1682. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  1683. 0 setlinecap
  1684. 0 setlinejoin
  1685. 3.32551 setmiterlimit
  1686. 8 W
  1687. 360 360 M
  1688. 360 2160 D
  1689. 360 -1800 D
  1690. S
  1691. 2160 1080 M
  1692. 720 360 D
  1693. 360 -360 D
  1694. S
  1695. 0 A
  1696. FQ
  1697. O0
  1698. 0 0 TM
  1699. % PostScript produced by:
  1700. %%GMT: pstext -R0/10/0/10 -JX3i -O -K -F+jTR+f12 -Dj0.1i
  1701. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  1702. 0 setlinecap
  1703. 0 setlinejoin
  1704. 3.32551 setmiterlimit
  1705. clipsave
  1706. 0 0 M
  1707. 3600 0 D
  1708. 0 3600 D
  1709. -3600 0 D
  1710. PSL_eoclip N
  1711. 3480 3480 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1712. 200 F0
  1713. (NaN-\>blank) tr Z
  1714. PSL_cliprestore
  1715. 0 A
  1716. FQ
  1717. O0
  1718. 0 0 TM
  1719. % PostScript produced by:
  1720. %%GMT: psxy -R0/10/0/10 -JX3i -O -T
  1721. %%PROJ: xy 0.00000000 10.00000000 0.00000000 10.00000000 0.000 10.000 0.000 10.000 +xy +a=6378137.000 +b=6356752.314245
  1722. 0 setlinecap
  1723. 0 setlinejoin
  1724. 3.32551 setmiterlimit
  1725. %%PageTrailer
  1726. U
  1727. showpage
  1728. %%Trailer
  1729. end
  1730. %%EOF
Tip!

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

Comments

Loading...