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

cartsegmentize.ps 45 KB

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

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

Comments

Loading...