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

fill_frame.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
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612 792
  4. %%Title: GMT v5.0.1b_r11380M [64-bit] Document from psbasemap
  5. %%Creator: GMT5
  6. %%For: pwessel
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Sun Apr 21 22:16:06 2013
  9. %%LanguageLevel: 2
  10. %%DocumentData: Clean7Bit
  11. %%Orientation: Portrait
  12. %%Pages: 1
  13. %%EndComments
  14. %%BeginProlog
  15. 250 dict begin
  16. /! {bind def} bind def
  17. /# {load def}!
  18. /A /setgray #
  19. /B /setdash #
  20. /C /setrgbcolor #
  21. /D /rlineto #
  22. /E {dup stringwidth pop}!
  23. /F /fill #
  24. /G /rmoveto #
  25. /H /sethsbcolor #
  26. /I /setpattern #
  27. /K /setcmykcolor #
  28. /L /lineto #
  29. /M /moveto #
  30. /N /newpath #
  31. /P /closepath #
  32. /R /rotate #
  33. /S /stroke #
  34. /T /translate #
  35. /U /grestore #
  36. /V /gsave #
  37. /W /setlinewidth #
  38. /Y {findfont exch scalefont setfont}!
  39. /Z /show #
  40. /FP {true charpath flattenpath}!
  41. /MU {matrix setmatrix}!
  42. /MS {/SMat matrix currentmatrix def}!
  43. /MR {SMat setmatrix}!
  44. /edef {exch def}!
  45. /FS {/fc edef /fs {V fc F U} def}!
  46. /FQ {/fs {} def}!
  47. /O0 {/os {N} def}!
  48. /O1 {/os {P S} def}!
  49. /FO {fs os}!
  50. /Sa {M MS dup 0 exch G 0.726542528 mul -72 R dup 0 D 4 {72 R dup 0 D -144 R dup 0 D} repeat pop MR FO}!
  51. /Sb {M dup 0 D exch 0 exch D neg 0 D FO}!
  52. /SB {MS T /BoxR edef /BoxW edef /BoxH edef BoxR 0 M
  53. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  54. /Sc {N 3 -1 roll 0 360 arc FO}!
  55. /Sd {M 4 {dup} repeat 0 G neg dup dup D exch D D FO}!
  56. /Se {N MS T R scale 0 0 1 0 360 arc MR FO}!
  57. /Sg {M MS 22.5 R dup 0 exch G -22.5 R 0.765366865 mul dup 0 D 6 {-45 R dup 0 D} repeat pop MR FO}!
  58. /Sh {M MS dup 0 G -120 R dup 0 D 4 {-60 R dup 0 D} repeat pop MR FO}!
  59. /Si {M MS dup neg 0 exch G 60 R 1.732050808 mul dup 0 D 120 R 0 D MR FO}!
  60. /Sj {M MS R dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D MR FO}!
  61. /Sn {M MS dup 0 exch G -36 R 1.175570505 mul dup 0 D 3 {-72 R dup 0 D} repeat pop MR FO}!
  62. /Sp {N 3 -1 roll 0 360 arc fs N}!
  63. /SP {M {D} repeat FO}!
  64. /Sr {M dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D FO}!
  65. /SR {MS T /BoxR edef /BoxW edef /BoxH edef BoxR BoxW -2 div BoxH -2 div T BoxR 0 M
  66. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  67. /Ss {M 1.414213562 mul dup dup dup -2 div dup G 0 D 0 exch D neg 0 D FO}!
  68. /St {M MS dup 0 exch G -60 R 1.732050808 mul dup 0 D -120 R 0 D MR FO}!
  69. /SV {0 exch M 0 D D D D D 0 D FO}!
  70. /Sv {0 0 M D D 0 D D D D D 0 D D FO}!
  71. /Sw {2 copy M 5 2 roll arc FO}!
  72. /Sx {M 1.414213562 mul 5 {dup} repeat -2 div dup G D neg 0 G neg D S}!
  73. /Sy {M dup 0 exch G dup -2 mul dup 0 exch D S}!
  74. /S+ {M dup 0 G dup -2 mul dup 0 D exch dup G 0 exch D S}!
  75. /S- {M dup 0 G dup -2 mul dup 0 D S}!
  76. /sw {stringwidth pop}!
  77. /sh {V MU 0 0 M FP pathbbox N 4 1 roll pop pop pop U}!
  78. /sd {V MU 0 0 M FP pathbbox N pop pop exch pop U}!
  79. /sH {V MU 0 0 M FP pathbbox N exch pop exch sub exch pop U}!
  80. /sb {E exch sh}!
  81. /bl {}!
  82. /bc {E -2 div 0 G}!
  83. /br {E neg 0 G}!
  84. /ml {dup 0 exch sh -2 div G}!
  85. /mc {dup E -2 div exch sh -2 div G}!
  86. /mr {dup E neg exch sh -2 div G}!
  87. /tl {dup 0 exch sh neg G}!
  88. /tc {dup E -2 div exch sh neg G}!
  89. /tr {dup E neg exch sh neg G}!
  90. /mx {2 copy lt {exch} if pop}!
  91. /PSL_xorig 0 def /PSL_yorig 0 def
  92. /TM {2 copy T PSL_yorig add /PSL_yorig edef PSL_xorig add /PSL_xorig edef}!
  93. /PSL_reencode {findfont dup length dict begin
  94. {1 index /FID ne {def}{pop pop} ifelse} forall
  95. exch /Encoding edef currentdict end definefont pop
  96. }!
  97. /PSL_eps_begin {
  98. /PSL_eps_state save def
  99. /PSL_dict_count countdictstack def
  100. /PSL_op_count count 1 sub def
  101. userdict begin
  102. /showpage {} def
  103. 0 setgray 0 setlinecap 1 setlinewidth
  104. 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath
  105. /languagelevel where
  106. {pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if
  107. }!
  108. /PSL_eps_end {
  109. count PSL_op_count sub {pop} repeat
  110. countdictstack PSL_dict_count sub {end} repeat
  111. PSL_eps_state restore
  112. }!
  113. /PSL_transp {
  114. /.setopacityalpha where {pop .setblendmode .setopacityalpha}{
  115. /pdfmark where {pop [ /BM exch /CA exch dup /ca exch /SetTransparency pdfmark}
  116. {pop pop} ifelse} ifelse
  117. }!
  118. /Standard+_Encoding [
  119. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  120. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  121. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  122. /.notdef /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
  123. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  124. /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
  125. /zero /one /two /three /four /five /six /seven
  126. /eight /nine /colon /semicolon /less /equal /greater /question
  127. /at /A /B /C /D /E /F /G
  128. /H /I /J /K /L /M /N /O
  129. /P /Q /R /S /T /U /V /W
  130. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  131. /quoteleft /a /b /c /d /e /f /g
  132. /h /i /j /k /l /m /n /o
  133. /p /q /r /s /t /u /v /w
  134. /x /y /z /braceleft /bar /braceright /asciitilde /florin
  135. /Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
  136. /Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
  137. /divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
  138. /onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
  139. /.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
  140. /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
  141. /Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
  142. /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
  143. /Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
  144. /dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
  145. /emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
  146. /Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
  147. /acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
  148. /egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
  149. /oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
  150. /udieresis /oslash /oe /germandbls /ugrave /Aring /aring /ydieresis
  151. ] def
  152. /PSL_font_encode 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 array astore def
  153. /F0 {/Helvetica Y}!
  154. /F1 {/Helvetica-Bold Y}!
  155. /F2 {/Helvetica-Oblique Y}!
  156. /F3 {/Helvetica-BoldOblique Y}!
  157. /F4 {/Times-Roman Y}!
  158. /F5 {/Times-Bold Y}!
  159. /F6 {/Times-Italic Y}!
  160. /F7 {/Times-BoldItalic Y}!
  161. /F8 {/Courier Y}!
  162. /F9 {/Courier-Bold Y}!
  163. /F10 {/Courier-Oblique Y}!
  164. /F11 {/Courier-BoldOblique Y}!
  165. /F12 {/Symbol Y}!
  166. /F13 {/AvantGarde-Book Y}!
  167. /F14 {/AvantGarde-BookOblique Y}!
  168. /F15 {/AvantGarde-Demi Y}!
  169. /F16 {/AvantGarde-DemiOblique Y}!
  170. /F17 {/Bookman-Demi Y}!
  171. /F18 {/Bookman-DemiItalic Y}!
  172. /F19 {/Bookman-Light Y}!
  173. /F20 {/Bookman-LightItalic Y}!
  174. /F21 {/Helvetica-Narrow Y}!
  175. /F22 {/Helvetica-Narrow-Bold Y}!
  176. /F23 {/Helvetica-Narrow-Oblique Y}!
  177. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  178. /F25 {/NewCenturySchlbk-Roman Y}!
  179. /F26 {/NewCenturySchlbk-Italic Y}!
  180. /F27 {/NewCenturySchlbk-Bold Y}!
  181. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  182. /F29 {/Palatino-Roman Y}!
  183. /F30 {/Palatino-Italic Y}!
  184. /F31 {/Palatino-Bold Y}!
  185. /F32 {/Palatino-BoldItalic Y}!
  186. /F33 {/ZapfChancery-MediumItalic Y}!
  187. /F34 {/ZapfDingbats Y}!
  188. /F35 {/Ryumin-Light-EUC-H Y}!
  189. /F36 {/Ryumin-Light-EUC-V Y}!
  190. /F37 {/GothicBBB-Medium-EUC-H Y}!
  191. /F38 {/GothicBBB-Medium-EUC-V Y}!
  192. /PSL_pathtextdict 26 dict def
  193. /PSL_pathtext
  194. {PSL_pathtextdict begin
  195. /textheight exch def
  196. /just exch def
  197. /offset exch def
  198. /str exch def
  199. /pathdist 0 def
  200. /setdist offset def
  201. /charcount 0 def
  202. /justy just 4 idiv textheight mul 2 div neg def
  203. V flattenpath
  204. {movetoproc} {linetoproc}
  205. {curvetoproc} {closepathproc}
  206. pathforall
  207. U N
  208. end
  209. } def
  210. PSL_pathtextdict begin
  211. /movetoproc
  212. { /newy exch def /newx exch def
  213. /firstx newx def /firsty newy def
  214. /ovr 0 def
  215. newx newy transform
  216. /cpy exch def /cpx exch def
  217. } def
  218. /linetoproc
  219. { /oldx newx def /oldy newy def
  220. /newy exch def /newx exch def
  221. /dx newx oldx sub def
  222. /dy newy oldy sub def
  223. /dist dx dup mul dy dup mul add sqrt def
  224. dist 0 ne
  225. { /dsx dx dist div ovr mul def
  226. /dsy dy dist div ovr mul def
  227. oldx dsx add oldy dsy add transform
  228. /cpy exch def /cpx exch def
  229. /pathdist pathdist dist add def
  230. {setdist pathdist le
  231. {charcount str length lt
  232. {setchar} {exit} ifelse}
  233. { /ovr setdist pathdist sub def
  234. exit}
  235. ifelse
  236. } loop
  237. } if
  238. } def
  239. /curvetoproc
  240. { (ERROR: No curveto's after flattenpath!)
  241. print
  242. } def
  243. /closepathproc
  244. {firstx firsty linetoproc
  245. firstx firsty movetoproc
  246. } def
  247. /setchar
  248. { /char str charcount 1 getinterval def
  249. /charcount charcount 1 add def
  250. /charwidth char stringwidth pop def
  251. V cpx cpy itransform T
  252. dy dx atan R
  253. 0 justy M
  254. char show
  255. 0 justy neg G
  256. currentpoint transform
  257. /cpy exch def /cpx exch def
  258. U /setdist setdist charwidth add def
  259. } def
  260. end
  261. /PSL_curved_text_labels
  262. { /bits exch def
  263. /PSL_clippath bits 1 and 1 eq def
  264. /PSL_placetext bits 2 and 0 eq def
  265. /PSL_strokeline bits 4 and 4 eq def
  266. /PSL_firstcall bits 32 and 32 eq def
  267. /PSL_lastcall bits 64 and 64 eq def
  268. /PSL_fillbox bits 128 and 128 eq def
  269. /PSL_drawbox bits 256 and 256 eq def
  270. /PSL_n1 PSL_n 1 sub def
  271. /PSL_m1 PSL_m 1 sub def
  272. /PSL_usebox PSL_fillbox PSL_drawbox or def
  273. PSL_CT_calcstringwidth
  274. PSL_CT_calclinedist
  275. PSL_CT_addcutpoints
  276. PSL_clippath PSL_firstcall and
  277. {clipsave N clippath} if
  278. PSL_setlinepen
  279. /PSL_nn1 PSL_nn 1 sub def
  280. /n 0 def
  281. /k 0 def
  282. /j 0 def
  283. /PSL_seg 0 def
  284. /PSL_xp PSL_nn array def
  285. /PSL_yp PSL_nn array def
  286. PSL_xp 0 PSL_xx 0 get put
  287. PSL_yp 0 PSL_yy 0 get put
  288. 1 1 PSL_nn1
  289. { /i exch def
  290. /node_type PSL_kind i get def
  291. /j j 1 add def
  292. PSL_xp j PSL_xx i get put
  293. PSL_yp j PSL_yy i get put
  294. node_type 1 eq
  295. {n 0 eq
  296. {PSL_CT_drawline}
  297. { PSL_CT_reversepath
  298. PSL_CT_textline} ifelse
  299. /j 0 def
  300. PSL_xp j PSL_xx i get put
  301. PSL_yp j PSL_yy i get put
  302. } if
  303. } for
  304. n 0 eq {PSL_CT_drawline} if
  305. PSL_lastcall
  306. {PSL_clippath
  307. {PSL_clip} if N
  308. } if
  309. } def
  310. /PSL_CT_textline
  311. {PSL_placetext
  312. {PSL_clippath
  313. {PSL_CT_clippath} {PSL_CT_placelabel} ifelse
  314. } if
  315. /n 0 def /k k 1 add def PSL_setlinepen
  316. } def
  317. /PSL_CT_calcstringwidth
  318. { /PSL_width PSL_m array def
  319. 0 1 PSL_m1
  320. { /i exch def
  321. PSL_width i PSL_str i get stringwidth pop put
  322. } for
  323. } def
  324. /PSL_CT_calclinedist
  325. { /PSL_newx PSL_x 0 get def
  326. /PSL_newy PSL_y 0 get def
  327. /dist 0.0 def
  328. /PSL_dist PSL_n array def
  329. PSL_dist 0 0.0 put
  330. 1 1 PSL_n1
  331. { /i exch def
  332. /PSL_oldx PSL_newx def
  333. /PSL_oldy PSL_newy def
  334. /PSL_newx PSL_x i get def
  335. /PSL_newy PSL_y i get def
  336. /dx PSL_newx PSL_oldx sub def
  337. /dy PSL_newy PSL_oldy sub def
  338. /dist dist dx dx mul dy dy mul add sqrt add def
  339. PSL_dist i dist put
  340. } for
  341. } def
  342. /PSL_CT_addcutpoints
  343. { /k 0 def
  344. /PSL_nc PSL_m 2 mul 1 add def
  345. /PSL_cuts PSL_nc array def
  346. /PSL_nc1 PSL_nc 1 sub def
  347. 0 1 PSL_m1
  348. { /i exch def
  349. /dist PSL_dist PSL_node i get get def
  350. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  351. PSL_cuts k dist halfwidth sub put
  352. /k k 1 add def
  353. PSL_cuts k dist halfwidth add put
  354. /k k 1 add def
  355. } for
  356. PSL_cuts k 100000.0 put
  357. /PSL_nn PSL_n PSL_m 2 mul add def
  358. /PSL_xx PSL_nn array def
  359. /PSL_yy PSL_nn array def
  360. /PSL_kind PSL_nn array def
  361. /j 0 def
  362. /k 0 def
  363. /dist 0.0 def
  364. 0 1 PSL_n1
  365. { /i exch def
  366. /last_dist dist def
  367. /dist PSL_dist i get def
  368. k 1 PSL_nc1
  369. { /kk exch def
  370. /this_cut PSL_cuts kk get def
  371. dist this_cut gt
  372. { /ds dist last_dist sub def
  373. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  374. /i1 i 0 eq {0} {i 1 sub} ifelse def
  375. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  376. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  377. PSL_kind j 1 put
  378. /j j 1 add def
  379. /k k 1 add def
  380. } if
  381. } for
  382. dist PSL_cuts k get le
  383. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  384. PSL_kind j 0 put
  385. /j j 1 add def
  386. } if
  387. } for
  388. } def
  389. /PSL_CT_reversepath
  390. {PSL_xp j get PSL_xp 0 get lt
  391. {0 1 j 2 idiv
  392. { /left exch def
  393. /right j left sub def
  394. /tmp PSL_xp left get def
  395. PSL_xp left PSL_xp right get put
  396. PSL_xp right tmp put
  397. /tmp PSL_yp left get def
  398. PSL_yp left PSL_yp right get put
  399. PSL_yp right tmp put
  400. } for
  401. } if
  402. } def
  403. /PSL_CT_placelabel
  404. {
  405. PSL_usebox
  406. {PSL_CT_clippath
  407. PSL_fillbox
  408. {V PSL_setboxrgb fill U} if
  409. PSL_drawbox
  410. {PSL_setboxpen S} if N
  411. } if
  412. PSL_settxtrgb PSL_CT_placeline PSL_str k get PSL_gap_x PSL_just PSL_height PSL_pathtext
  413. } def
  414. /PSL_CT_clippath
  415. {
  416. /H PSL_height 2 div PSL_gap_y add def
  417. /xoff j 1 add array def
  418. /yoff j 1 add array def
  419. /angle 0 def
  420. 0 1 j {
  421. /ii exch def
  422. /x PSL_xp ii get def
  423. /y PSL_yp ii get def
  424. ii 0 eq {
  425. /x1 PSL_xp 1 get def
  426. /y1 PSL_yp 1 get def
  427. /dx x1 x sub def
  428. /dy y1 y sub def
  429. }
  430. { /i1 ii 1 sub def
  431. /x1 PSL_xp i1 get def
  432. /y1 PSL_yp i1 get def
  433. /dx x x1 sub def
  434. /dy y y1 sub def
  435. } ifelse
  436. dx 0.0 ne dy 0.0 ne and
  437. { /angle dy dx atan 90 add def} if
  438. /sina angle sin def
  439. /cosa angle cos def
  440. xoff ii H cosa mul put
  441. yoff ii H sina mul put
  442. } for
  443. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  444. 1 1 j {
  445. /ii exch def
  446. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  447. } for
  448. j -1 0 {
  449. /ii exch def
  450. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  451. } for P
  452. } def
  453. /PSL_CT_drawline
  454. {
  455. /str 20 string def
  456. PSL_strokeline
  457. {PSL_CT_placeline PSL_setlinepen S} if
  458. /PSL_seg PSL_seg 1 add def
  459. /n 1 def
  460. } def
  461. /PSL_CT_placeline
  462. {PSL_xp 0 get PSL_yp 0 get M
  463. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  464. } def
  465. /PSL_straight_text_labels
  466. {
  467. /bits exch def
  468. /PSL_clippath bits 1 and 0 eq def
  469. /PSL_rounded bits 16 and 16 eq def
  470. /PSL_fillbox bits 128 and 128 eq def
  471. /PSL_drawbox bits 256 and 256 eq def
  472. /PSL_m1 PSL_m 1 sub def
  473. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  474. /PSL_justy PSL_just 4 idiv PSL_height mul 2 div neg def
  475. /PSL_usebox PSL_fillbox PSL_drawbox or def
  476. PSL_clippath
  477. {PSL_ST_clippath}
  478. {PSL_usebox {PSL_ST_clippath} if
  479. PSL_ST_placelabel
  480. } ifelse
  481. } def
  482. /PSL_ST_placelabel
  483. {PSL_settxtrgb
  484. 0 1 PSL_m1
  485. { /k exch def
  486. /xp PSL_txt_x k get def
  487. /yp PSL_txt_y k get def
  488. V PSL_txt_x k get PSL_txt_y k get T
  489. PSL_angle k get R
  490. /BoxW PSL_str k get stringwidth pop def
  491. BoxW PSL_justx mul PSL_justy M
  492. PSL_str k get show
  493. U
  494. } for
  495. } def
  496. /PSL_ST_clippath
  497. {N
  498. PSL_usebox not {clipsave clippath} if
  499. PSL_rounded {PSL_ST_clippath_round} {PSL_ST_clippath_rect} ifelse
  500. PSL_usebox
  501. {PSL_fillbox
  502. {V PSL_setboxrgb fill U} if
  503. PSL_drawbox
  504. {PSL_setboxpen S} if N
  505. }
  506. {PSL_clip
  507. } ifelse
  508. N
  509. } def
  510. /PSL_ST_clippath_rect
  511. {
  512. /BoxH PSL_height PSL_gap_y 2 mul add def
  513. /DelY BoxH BoxH 0 3 array astore def
  514. 0 1 PSL_m1
  515. { /k exch def
  516. /xp PSL_txt_x k get def
  517. /yp PSL_txt_y k get def
  518. /MAT PSL_angle k get matrix R def
  519. /BoxW PSL_str k get stringwidth pop PSL_gap_x 2 mul add def
  520. /x0 0 BoxW PSL_justx mul add def
  521. /y0 0 PSL_justy add PSL_gap_y sub def
  522. /DelX 0 BoxW BoxW 3 array astore def
  523. x0 y0 MAT transform
  524. /dy exch def /dx exch def
  525. xp dx add yp dy add M
  526. 0 1 2
  527. {
  528. /ii exch def
  529. x0 DelX ii get add y0 DelY ii get add MAT transform
  530. /dy exch def /dx exch def
  531. xp dx add yp dy add L
  532. } for P
  533. } for
  534. } def
  535. /PSL_ST_clippath_round
  536. {
  537. /PSL_justy2 PSL_just 4 idiv 2 div neg def
  538. /BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  539. /BoxH PSL_height PSL_gap_y 2 mul add def
  540. /y0 PSL_height PSL_gap_y 2 mul add PSL_justy2 mul def
  541. 0 1 PSL_m1
  542. { /k exch def
  543. /xp PSL_txt_x k get def
  544. /yp PSL_txt_y k get def
  545. /BoxW PSL_str k get stringwidth pop PSL_gap_x 2 mul add def
  546. /x0 BoxW PSL_justx mul def
  547. xp yp T PSL_angle k get R x0 y0 T
  548. BoxR 0 M
  549. 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
  550. x0 neg y0 neg T PSL_angle k get neg R xp neg yp neg T
  551. } for
  552. } def
  553. /PSL_nclip 0 def
  554. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  555. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  556. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  557. %%EndProlog
  558. %%BeginSetup
  559. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  560. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  561. %%EndSetup
  562. %%Page: 1 1
  563. %%BeginPageSetup
  564. V 0.06 0.06 scale
  565. %%EndPageSetup
  566. /PSL_page_xsize 10200 def
  567. /PSL_page_ysize 13200 def
  568. 0 A
  569. FQ
  570. O0
  571. 1200 472 TM
  572. % PostScript produced by:
  573. %%GMT: psbasemap -R0/15/0/25 -Jx1c -P -B0 -K -Y1c
  574. %%PROJ: xy 0.00000000 15.00000000 0.00000000 25.00000000 0.000 15.000 0.000 25.000 +xy +a=6378137.000 +b=6356752.314245
  575. %%BeginObject PSL_Layer_1
  576. 0 setlinecap
  577. 0 setlinejoin
  578. 3.32551 setmiterlimit
  579. 2 setlinecap
  580. /MM {neg exch M} def
  581. /PSL_A0_y 0 def
  582. /PSL_A1_y 0 def
  583. 25 W
  584. 0 11811 M 0 -11811 D S
  585. 8 W
  586. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  587. 7087 0 T
  588. /MM {exch M} def
  589. /PSL_A0_y 0 def
  590. /PSL_A1_y 0 def
  591. 25 W
  592. 0 11811 M 0 -11811 D S
  593. 8 W
  594. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  595. -7087 0 T
  596. /MM {neg M} def
  597. /PSL_A0_y 0 def
  598. /PSL_A1_y 0 def
  599. 25 W
  600. 0 0 M 7087 0 D S
  601. 8 W
  602. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  603. 0 11811 T
  604. /MM {M} def
  605. /PSL_A0_y 0 def
  606. /PSL_A1_y 0 def
  607. 25 W
  608. 0 0 M 7087 0 D S
  609. 8 W
  610. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  611. 0 -11811 T
  612. 0 setlinecap
  613. %%EndObject
  614. 0 A
  615. FQ
  616. O0
  617. 0 0 TM
  618. % PostScript produced by:
  619. %%GMT: pslegend -R0/15/0/25 -Jx1c -O -K -Dx1c/24c/8c/1c/TL -F+fyellow
  620. %%PROJ: xy 0.00000000 15.00000000 0.00000000 25.00000000 0.000 15.000 0.000 25.000 +xy +a=6378137.000 +b=6356752.314245
  621. %%BeginObject PSL_Layer_2
  622. 0 setlinecap
  623. 0 setlinejoin
  624. 3.32551 setmiterlimit
  625. 472 10866 T
  626. {1 1 0 C} FS
  627. 472 3780 1890 236 Sr
  628. 0 A
  629. FQ
  630. O0
  631. 0 0 TM
  632. % PostScript produced by:
  633. %%GMT: pstext -R0/5.90551/0/9.84252 -Jx1i -O -K -N -F+f+j @GMTAPI@-000001
  634. %%PROJ: xy 0.00000000 5.90551000 0.00000000 9.84252000 0.000 5.906 0.000 9.843 +xy +a=6378137.000 +b=6356752.314245
  635. %%BeginObject PSL_Layer_3
  636. 0 setlinecap
  637. 0 setlinejoin
  638. 3.32551 setmiterlimit
  639. 1890 166 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  640. 267 F0
  641. (yellow fill, no frame) bc Z
  642. %%EndObject
  643. -472 -10866 T
  644. %%EndObject
  645. 0 A
  646. FQ
  647. O0
  648. 0 0 TM
  649. % PostScript produced by:
  650. %%GMT: pslegend -R0/15/0/25 -Jx1c -O -K -Dx1c/22c/8c/1c/TL -F+p+fyellow
  651. %%PROJ: xy 0.00000000 15.00000000 0.00000000 25.00000000 0.000 15.000 0.000 25.000 +xy +a=6378137.000 +b=6356752.314245
  652. %%BeginObject PSL_Layer_4
  653. 0 setlinecap
  654. 0 setlinejoin
  655. 3.32551 setmiterlimit
  656. 472 9921 T
  657. 25 W
  658. {1 1 0 C} FS
  659. O1
  660. 472 3780 1890 236 Sr
  661. 0 A
  662. FQ
  663. O0
  664. 0 0 TM
  665. % PostScript produced by:
  666. %%GMT: pstext -R0/5.90551/0/9.84252 -Jx1i -O -K -N -F+f+j @GMTAPI@-000001
  667. %%PROJ: xy 0.00000000 5.90551000 0.00000000 9.84252000 0.000 5.906 0.000 9.843 +xy +a=6378137.000 +b=6356752.314245
  668. %%BeginObject PSL_Layer_5
  669. 0 setlinecap
  670. 0 setlinejoin
  671. 3.32551 setmiterlimit
  672. 1890 166 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  673. 267 F0
  674. (yellow fill, black frame) bc Z
  675. %%EndObject
  676. -472 -9921 T
  677. %%EndObject
  678. 0 A
  679. FQ
  680. O0
  681. 0 0 TM
  682. % PostScript produced by:
  683. %%GMT: pslegend -R0/15/0/25 -Jx1c -O -K -Dx1c/20c/8c/1c/TL -F+p2p,blue+fyellow@50
  684. %%PROJ: xy 0.00000000 15.00000000 0.00000000 25.00000000 0.000 15.000 0.000 25.000 +xy +a=6378137.000 +b=6356752.314245
  685. %%BeginObject PSL_Layer_6
  686. 0 setlinecap
  687. 0 setlinejoin
  688. 3.32551 setmiterlimit
  689. 472 8976 T
  690. 33 W
  691. 0 0 1 C
  692. {1 1 0 C 0.5 /Normal PSL_transp} FS
  693. O1
  694. 472 3780 1890 236 Sr
  695. 0 A
  696. 0 A
  697. FQ
  698. O0
  699. 0 0 TM
  700. % PostScript produced by:
  701. %%GMT: pstext -R0/5.90551/0/9.84252 -Jx1i -O -K -N -F+f+j @GMTAPI@-000001
  702. %%PROJ: xy 0.00000000 5.90551000 0.00000000 9.84252000 0.000 5.906 0.000 9.843 +xy +a=6378137.000 +b=6356752.314245
  703. %%BeginObject PSL_Layer_7
  704. 0 setlinecap
  705. 0 setlinejoin
  706. 3.32551 setmiterlimit
  707. 1890 166 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  708. 267 F0
  709. (yellow\10050 fill, blue frame) bc Z
  710. %%EndObject
  711. -472 -8976 T
  712. %%EndObject
  713. 0 A
  714. FQ
  715. O0
  716. 0 0 TM
  717. % PostScript produced by:
  718. %%GMT: pslegend -R0/15/0/25 -Jx1c -O -K -Dx1c/18c/8c/1c/TL -F+p2p,blue@50+fyellow
  719. %%PROJ: xy 0.00000000 15.00000000 0.00000000 25.00000000 0.000 15.000 0.000 25.000 +xy +a=6378137.000 +b=6356752.314245
  720. %%BeginObject PSL_Layer_8
  721. 0 setlinecap
  722. 0 setlinejoin
  723. 3.32551 setmiterlimit
  724. 472 8031 T
  725. 33 W
  726. 0 0 1 C 0.5 /Normal PSL_transp
  727. {1 1 0 C 1 /Normal PSL_transp} FS
  728. O1
  729. 472 3780 1890 236 Sr
  730. 1 /Normal PSL_transp 0 A
  731. 0 A
  732. FQ
  733. O0
  734. 0 0 TM
  735. % PostScript produced by:
  736. %%GMT: pstext -R0/5.90551/0/9.84252 -Jx1i -O -K -N -F+f+j @GMTAPI@-000001
  737. %%PROJ: xy 0.00000000 5.90551000 0.00000000 9.84252000 0.000 5.906 0.000 9.843 +xy +a=6378137.000 +b=6356752.314245
  738. %%BeginObject PSL_Layer_9
  739. 0 setlinecap
  740. 0 setlinejoin
  741. 3.32551 setmiterlimit
  742. 1890 166 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  743. 267 F0
  744. (yellow fill, blue\10050 frame) bc Z
  745. %%EndObject
  746. -472 -8031 T
  747. %%EndObject
  748. 0 A
  749. FQ
  750. O0
  751. 0 0 TM
  752. % PostScript produced by:
  753. %%GMT: pslegend -R0/15/0/25 -Jx1c -O -K -Dx1c/15c/8c/TL -F+p+fyellow
  754. %%PROJ: xy 0.00000000 15.00000000 0.00000000 25.00000000 0.000 15.000 0.000 25.000 +xy +a=6378137.000 +b=6356752.314245
  755. %%BeginObject PSL_Layer_10
  756. 0 setlinecap
  757. 0 setlinejoin
  758. 3.32551 setmiterlimit
  759. 472 6293 T
  760. 25 W
  761. {1 1 0 C} FS
  762. O1
  763. 793 3780 1890 397 Sr
  764. 0 A
  765. FQ
  766. O0
  767. 0 0 TM
  768. % PostScript produced by:
  769. %%GMT: pstext -R0/5.90551/0/9.84252 -Jx1i -O -K -N -M -F+f+a+j @GMTAPI@-000001
  770. %%PROJ: xy 0.00000000 5.90551000 0.00000000 9.84252000 0.000 5.906 0.000 9.843 +xy +a=6378137.000 +b=6356752.314245
  771. %%BeginObject PSL_Layer_11
  772. 0 setlinecap
  773. 0 setlinejoin
  774. 3.32551 setmiterlimit
  775. /PSL_linespace 220 def
  776. /PSL_parwidth 3646 def
  777. /PSL_parjust 4 def
  778. 0 A
  779. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  780. /PSL_setfont {
  781. /f exch def
  782. /k1 exch def
  783. /fz PSL_size k1 get def
  784. /fn PSL_fnt k1 get def
  785. fn PSL_lastfn eq fz PSL_lastfz eq and not {
  786. fz PSL_fontname fn get Y
  787. /PSL_lastfn fn def
  788. /PSL_lastfz fz def
  789. } if
  790. /fc PSL_color k1 get def
  791. fc PSL_lastfc ne {
  792. /PSL_c fc 3 mul def
  793. 0 1 2 {PSL_c add PSL_rgb exch get} for C
  794. /PSL_lastfc fc def
  795. } if
  796. f 32 and 32 eq {
  797. /PSL_UL fz 0.075 mul def
  798. fz 0.025 mul W
  799. /PSL_show {PSL_ushow} def
  800. }
  801. {
  802. /PSL_show {ashow} def
  803. } ifelse
  804. }!
  805. /PSL_setfont2 {
  806. /f exch def
  807. /k1 exch def
  808. /fz PSL_size k1 get def
  809. /fn PSL_fnt k1 get def
  810. fn PSL_lastfn eq fz PSL_lastfz eq and not {
  811. fz PSL_fontname fn get Y
  812. /PSL_lastfn fn def
  813. /PSL_lastfz fz def
  814. } if
  815. }!
  816. /PSL_wordheight {
  817. 0 0 M false charpath flattenpath pathbbox /up exch def pop /down exch def pop newpath
  818. down PSL_ymin lt {/PSL_ymin down def} if
  819. up PSL_ymax gt {/PSL_ymax up def} if
  820. }!
  821. /PSL_ushow {
  822. currentpoint /y0 exch def /x0 exch def
  823. ashow
  824. currentpoint pop /x1 exch def
  825. x0 y0 PSL_UL sub M x1 y0 PSL_UL sub L S
  826. x1 y0 M
  827. }!
  828. /PSL_placeword {
  829. /k exch def
  830. /flag PSL_flag k get def
  831. k flag PSL_setfont
  832. /sshow {ashow} def
  833. PSL_col 0 eq {
  834. /PSL_t 0 def
  835. flag 4 and 4 eq {
  836. pr_char 0 ( ) ashow
  837. } if
  838. }
  839. {
  840. /f PSL_flag k 1 sub get def
  841. /PSL_t f 3 and def
  842. f 32 and 32 eq flag 32 and 32 eq and {/sshow {PSL_ushow} def} if
  843. } ifelse
  844. /thisword_bshift PSL_bshift k get def
  845. thisword_bshift 0.0 ne {0 thisword_bshift G} if
  846. flag 8 and 8 eq {
  847. pr_char 0 PSL_spaces PSL_t get sshow
  848. k PSL_composite
  849. } if
  850. flag 24 and 0 eq {
  851. pr_char 0 PSL_spaces PSL_t get sshow pr_char 0 PSL_word k get PSL_show
  852. PSL_width k get 0 gt {/PSL_col PSL_col 1 add def} if
  853. } if
  854. thisword_bshift 0.0 ne {0 thisword_bshift neg G} if
  855. }!
  856. /PSL_composite {
  857. /k1 exch def
  858. /k2 k1 1 add def
  859. /char1 PSL_word k1 get def
  860. /char2 PSL_word k2 get def
  861. /w1 char1 stringwidth pop def
  862. /w2 char2 stringwidth pop def
  863. /delta w1 w2 sub 2 div PSL_scale mul def
  864. delta 0.0 gt {
  865. /dx1 0 def
  866. /dx2 delta def
  867. }
  868. { /dx1 delta neg def
  869. /dx2 0 def
  870. } ifelse
  871. dx1 0 G currentpoint
  872. pr_char 0 char1 PSL_show M
  873. delta 0 G
  874. pr_char 0 char2 ashow
  875. dx2 0 G
  876. }!
  877. /PSL_expand {
  878. /k1 exch def
  879. /extra PSL_parwidth previous_linewidth sub comp_width add def
  880. PSL_CRLF k1 PSL_n1 eq or {/spread 0 def} {/spread extra def} ifelse
  881. /PSL_scale previous_linewidth 0.0 gt {PSL_parwidth previous_linewidth div} {1.0} ifelse def
  882. /ndiv lsum ncomp sub def
  883. ndiv 0 eq {/ndiv 1 def} if
  884. PSL_parjust 4 eq {/pr_char spread ndiv div def} {/pr_char 0 def} ifelse
  885. PSL_parjust 2 eq {extra 2 div 0 G} if
  886. PSL_parjust 3 eq {extra 0 G} if
  887. /PSL_col 0 def
  888. }!
  889. /PSL_textjustifier {
  890. /PSL_mode exch def
  891. /PSL_col 0 def
  892. /PSL_ybase 0 def
  893. /PSL_parheight 0 def
  894. /PSL_ymin 0 def
  895. /PSL_ymax 0 def
  896. /PSL_top 0 def
  897. /PSL_bottom 0 def
  898. /last_font PSL_fnt 0 get def
  899. /last_size PSL_size 0 get def
  900. /last_color PSL_color 0 get def
  901. /previous_linewidth 0 def
  902. /stop 0 def
  903. /start 0 def
  904. /lsum 0 def
  905. /line 0 def
  906. /ncomp 0 def
  907. /comp_width 0 def
  908. 0 1 PSL_n1 {
  909. /i exch def
  910. /thisflag PSL_flag i get def
  911. i 0 eq {
  912. /PSL_t 0 def
  913. /lastflag 0 def
  914. }
  915. { /lastflag PSL_flag i 1 sub get def
  916. /PSL_t lastflag 3 and def
  917. } ifelse
  918. i thisflag PSL_setfont2
  919. /thisword_width PSL_width i get def
  920. /comp_add 0 def
  921. /compw_add 0 def
  922. /PSL_tabwidth ( ) stringwidth pop def
  923. /PSL_spacewidths PSL_spaces {stringwidth pop} forall 3 array astore def
  924. /ccount PSL_count i get def
  925. thisflag 4 and 4 eq {
  926. /thisword_width thisword_width PSL_tabwidth add def
  927. /ccount ccount 4 add def
  928. } if
  929. lastflag 8 and 8 eq {/PSL_t 0 def /comp_add 1 def /compw_add thisword_width def} if
  930. /new_linewidth previous_linewidth thisword_width add PSL_spacewidths PSL_t get add def
  931. /PSL_CRLF thisword_width 0.0 eq thisflag 16 and 0 eq and def
  932. /special thisflag 16 and 16 eq {true} {thisword_width 0.0 gt} ifelse def
  933. new_linewidth PSL_parwidth le special and
  934. {
  935. PSL_col 0 eq {
  936. /PSL_ymin 0 def
  937. /PSL_ymax 0 def
  938. } if
  939. /stop stop 1 add def
  940. /PSL_col PSL_col 1 add def
  941. /previous_linewidth new_linewidth def
  942. /lsum lsum ccount add PSL_t add def
  943. /ncomp ncomp comp_add add def
  944. /comp_width comp_width compw_add add def
  945. }
  946. {
  947. 1 PSL_mode eq {
  948. start PSL_expand
  949. start PSL_placeword
  950. }
  951. {PSL_word start get PSL_wordheight
  952. } ifelse
  953. /last stop 1 sub def
  954. /start start 1 add def
  955. 1 PSL_mode eq {
  956. start 1 last {PSL_placeword} for
  957. }
  958. {start 1 last {PSL_word exch get PSL_wordheight} for
  959. line 0 eq { /PSL_top PSL_ymax def} if
  960. } ifelse
  961. /start stop def
  962. /PSL_ybase PSL_ybase PSL_linespace sub def
  963. 1 PSL_mode eq {0 PSL_ybase M} if
  964. /stop stop 1 add def
  965. /previous_linewidth thisword_width def
  966. /lsum ccount def
  967. /ncomp comp_add def
  968. /comp_width compw_add def
  969. /PSL_col 0 def
  970. /line line 1 add def
  971. } ifelse
  972. } for
  973. /last stop 1 sub def
  974. last PSL_n lt {
  975. /PSL_CRLF true def
  976. 1 PSL_mode eq {
  977. start PSL_expand
  978. start PSL_placeword
  979. /start start 1 add def
  980. start 1 last {PSL_placeword} for
  981. }
  982. { /PSL_ymin 0 def
  983. PSL_word start get PSL_wordheight
  984. /start start 1 add def
  985. start 1 last {PSL_word exch get PSL_wordheight} for
  986. line 0 eq {
  987. /PSL_top PSL_ymax def
  988. } if
  989. } ifelse
  990. } if
  991. /PSL_bottom PSL_ymin def
  992. /PSL_parheight PSL_ybase neg PSL_top add PSL_bottom sub def
  993. } def
  994. /PSL_fontname
  995. /Helvetica
  996. 1 array astore def
  997. /PSL_n 22 def
  998. /PSL_n1 21 def
  999. /PSL_y0 727 def
  1000. /PSL_spaces [() ( ) ( ) ] def
  1001. /PSL_lastfn -1 def
  1002. /PSL_lastfz -1 def
  1003. /PSL_lastfc -1 def
  1004. /PSL_UL 0 def
  1005. /PSL_show {ashow} def
  1006. /PSL_word
  1007. (This) (text) (wraps) (to) (the) (next) (line.) (It) (uses) (all) (standard) (paragraph)
  1008. (modes.) (But) (what) (if) (you) (want) (to) (use) (left) (alignment?)
  1009. 22 array astore def
  1010. /PSL_fnt
  1011. 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  1012. 22 array astore def
  1013. /PSL_size
  1014. 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200
  1015. 200 200 200 200 200 200 200
  1016. 22 array astore def
  1017. /PSL_flag
  1018. 1 1 1 1 1 1 2 1 1 1 1 1 2 1 1 1 1 1 1 1 1 0
  1019. 22 array astore def
  1020. /PSL_bshift
  1021. 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  1022. 22 array astore def
  1023. /PSL_color
  1024. 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  1025. 22 array astore def
  1026. /PSL_rgb
  1027. 0 0 0
  1028. 3 array astore def
  1029. /PSL_width 22 array def
  1030. 0 1 PSL_n1 {
  1031. /i edef
  1032. PSL_size i get PSL_fontname PSL_fnt i get get Y
  1033. PSL_width i PSL_word i get stringwidth pop put
  1034. } for
  1035. /PSL_count 22 array def
  1036. 0 1 PSL_n1 {PSL_count exch dup PSL_word exch get length put} for
  1037. 1 1 PSL_n1 {
  1038. /k edef
  1039. PSL_flag k get 16 and 16 eq {
  1040. /k1 k 1 sub def
  1041. /w1 PSL_width k1 get def
  1042. /w2 PSL_width k get def
  1043. PSL_width k1 w1 w2 gt {w1} {w2} ifelse put
  1044. PSL_width k 0 put
  1045. PSL_count k 0 put
  1046. } if
  1047. } for
  1048. V 67 727 T
  1049. 0 0 M
  1050. 0 PSL_textjustifier
  1051. /PSL_justify 9 def
  1052. /PSL_x0 PSL_parwidth PSL_justify 1 sub 4 mod 0.5 mul neg mul def
  1053. /PSL_y0 0 def
  1054. /PSL_txt_y0 PSL_top neg def
  1055. PSL_x0 PSL_y0 T
  1056. 0 PSL_txt_y0 T
  1057. 0 0 M
  1058. 1 PSL_textjustifier U
  1059. %%EndObject
  1060. -472 -6293 T
  1061. %%EndObject
  1062. 0 A
  1063. FQ
  1064. O0
  1065. 0 0 TM
  1066. % PostScript produced by:
  1067. %%GMT: pslegend -R0/15/0/25 -Jx1c -O -K -Dx1c/12c/8c/TL -F+p+fyellow
  1068. %%PROJ: xy 0.00000000 15.00000000 0.00000000 25.00000000 0.000 15.000 0.000 25.000 +xy +a=6378137.000 +b=6356752.314245
  1069. %%BeginObject PSL_Layer_12
  1070. 0 setlinecap
  1071. 0 setlinejoin
  1072. 3.32551 setmiterlimit
  1073. 472 4876 T
  1074. 25 W
  1075. {1 1 0 C} FS
  1076. O1
  1077. 793 3780 1890 397 Sr
  1078. 0 A
  1079. FQ
  1080. O0
  1081. 0 0 TM
  1082. % PostScript produced by:
  1083. %%GMT: pstext -R0/5.90551/0/9.84252 -Jx1i -O -K -N -M -F+f+a+j @GMTAPI@-000001
  1084. %%PROJ: xy 0.00000000 5.90551000 0.00000000 9.84252000 0.000 5.906 0.000 9.843 +xy +a=6378137.000 +b=6356752.314245
  1085. %%BeginObject PSL_Layer_13
  1086. 0 setlinecap
  1087. 0 setlinejoin
  1088. 3.32551 setmiterlimit
  1089. /PSL_linespace 220 def
  1090. /PSL_parwidth 3646 def
  1091. /PSL_parjust 1 def
  1092. 0 A
  1093. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1094. /PSL_setfont {
  1095. /f exch def
  1096. /k1 exch def
  1097. /fz PSL_size k1 get def
  1098. /fn PSL_fnt k1 get def
  1099. fn PSL_lastfn eq fz PSL_lastfz eq and not {
  1100. fz PSL_fontname fn get Y
  1101. /PSL_lastfn fn def
  1102. /PSL_lastfz fz def
  1103. } if
  1104. /fc PSL_color k1 get def
  1105. fc PSL_lastfc ne {
  1106. /PSL_c fc 3 mul def
  1107. 0 1 2 {PSL_c add PSL_rgb exch get} for C
  1108. /PSL_lastfc fc def
  1109. } if
  1110. f 32 and 32 eq {
  1111. /PSL_UL fz 0.075 mul def
  1112. fz 0.025 mul W
  1113. /PSL_show {PSL_ushow} def
  1114. }
  1115. {
  1116. /PSL_show {ashow} def
  1117. } ifelse
  1118. }!
  1119. /PSL_setfont2 {
  1120. /f exch def
  1121. /k1 exch def
  1122. /fz PSL_size k1 get def
  1123. /fn PSL_fnt k1 get def
  1124. fn PSL_lastfn eq fz PSL_lastfz eq and not {
  1125. fz PSL_fontname fn get Y
  1126. /PSL_lastfn fn def
  1127. /PSL_lastfz fz def
  1128. } if
  1129. }!
  1130. /PSL_wordheight {
  1131. 0 0 M false charpath flattenpath pathbbox /up exch def pop /down exch def pop newpath
  1132. down PSL_ymin lt {/PSL_ymin down def} if
  1133. up PSL_ymax gt {/PSL_ymax up def} if
  1134. }!
  1135. /PSL_ushow {
  1136. currentpoint /y0 exch def /x0 exch def
  1137. ashow
  1138. currentpoint pop /x1 exch def
  1139. x0 y0 PSL_UL sub M x1 y0 PSL_UL sub L S
  1140. x1 y0 M
  1141. }!
  1142. /PSL_placeword {
  1143. /k exch def
  1144. /flag PSL_flag k get def
  1145. k flag PSL_setfont
  1146. /sshow {ashow} def
  1147. PSL_col 0 eq {
  1148. /PSL_t 0 def
  1149. flag 4 and 4 eq {
  1150. pr_char 0 ( ) ashow
  1151. } if
  1152. }
  1153. {
  1154. /f PSL_flag k 1 sub get def
  1155. /PSL_t f 3 and def
  1156. f 32 and 32 eq flag 32 and 32 eq and {/sshow {PSL_ushow} def} if
  1157. } ifelse
  1158. /thisword_bshift PSL_bshift k get def
  1159. thisword_bshift 0.0 ne {0 thisword_bshift G} if
  1160. flag 8 and 8 eq {
  1161. pr_char 0 PSL_spaces PSL_t get sshow
  1162. k PSL_composite
  1163. } if
  1164. flag 24 and 0 eq {
  1165. pr_char 0 PSL_spaces PSL_t get sshow pr_char 0 PSL_word k get PSL_show
  1166. PSL_width k get 0 gt {/PSL_col PSL_col 1 add def} if
  1167. } if
  1168. thisword_bshift 0.0 ne {0 thisword_bshift neg G} if
  1169. }!
  1170. /PSL_composite {
  1171. /k1 exch def
  1172. /k2 k1 1 add def
  1173. /char1 PSL_word k1 get def
  1174. /char2 PSL_word k2 get def
  1175. /w1 char1 stringwidth pop def
  1176. /w2 char2 stringwidth pop def
  1177. /delta w1 w2 sub 2 div PSL_scale mul def
  1178. delta 0.0 gt {
  1179. /dx1 0 def
  1180. /dx2 delta def
  1181. }
  1182. { /dx1 delta neg def
  1183. /dx2 0 def
  1184. } ifelse
  1185. dx1 0 G currentpoint
  1186. pr_char 0 char1 PSL_show M
  1187. delta 0 G
  1188. pr_char 0 char2 ashow
  1189. dx2 0 G
  1190. }!
  1191. /PSL_expand {
  1192. /k1 exch def
  1193. /extra PSL_parwidth previous_linewidth sub comp_width add def
  1194. PSL_CRLF k1 PSL_n1 eq or {/spread 0 def} {/spread extra def} ifelse
  1195. /PSL_scale previous_linewidth 0.0 gt {PSL_parwidth previous_linewidth div} {1.0} ifelse def
  1196. /ndiv lsum ncomp sub def
  1197. ndiv 0 eq {/ndiv 1 def} if
  1198. PSL_parjust 4 eq {/pr_char spread ndiv div def} {/pr_char 0 def} ifelse
  1199. PSL_parjust 2 eq {extra 2 div 0 G} if
  1200. PSL_parjust 3 eq {extra 0 G} if
  1201. /PSL_col 0 def
  1202. }!
  1203. /PSL_textjustifier {
  1204. /PSL_mode exch def
  1205. /PSL_col 0 def
  1206. /PSL_ybase 0 def
  1207. /PSL_parheight 0 def
  1208. /PSL_ymin 0 def
  1209. /PSL_ymax 0 def
  1210. /PSL_top 0 def
  1211. /PSL_bottom 0 def
  1212. /last_font PSL_fnt 0 get def
  1213. /last_size PSL_size 0 get def
  1214. /last_color PSL_color 0 get def
  1215. /previous_linewidth 0 def
  1216. /stop 0 def
  1217. /start 0 def
  1218. /lsum 0 def
  1219. /line 0 def
  1220. /ncomp 0 def
  1221. /comp_width 0 def
  1222. 0 1 PSL_n1 {
  1223. /i exch def
  1224. /thisflag PSL_flag i get def
  1225. i 0 eq {
  1226. /PSL_t 0 def
  1227. /lastflag 0 def
  1228. }
  1229. { /lastflag PSL_flag i 1 sub get def
  1230. /PSL_t lastflag 3 and def
  1231. } ifelse
  1232. i thisflag PSL_setfont2
  1233. /thisword_width PSL_width i get def
  1234. /comp_add 0 def
  1235. /compw_add 0 def
  1236. /PSL_tabwidth ( ) stringwidth pop def
  1237. /PSL_spacewidths PSL_spaces {stringwidth pop} forall 3 array astore def
  1238. /ccount PSL_count i get def
  1239. thisflag 4 and 4 eq {
  1240. /thisword_width thisword_width PSL_tabwidth add def
  1241. /ccount ccount 4 add def
  1242. } if
  1243. lastflag 8 and 8 eq {/PSL_t 0 def /comp_add 1 def /compw_add thisword_width def} if
  1244. /new_linewidth previous_linewidth thisword_width add PSL_spacewidths PSL_t get add def
  1245. /PSL_CRLF thisword_width 0.0 eq thisflag 16 and 0 eq and def
  1246. /special thisflag 16 and 16 eq {true} {thisword_width 0.0 gt} ifelse def
  1247. new_linewidth PSL_parwidth le special and
  1248. {
  1249. PSL_col 0 eq {
  1250. /PSL_ymin 0 def
  1251. /PSL_ymax 0 def
  1252. } if
  1253. /stop stop 1 add def
  1254. /PSL_col PSL_col 1 add def
  1255. /previous_linewidth new_linewidth def
  1256. /lsum lsum ccount add PSL_t add def
  1257. /ncomp ncomp comp_add add def
  1258. /comp_width comp_width compw_add add def
  1259. }
  1260. {
  1261. 1 PSL_mode eq {
  1262. start PSL_expand
  1263. start PSL_placeword
  1264. }
  1265. {PSL_word start get PSL_wordheight
  1266. } ifelse
  1267. /last stop 1 sub def
  1268. /start start 1 add def
  1269. 1 PSL_mode eq {
  1270. start 1 last {PSL_placeword} for
  1271. }
  1272. {start 1 last {PSL_word exch get PSL_wordheight} for
  1273. line 0 eq { /PSL_top PSL_ymax def} if
  1274. } ifelse
  1275. /start stop def
  1276. /PSL_ybase PSL_ybase PSL_linespace sub def
  1277. 1 PSL_mode eq {0 PSL_ybase M} if
  1278. /stop stop 1 add def
  1279. /previous_linewidth thisword_width def
  1280. /lsum ccount def
  1281. /ncomp comp_add def
  1282. /comp_width compw_add def
  1283. /PSL_col 0 def
  1284. /line line 1 add def
  1285. } ifelse
  1286. } for
  1287. /last stop 1 sub def
  1288. last PSL_n lt {
  1289. /PSL_CRLF true def
  1290. 1 PSL_mode eq {
  1291. start PSL_expand
  1292. start PSL_placeword
  1293. /start start 1 add def
  1294. start 1 last {PSL_placeword} for
  1295. }
  1296. { /PSL_ymin 0 def
  1297. PSL_word start get PSL_wordheight
  1298. /start start 1 add def
  1299. start 1 last {PSL_word exch get PSL_wordheight} for
  1300. line 0 eq {
  1301. /PSL_top PSL_ymax def
  1302. } if
  1303. } ifelse
  1304. } if
  1305. /PSL_bottom PSL_ymin def
  1306. /PSL_parheight PSL_ybase neg PSL_top add PSL_bottom sub def
  1307. } def
  1308. /PSL_fontname
  1309. /Helvetica
  1310. 1 array astore def
  1311. /PSL_n 18 def
  1312. /PSL_n1 17 def
  1313. /PSL_y0 727 def
  1314. /PSL_spaces [() ( ) ( ) ] def
  1315. /PSL_lastfn -1 def
  1316. /PSL_lastfz -1 def
  1317. /PSL_lastfc -1 def
  1318. /PSL_UL 0 def
  1319. /PSL_show {ashow} def
  1320. /PSL_word
  1321. (Same) (trying) (to) (do) (left) (alignment.) (That) (seems) (to) (work) (nicely)
  1322. (but) (needs) (8) (parameters) (on) (P) (line.)
  1323. 18 array astore def
  1324. /PSL_fnt
  1325. 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  1326. 18 array astore def
  1327. /PSL_size
  1328. 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200
  1329. 200 200 200
  1330. 18 array astore def
  1331. /PSL_flag
  1332. 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 0
  1333. 18 array astore def
  1334. /PSL_bshift
  1335. 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  1336. 18 array astore def
  1337. /PSL_color
  1338. 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  1339. 18 array astore def
  1340. /PSL_rgb
  1341. 0 0 0
  1342. 3 array astore def
  1343. /PSL_width 18 array def
  1344. 0 1 PSL_n1 {
  1345. /i edef
  1346. PSL_size i get PSL_fontname PSL_fnt i get get Y
  1347. PSL_width i PSL_word i get stringwidth pop put
  1348. } for
  1349. /PSL_count 18 array def
  1350. 0 1 PSL_n1 {PSL_count exch dup PSL_word exch get length put} for
  1351. 1 1 PSL_n1 {
  1352. /k edef
  1353. PSL_flag k get 16 and 16 eq {
  1354. /k1 k 1 sub def
  1355. /w1 PSL_width k1 get def
  1356. /w2 PSL_width k get def
  1357. PSL_width k1 w1 w2 gt {w1} {w2} ifelse put
  1358. PSL_width k 0 put
  1359. PSL_count k 0 put
  1360. } if
  1361. } for
  1362. V 67 727 T
  1363. 0 0 M
  1364. 0 PSL_textjustifier
  1365. /PSL_justify 9 def
  1366. /PSL_x0 PSL_parwidth PSL_justify 1 sub 4 mod 0.5 mul neg mul def
  1367. /PSL_y0 0 def
  1368. /PSL_txt_y0 PSL_top neg def
  1369. PSL_x0 PSL_y0 T
  1370. 0 PSL_txt_y0 T
  1371. 0 0 M
  1372. 1 PSL_textjustifier U
  1373. %%EndObject
  1374. -472 -4876 T
  1375. %%EndObject
  1376. 0 A
  1377. FQ
  1378. O0
  1379. 0 0 TM
  1380. % PostScript produced by:
  1381. %%GMT: psxy -R0/15/0/25 -Jx1c -O -T
  1382. %%PROJ: xy 0.00000000 15.00000000 0.00000000 25.00000000 0.000 15.000 0.000 25.000 +xy +a=6378137.000 +b=6356752.314245
  1383. %%BeginObject PSL_Layer_14
  1384. 0 setlinecap
  1385. 0 setlinejoin
  1386. 3.32551 setmiterlimit
  1387. %%EndObject
  1388. %%PageTrailer
  1389. U
  1390. showpage
  1391. %%Trailer
  1392. end
  1393. %%EOF
Tip!

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

Comments

Loading...