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

pspolar_-T.ps 29 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
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612.0000 792.0000
  4. %%Title: GMT v6.1.0_32fb5fe-dirty_2020.01.18 [64-bit] Document from psbasemap
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Sat Jan 18 02:01:55 2020
  9. %%LanguageLevel: 2
  10. %%DocumentData: Clean7Bit
  11. %%Orientation: Landscape
  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 0 0 0 0 0 0 0 0 47 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. /F39 {/STSong-Light--UniGB-UTF8-H Y}!
  193. /F40 {/STFangsong-Light--UniGB-UTF8-H Y}!
  194. /F41 {/STHeiti-Regular--UniGB-UTF8-H Y}!
  195. /F42 {/STKaiti-Regular--UniGB-UTF8-H Y}!
  196. /F43 {/STSong-Light--UniGB-UTF8-V Y}!
  197. /F44 {/STFangsong-Light--UniGB-UTF8-V Y}!
  198. /F45 {/STHeiti-Regular--UniGB-UTF8-V Y}!
  199. /F46 {/STKaiti-Regular--UniGB-UTF8-V Y}!
  200. /PSL_pathtextdict 26 dict def
  201. /PSL_pathtext
  202. {PSL_pathtextdict begin
  203. /ydepth exch def
  204. /textheight exch def
  205. /just exch def
  206. /offset exch def
  207. /str exch def
  208. /pathdist 0 def
  209. /setdist offset def
  210. /charcount 0 def
  211. /justy just 4 idiv textheight mul 2 div neg ydepth sub def
  212. V flattenpath
  213. {movetoproc} {linetoproc}
  214. {curvetoproc} {closepathproc}
  215. pathforall
  216. U N
  217. end
  218. } def
  219. PSL_pathtextdict begin
  220. /movetoproc
  221. { /newy exch def /newx exch def
  222. /firstx newx def /firsty newy def
  223. /ovr 0 def
  224. newx newy transform
  225. /cpy exch def /cpx exch def
  226. } def
  227. /linetoproc
  228. { /oldx newx def /oldy newy def
  229. /newy exch def /newx exch def
  230. /dx newx oldx sub def
  231. /dy newy oldy sub def
  232. /dist dx dup mul dy dup mul add sqrt def
  233. dist 0 ne
  234. { /dsx dx dist div ovr mul def
  235. /dsy dy dist div ovr mul def
  236. oldx dsx add oldy dsy add transform
  237. /cpy exch def /cpx exch def
  238. /pathdist pathdist dist add def
  239. {setdist pathdist le
  240. {charcount str length lt
  241. {setchar} {exit} ifelse}
  242. { /ovr setdist pathdist sub def
  243. exit}
  244. ifelse
  245. } loop
  246. } if
  247. } def
  248. /curvetoproc
  249. { (ERROR: No curveto's after flattenpath!)
  250. print
  251. } def
  252. /closepathproc
  253. {firstx firsty linetoproc
  254. firstx firsty movetoproc
  255. } def
  256. /setchar
  257. { /char str charcount 1 getinterval def
  258. /charcount charcount 1 add def
  259. /charwidth char stringwidth pop def
  260. V cpx cpy itransform T
  261. dy dx atan R
  262. 0 justy M
  263. char show
  264. 0 justy neg G
  265. currentpoint transform
  266. /cpy exch def /cpx exch def
  267. U /setdist setdist charwidth add def
  268. } def
  269. end
  270. /PSL_set_label_heights
  271. {
  272. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  273. /PSL_heights PSL_n_labels array def
  274. 0 1 PSL_n_labels_minus_1
  275. { /psl_k exch def
  276. /psl_label PSL_label_str psl_k get def
  277. PSL_label_font psl_k get cvx exec
  278. psl_label sH /PSL_height edef
  279. PSL_heights psl_k PSL_height put
  280. } for
  281. } def
  282. /PSL_curved_path_labels
  283. { /psl_bits exch def
  284. /PSL_placetext psl_bits 2 and 2 eq def
  285. /PSL_clippath psl_bits 4 and 4 eq def
  286. /PSL_strokeline false def
  287. /PSL_fillbox psl_bits 128 and 128 eq def
  288. /PSL_drawbox psl_bits 256 and 256 eq def
  289. /PSL_n_paths1 PSL_n_paths 1 sub def
  290. /PSL_usebox PSL_fillbox PSL_drawbox or def
  291. PSL_clippath {clipsave N clippath} if
  292. /psl_k 0 def
  293. /psl_p 0 def
  294. 0 1 PSL_n_paths1
  295. { /psl_kk exch def
  296. /PSL_n PSL_path_n psl_kk get def
  297. /PSL_m PSL_label_n psl_kk get def
  298. /PSL_x PSL_path_x psl_k PSL_n getinterval def
  299. /PSL_y PSL_path_y psl_k PSL_n getinterval def
  300. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
  301. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
  302. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
  303. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
  304. PSL_curved_path_label
  305. /psl_k psl_k PSL_n add def
  306. /psl_p psl_p PSL_m add def
  307. } for
  308. PSL_clippath {PSL_eoclip} if N
  309. } def
  310. /PSL_curved_path_label
  311. {
  312. /PSL_n1 PSL_n 1 sub def
  313. /PSL_m1 PSL_m 1 sub def
  314. PSL_CT_calcstringwidth
  315. PSL_CT_calclinedist
  316. PSL_CT_excludelabels
  317. PSL_CT_addcutpoints
  318. /PSL_nn1 PSL_nn 1 sub def
  319. /n 0 def
  320. /k 0 def
  321. /j 0 def
  322. /PSL_seg 0 def
  323. /PSL_xp PSL_nn array def
  324. /PSL_yp PSL_nn array def
  325. PSL_xp 0 PSL_xx 0 get put
  326. PSL_yp 0 PSL_yy 0 get put
  327. 1 1 PSL_nn1
  328. { /i exch def
  329. /node_type PSL_kind i get def
  330. /j j 1 add def
  331. PSL_xp j PSL_xx i get put
  332. PSL_yp j PSL_yy i get put
  333. node_type 1 eq
  334. {n 0 eq
  335. {PSL_CT_drawline}
  336. { PSL_CT_reversepath
  337. PSL_CT_textline} ifelse
  338. /j 0 def
  339. PSL_xp j PSL_xx i get put
  340. PSL_yp j PSL_yy i get put
  341. } if
  342. } for
  343. n 0 eq {PSL_CT_drawline} if
  344. } def
  345. /PSL_CT_textline
  346. { PSL_fnt k get cvx exec
  347. /PSL_height PSL_heights k get def
  348. PSL_placetext {PSL_CT_placelabel} if
  349. PSL_clippath {PSL_CT_clippath} if
  350. /n 0 def /k k 1 add def
  351. } def
  352. /PSL_CT_calcstringwidth
  353. { /PSL_width_tmp PSL_m array def
  354. 0 1 PSL_m1
  355. { /i exch def
  356. PSL_fnt_tmp i get cvx exec
  357. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  358. } for
  359. } def
  360. /PSL_CT_calclinedist
  361. { /PSL_newx PSL_x 0 get def
  362. /PSL_newy PSL_y 0 get def
  363. /dist 0.0 def
  364. /PSL_dist PSL_n array def
  365. PSL_dist 0 0.0 put
  366. 1 1 PSL_n1
  367. { /i exch def
  368. /PSL_oldx PSL_newx def
  369. /PSL_oldy PSL_newy def
  370. /PSL_newx PSL_x i get def
  371. /PSL_newy PSL_y i get def
  372. /dx PSL_newx PSL_oldx sub def
  373. /dy PSL_newy PSL_oldy sub def
  374. /dist dist dx dx mul dy dy mul add sqrt add def
  375. PSL_dist i dist put
  376. } for
  377. } def
  378. /PSL_CT_excludelabels
  379. { /k 0 def
  380. /PSL_width PSL_m array def
  381. /PSL_angle PSL_m array def
  382. /PSL_node PSL_m array def
  383. /PSL_str PSL_m array def
  384. /PSL_fnt PSL_m array def
  385. /lastdist PSL_dist PSL_n1 get def
  386. 0 1 PSL_m1
  387. { /i exch def
  388. /dist PSL_dist PSL_node_tmp i get get def
  389. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  390. /L_dist dist halfwidth sub def
  391. /R_dist dist halfwidth add def
  392. L_dist 0 gt R_dist lastdist lt and
  393. {
  394. PSL_width k PSL_width_tmp i get put
  395. PSL_node k PSL_node_tmp i get put
  396. PSL_angle k PSL_angle_tmp i get put
  397. PSL_str k PSL_str_tmp i get put
  398. PSL_fnt k PSL_fnt_tmp i get put
  399. /k k 1 add def
  400. } if
  401. } for
  402. /PSL_m k def
  403. /PSL_m1 PSL_m 1 sub def
  404. } def
  405. /PSL_CT_addcutpoints
  406. { /k 0 def
  407. /PSL_nc PSL_m 2 mul 1 add def
  408. /PSL_cuts PSL_nc array def
  409. /PSL_nc1 PSL_nc 1 sub def
  410. 0 1 PSL_m1
  411. { /i exch def
  412. /dist PSL_dist PSL_node i get get def
  413. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  414. PSL_cuts k dist halfwidth sub put
  415. /k k 1 add def
  416. PSL_cuts k dist halfwidth add put
  417. /k k 1 add def
  418. } for
  419. PSL_cuts k 100000.0 put
  420. /PSL_nn PSL_n PSL_m 2 mul add def
  421. /PSL_xx PSL_nn array def
  422. /PSL_yy PSL_nn array def
  423. /PSL_kind PSL_nn array def
  424. /j 0 def
  425. /k 0 def
  426. /dist 0.0 def
  427. 0 1 PSL_n1
  428. { /i exch def
  429. /last_dist dist def
  430. /dist PSL_dist i get def
  431. k 1 PSL_nc1
  432. { /kk exch def
  433. /this_cut PSL_cuts kk get def
  434. dist this_cut gt
  435. { /ds dist last_dist sub def
  436. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  437. /i1 i 0 eq {0} {i 1 sub} ifelse def
  438. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  439. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  440. PSL_kind j 1 put
  441. /j j 1 add def
  442. /k k 1 add def
  443. } if
  444. } for
  445. dist PSL_cuts k get le
  446. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  447. PSL_kind j 0 put
  448. /j j 1 add def
  449. } if
  450. } for
  451. } def
  452. /PSL_CT_reversepath
  453. {PSL_xp j get PSL_xp 0 get lt
  454. {0 1 j 2 idiv
  455. { /left exch def
  456. /right j left sub def
  457. /tmp PSL_xp left get def
  458. PSL_xp left PSL_xp right get put
  459. PSL_xp right tmp put
  460. /tmp PSL_yp left get def
  461. PSL_yp left PSL_yp right get put
  462. PSL_yp right tmp put
  463. } for
  464. } if
  465. } def
  466. /PSL_CT_placelabel
  467. {
  468. /PSL_just PSL_label_justify k get def
  469. /PSL_height PSL_heights k get def
  470. /psl_label PSL_str k get def
  471. /psl_depth psl_label sd def
  472. PSL_usebox
  473. {PSL_CT_clippath
  474. PSL_fillbox
  475. {V PSL_setboxrgb fill U} if
  476. PSL_drawbox
  477. {V PSL_setboxpen S U} if N
  478. } if
  479. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  480. } def
  481. /PSL_CT_clippath
  482. {
  483. /H PSL_height 2 div PSL_gap_y add def
  484. /xoff j 1 add array def
  485. /yoff j 1 add array def
  486. /angle 0 def
  487. 0 1 j {
  488. /ii exch def
  489. /x PSL_xp ii get def
  490. /y PSL_yp ii get def
  491. ii 0 eq {
  492. /x1 PSL_xp 1 get def
  493. /y1 PSL_yp 1 get def
  494. /dx x1 x sub def
  495. /dy y1 y sub def
  496. }
  497. { /i1 ii 1 sub def
  498. /x1 PSL_xp i1 get def
  499. /y1 PSL_yp i1 get def
  500. /dx x x1 sub def
  501. /dy y y1 sub def
  502. } ifelse
  503. dx 0.0 eq dy 0.0 eq and not
  504. { /angle dy dx atan 90 add def} if
  505. /sina angle sin def
  506. /cosa angle cos def
  507. xoff ii H cosa mul put
  508. yoff ii H sina mul put
  509. } for
  510. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  511. 1 1 j {
  512. /ii exch def
  513. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  514. } for
  515. j -1 0 {
  516. /ii exch def
  517. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  518. } for P
  519. } def
  520. /PSL_CT_drawline
  521. {
  522. /str 20 string def
  523. PSL_strokeline
  524. {PSL_CT_placeline S} if
  525. /PSL_seg PSL_seg 1 add def
  526. /n 1 def
  527. } def
  528. /PSL_CT_placeline
  529. {PSL_xp 0 get PSL_yp 0 get M
  530. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  531. } def
  532. /PSL_draw_path_lines
  533. {
  534. /PSL_n_paths1 PSL_n_paths 1 sub def
  535. V
  536. /psl_start 0 def
  537. 0 1 PSL_n_paths1
  538. { /psl_k exch def
  539. /PSL_n PSL_path_n psl_k get def
  540. /PSL_n1 PSL_n 1 sub def
  541. PSL_path_pen psl_k get cvx exec
  542. N
  543. PSL_path_x psl_start get PSL_path_y psl_start get M
  544. 1 1 PSL_n1
  545. { /psl_i exch def
  546. /psl_kk psl_i psl_start add def
  547. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  548. } for
  549. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  550. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  551. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  552. S
  553. /psl_start psl_start PSL_n add def
  554. } for
  555. U
  556. } def
  557. /PSL_straight_path_labels
  558. {
  559. /psl_bits exch def
  560. /PSL_placetext psl_bits 2 and 2 eq def
  561. /PSL_rounded psl_bits 32 and 32 eq def
  562. /PSL_fillbox psl_bits 128 and 128 eq def
  563. /PSL_drawbox psl_bits 256 and 256 eq def
  564. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  565. /PSL_usebox PSL_fillbox PSL_drawbox or def
  566. 0 1 PSL_n_labels_minus_1
  567. { /psl_k exch def
  568. PSL_ST_prepare_text
  569. PSL_usebox
  570. { PSL_rounded
  571. {PSL_ST_textbox_round}
  572. {PSL_ST_textbox_rect}
  573. ifelse
  574. PSL_fillbox {V PSL_setboxrgb fill U} if
  575. PSL_drawbox {V PSL_setboxpen S U} if
  576. N
  577. } if
  578. PSL_placetext {PSL_ST_place_label} if
  579. } for
  580. } def
  581. /PSL_straight_path_clip
  582. {
  583. /psl_bits exch def
  584. /PSL_rounded psl_bits 32 and 32 eq def
  585. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  586. N clipsave clippath
  587. 0 1 PSL_n_labels_minus_1
  588. { /psl_k exch def
  589. PSL_ST_prepare_text
  590. PSL_rounded
  591. {PSL_ST_textbox_round}
  592. {PSL_ST_textbox_rect}
  593. ifelse
  594. } for
  595. PSL_eoclip N
  596. } def
  597. /PSL_ST_prepare_text
  598. {
  599. /psl_xp PSL_txt_x psl_k get def
  600. /psl_yp PSL_txt_y psl_k get def
  601. /psl_label PSL_label_str psl_k get def
  602. PSL_label_font psl_k get cvx exec
  603. /PSL_height PSL_heights psl_k get def
  604. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  605. /PSL_just PSL_label_justify psl_k get def
  606. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  607. /PSL_justy PSL_just 4 idiv 2 div neg def
  608. /psl_SW psl_label stringwidth pop def
  609. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  610. /psl_x0 psl_SW PSL_justx mul def
  611. /psl_y0 PSL_justy PSL_height mul def
  612. /psl_angle PSL_label_angle psl_k get def
  613. } def
  614. /PSL_ST_textbox_rect
  615. {
  616. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  617. PSL_gap_x neg PSL_gap_y neg M
  618. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  619. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  620. } def
  621. /PSL_ST_textbox_round
  622. {
  623. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  624. /psl_xd PSL_gap_x psl_BoxR sub def
  625. /psl_yd PSL_gap_y psl_BoxR sub def
  626. /psl_xL PSL_gap_x neg def
  627. /psl_yB PSL_gap_y neg def
  628. /psl_yT psl_boxH psl_yB add def
  629. /psl_H2 PSL_height psl_yd 2 mul add def
  630. /psl_W2 psl_SW psl_xd 2 mul add def
  631. /psl_xR psl_xL psl_boxW add def
  632. /psl_x0 psl_SW PSL_justx mul def
  633. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  634. psl_xL psl_yd M
  635. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  636. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  637. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  638. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  639. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  640. } def
  641. /PSL_ST_place_label
  642. {
  643. V psl_xp psl_yp T psl_angle R
  644. psl_SW PSL_justx mul psl_y0 M
  645. psl_label dup sd neg 0 exch G show
  646. U
  647. } def
  648. /PSL_nclip 0 def
  649. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  650. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  651. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  652. %%EndProlog
  653. %%BeginSetup
  654. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  655. PSLevel 1 gt { << /WhiteIsOpaque true >> setpagedevice } if
  656. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  657. %%EndSetup
  658. %%Page: 1 1
  659. %%BeginPageSetup
  660. V 612 0 T 90 R 0.06 0.06 scale
  661. %%EndPageSetup
  662. /PSL_page_xsize 13200 def
  663. /PSL_page_ysize 10200 def
  664. /PSL_plot_completion {} def
  665. /PSL_movie_completion {} def
  666. %PSL_End_Header
  667. gsave
  668. 0 A
  669. FQ
  670. O0
  671. 1200 1200 TM
  672. % PostScript produced by:
  673. %@GMT: gmt psbasemap -R-2/2/-2/2 -JX10c -Baf -K
  674. %@PROJ: xy -2.00000000 2.00000000 -2.00000000 2.00000000 -2.000 2.000 -2.000 2.000 +xy
  675. %GMTBoundingBox: 72 72 283.465 283.465
  676. %%BeginObject PSL_Layer_1
  677. 0 setlinecap
  678. 0 setlinejoin
  679. 3.32551 setmiterlimit
  680. 25 W
  681. 2 setlinecap
  682. N 0 4724 M 0 -4724 D S
  683. /PSL_A0_y 83 def
  684. /PSL_A1_y 0 def
  685. 8 W
  686. N 0 0 M -83 0 D S
  687. N 0 1181 M -83 0 D S
  688. N 0 2362 M -83 0 D S
  689. N 0 3543 M -83 0 D S
  690. N 0 4724 M -83 0 D S
  691. /PSL_AH0 0
  692. /MM {neg exch M} def
  693. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  694. 200 F0
  695. (”2) sw mx
  696. (”1) sw mx
  697. (0) sw mx
  698. (1) sw mx
  699. (2) sw mx
  700. def
  701. /PSL_A0_y PSL_A0_y 83 add def
  702. 0 PSL_A0_y MM
  703. (”2) mr Z
  704. 1181 PSL_A0_y MM
  705. (”1) mr Z
  706. 2362 PSL_A0_y MM
  707. (0) mr Z
  708. 3543 PSL_A0_y MM
  709. (1) mr Z
  710. 4724 PSL_A0_y MM
  711. (2) mr Z
  712. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  713. N 0 236 M -42 0 D S
  714. N 0 472 M -42 0 D S
  715. N 0 709 M -42 0 D S
  716. N 0 945 M -42 0 D S
  717. N 0 1417 M -42 0 D S
  718. N 0 1654 M -42 0 D S
  719. N 0 1890 M -42 0 D S
  720. N 0 2126 M -42 0 D S
  721. N 0 2598 M -42 0 D S
  722. N 0 2835 M -42 0 D S
  723. N 0 3071 M -42 0 D S
  724. N 0 3307 M -42 0 D S
  725. N 0 3780 M -42 0 D S
  726. N 0 4016 M -42 0 D S
  727. N 0 4252 M -42 0 D S
  728. N 0 4488 M -42 0 D S
  729. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  730. 4724 0 T
  731. 25 W
  732. N 0 4724 M 0 -4724 D S
  733. /PSL_A0_y 83 def
  734. /PSL_A1_y 0 def
  735. 8 W
  736. N 0 0 M 83 0 D S
  737. N 0 1181 M 83 0 D S
  738. N 0 2362 M 83 0 D S
  739. N 0 3543 M 83 0 D S
  740. N 0 4724 M 83 0 D S
  741. /PSL_AH0 0
  742. /MM {exch M} def
  743. (”2) sw mx
  744. (”1) sw mx
  745. (0) sw mx
  746. (1) sw mx
  747. (2) sw mx
  748. def
  749. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  750. 0 PSL_A0_y MM
  751. (”2) mr Z
  752. 1181 PSL_A0_y MM
  753. (”1) mr Z
  754. 2362 PSL_A0_y MM
  755. (0) mr Z
  756. 3543 PSL_A0_y MM
  757. (1) mr Z
  758. 4724 PSL_A0_y MM
  759. (2) mr Z
  760. N 0 236 M 42 0 D S
  761. N 0 472 M 42 0 D S
  762. N 0 709 M 42 0 D S
  763. N 0 945 M 42 0 D S
  764. N 0 1417 M 42 0 D S
  765. N 0 1654 M 42 0 D S
  766. N 0 1890 M 42 0 D S
  767. N 0 2126 M 42 0 D S
  768. N 0 2598 M 42 0 D S
  769. N 0 2835 M 42 0 D S
  770. N 0 3071 M 42 0 D S
  771. N 0 3307 M 42 0 D S
  772. N 0 3780 M 42 0 D S
  773. N 0 4016 M 42 0 D S
  774. N 0 4252 M 42 0 D S
  775. N 0 4488 M 42 0 D S
  776. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  777. -4724 0 T
  778. 25 W
  779. N 0 0 M 4724 0 D S
  780. /PSL_A0_y 83 def
  781. /PSL_A1_y 0 def
  782. 8 W
  783. N 0 0 M 0 -83 D S
  784. N 1181 0 M 0 -83 D S
  785. N 2362 0 M 0 -83 D S
  786. N 3543 0 M 0 -83 D S
  787. N 4724 0 M 0 -83 D S
  788. /PSL_AH0 0
  789. /MM {neg M} def
  790. (”2) sh mx
  791. (”1) sh mx
  792. (0) sh mx
  793. (1) sh mx
  794. (2) sh mx
  795. def
  796. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  797. 0 PSL_A0_y MM
  798. (”2) bc Z
  799. 1181 PSL_A0_y MM
  800. (”1) bc Z
  801. 2362 PSL_A0_y MM
  802. (0) bc Z
  803. 3543 PSL_A0_y MM
  804. (1) bc Z
  805. 4724 PSL_A0_y MM
  806. (2) bc Z
  807. N 236 0 M 0 -42 D S
  808. N 472 0 M 0 -42 D S
  809. N 709 0 M 0 -42 D S
  810. N 945 0 M 0 -42 D S
  811. N 1417 0 M 0 -42 D S
  812. N 1654 0 M 0 -42 D S
  813. N 1890 0 M 0 -42 D S
  814. N 2126 0 M 0 -42 D S
  815. N 2598 0 M 0 -42 D S
  816. N 2835 0 M 0 -42 D S
  817. N 3071 0 M 0 -42 D S
  818. N 3307 0 M 0 -42 D S
  819. N 3780 0 M 0 -42 D S
  820. N 4016 0 M 0 -42 D S
  821. N 4252 0 M 0 -42 D S
  822. N 4488 0 M 0 -42 D S
  823. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  824. 0 4724 T
  825. 25 W
  826. N 0 0 M 4724 0 D S
  827. /PSL_A0_y 83 def
  828. /PSL_A1_y 0 def
  829. 8 W
  830. N 0 0 M 0 83 D S
  831. N 1181 0 M 0 83 D S
  832. N 2362 0 M 0 83 D S
  833. N 3543 0 M 0 83 D S
  834. N 4724 0 M 0 83 D S
  835. /PSL_AH0 0
  836. /MM {M} def
  837. (”2) sh mx
  838. (”1) sh mx
  839. (0) sh mx
  840. (1) sh mx
  841. (2) sh mx
  842. def
  843. /PSL_A0_y PSL_A0_y 83 add def
  844. 0 PSL_A0_y MM
  845. (”2) bc Z
  846. 1181 PSL_A0_y MM
  847. (”1) bc Z
  848. 2362 PSL_A0_y MM
  849. (0) bc Z
  850. 3543 PSL_A0_y MM
  851. (1) bc Z
  852. 4724 PSL_A0_y MM
  853. (2) bc Z
  854. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  855. N 236 0 M 0 42 D S
  856. N 472 0 M 0 42 D S
  857. N 709 0 M 0 42 D S
  858. N 945 0 M 0 42 D S
  859. N 1417 0 M 0 42 D S
  860. N 1654 0 M 0 42 D S
  861. N 1890 0 M 0 42 D S
  862. N 2126 0 M 0 42 D S
  863. N 2598 0 M 0 42 D S
  864. N 2835 0 M 0 42 D S
  865. N 3071 0 M 0 42 D S
  866. N 3307 0 M 0 42 D S
  867. N 3780 0 M 0 42 D S
  868. N 4016 0 M 0 42 D S
  869. N 4252 0 M 0 42 D S
  870. N 4488 0 M 0 42 D S
  871. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  872. 0 -4724 T
  873. 0 setlinecap
  874. %%EndObject
  875. 0 A
  876. FQ
  877. O0
  878. 0 0 TM
  879. % PostScript produced by:
  880. %@GMT: gmt pspolar -JX10c -R-2/2/-2/2 -D0/0 -M5c -Sc0.5c -T+f10p,red+jBL -K -O
  881. %@PROJ: xy -2.00000000 2.00000000 -2.00000000 2.00000000 -2.000 2.000 -2.000 2.000 +xy
  882. %%BeginObject PSL_Layer_2
  883. 0 setlinecap
  884. 0 setlinejoin
  885. 3.32551 setmiterlimit
  886. clipsave
  887. 0 0 M
  888. 4724 0 D
  889. 0 4724 D
  890. -4724 0 D
  891. P
  892. PSL_clip N
  893. 4 W
  894. 1181 2362 2362 Sc
  895. 1 0 0 C
  896. 2514 2748 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  897. 167 F0
  898. (BL) tr Z
  899. 0 A
  900. {0 A} FS
  901. 94 2682 2916 Sc
  902. PSL_cliprestore
  903. %%EndObject
  904. 0 A
  905. FQ
  906. O0
  907. 0 0 TM
  908. % PostScript produced by:
  909. %@GMT: gmt pspolar -JX10c -R-2/2/-2/2 -D0/0 -M5c -Sc0.5c -T+f10p,red+jBC -K -O
  910. %@PROJ: xy -2.00000000 2.00000000 -2.00000000 2.00000000 -2.000 2.000 -2.000 2.000 +xy
  911. %%BeginObject PSL_Layer_3
  912. 0 setlinecap
  913. 0 setlinejoin
  914. 3.32551 setmiterlimit
  915. clipsave
  916. 0 0 M
  917. 4724 0 D
  918. 0 4724 D
  919. -4724 0 D
  920. P
  921. PSL_clip N
  922. 4 W
  923. 1181 2362 2362 Sc
  924. 1 0 0 C
  925. 2682 2748 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  926. 167 F0
  927. (BC) tc Z
  928. 0 A
  929. {0 A} FS
  930. 94 2682 2916 Sc
  931. PSL_cliprestore
  932. %%EndObject
  933. 0 A
  934. FQ
  935. O0
  936. 0 0 TM
  937. % PostScript produced by:
  938. %@GMT: gmt pspolar -JX10c -R-2/2/-2/2 -D0/0 -M5c -Sc0.5c -T+f10p,red+jBR -K -O
  939. %@PROJ: xy -2.00000000 2.00000000 -2.00000000 2.00000000 -2.000 2.000 -2.000 2.000 +xy
  940. %%BeginObject PSL_Layer_4
  941. 0 setlinecap
  942. 0 setlinejoin
  943. 3.32551 setmiterlimit
  944. clipsave
  945. 0 0 M
  946. 4724 0 D
  947. 0 4724 D
  948. -4724 0 D
  949. P
  950. PSL_clip N
  951. 4 W
  952. 1181 2362 2362 Sc
  953. 1 0 0 C
  954. 2850 2748 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  955. 167 F0
  956. (BR) tl Z
  957. 0 A
  958. {0 A} FS
  959. 94 2682 2916 Sc
  960. PSL_cliprestore
  961. %%EndObject
  962. 0 A
  963. FQ
  964. O0
  965. 0 0 TM
  966. % PostScript produced by:
  967. %@GMT: gmt pspolar -JX10c -R-2/2/-2/2 -D0/0 -M5c -Sc0.5c -T+f10p,red+jML -K -O
  968. %@PROJ: xy -2.00000000 2.00000000 -2.00000000 2.00000000 -2.000 2.000 -2.000 2.000 +xy
  969. %%BeginObject PSL_Layer_5
  970. 0 setlinecap
  971. 0 setlinejoin
  972. 3.32551 setmiterlimit
  973. clipsave
  974. 0 0 M
  975. 4724 0 D
  976. 0 4724 D
  977. -4724 0 D
  978. P
  979. PSL_clip N
  980. 4 W
  981. 1181 2362 2362 Sc
  982. 1 0 0 C
  983. 2514 2916 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  984. 167 F0
  985. (ML) mr Z
  986. 0 A
  987. {0 A} FS
  988. 94 2682 2916 Sc
  989. PSL_cliprestore
  990. %%EndObject
  991. 0 A
  992. FQ
  993. O0
  994. 0 0 TM
  995. % PostScript produced by:
  996. %@GMT: gmt pspolar -JX10c -R-2/2/-2/2 -D0/0 -M5c -Sc0.5c -T+f10p,red+jMC -K -O
  997. %@PROJ: xy -2.00000000 2.00000000 -2.00000000 2.00000000 -2.000 2.000 -2.000 2.000 +xy
  998. %%BeginObject PSL_Layer_6
  999. 0 setlinecap
  1000. 0 setlinejoin
  1001. 3.32551 setmiterlimit
  1002. clipsave
  1003. 0 0 M
  1004. 4724 0 D
  1005. 0 4724 D
  1006. -4724 0 D
  1007. P
  1008. PSL_clip N
  1009. 4 W
  1010. 1181 2362 2362 Sc
  1011. 1 0 0 C
  1012. 2682 2916 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1013. 167 F0
  1014. (MC) mc Z
  1015. 0 A
  1016. {0 A} FS
  1017. 94 2682 2916 Sc
  1018. PSL_cliprestore
  1019. %%EndObject
  1020. 0 A
  1021. FQ
  1022. O0
  1023. 0 0 TM
  1024. % PostScript produced by:
  1025. %@GMT: gmt pspolar -JX10c -R-2/2/-2/2 -D0/0 -M5c -Sc0.5c -T+f10p,red+jMR -K -O
  1026. %@PROJ: xy -2.00000000 2.00000000 -2.00000000 2.00000000 -2.000 2.000 -2.000 2.000 +xy
  1027. %%BeginObject PSL_Layer_7
  1028. 0 setlinecap
  1029. 0 setlinejoin
  1030. 3.32551 setmiterlimit
  1031. clipsave
  1032. 0 0 M
  1033. 4724 0 D
  1034. 0 4724 D
  1035. -4724 0 D
  1036. P
  1037. PSL_clip N
  1038. 4 W
  1039. 1181 2362 2362 Sc
  1040. 1 0 0 C
  1041. 2850 2916 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1042. 167 F0
  1043. (MR) ml Z
  1044. 0 A
  1045. {0 A} FS
  1046. 94 2682 2916 Sc
  1047. PSL_cliprestore
  1048. %%EndObject
  1049. 0 A
  1050. FQ
  1051. O0
  1052. 0 0 TM
  1053. % PostScript produced by:
  1054. %@GMT: gmt pspolar -JX10c -R-2/2/-2/2 -D0/0 -M5c -Sc0.5c -T+f10p,red+jTL -K -O
  1055. %@PROJ: xy -2.00000000 2.00000000 -2.00000000 2.00000000 -2.000 2.000 -2.000 2.000 +xy
  1056. %%BeginObject PSL_Layer_8
  1057. 0 setlinecap
  1058. 0 setlinejoin
  1059. 3.32551 setmiterlimit
  1060. clipsave
  1061. 0 0 M
  1062. 4724 0 D
  1063. 0 4724 D
  1064. -4724 0 D
  1065. P
  1066. PSL_clip N
  1067. 4 W
  1068. 1181 2362 2362 Sc
  1069. 1 0 0 C
  1070. 2514 3084 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1071. 167 F0
  1072. (TL) br Z
  1073. 0 A
  1074. {0 A} FS
  1075. 94 2682 2916 Sc
  1076. PSL_cliprestore
  1077. %%EndObject
  1078. 0 A
  1079. FQ
  1080. O0
  1081. 0 0 TM
  1082. % PostScript produced by:
  1083. %@GMT: gmt pspolar -JX10c -R-2/2/-2/2 -D0/0 -M5c -Sc0.5c -T+f10p,red+jTC -K -O
  1084. %@PROJ: xy -2.00000000 2.00000000 -2.00000000 2.00000000 -2.000 2.000 -2.000 2.000 +xy
  1085. %%BeginObject PSL_Layer_9
  1086. 0 setlinecap
  1087. 0 setlinejoin
  1088. 3.32551 setmiterlimit
  1089. clipsave
  1090. 0 0 M
  1091. 4724 0 D
  1092. 0 4724 D
  1093. -4724 0 D
  1094. P
  1095. PSL_clip N
  1096. 4 W
  1097. 1181 2362 2362 Sc
  1098. 1 0 0 C
  1099. 2682 3084 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1100. 167 F0
  1101. (TC) bc Z
  1102. 0 A
  1103. {0 A} FS
  1104. 94 2682 2916 Sc
  1105. PSL_cliprestore
  1106. %%EndObject
  1107. 0 A
  1108. FQ
  1109. O0
  1110. 0 0 TM
  1111. % PostScript produced by:
  1112. %@GMT: gmt pspolar -JX10c -R-2/2/-2/2 -D0/0 -M5c -Sc0.5c -T+f10p,red+jTR -K -O
  1113. %@PROJ: xy -2.00000000 2.00000000 -2.00000000 2.00000000 -2.000 2.000 -2.000 2.000 +xy
  1114. %%BeginObject PSL_Layer_10
  1115. 0 setlinecap
  1116. 0 setlinejoin
  1117. 3.32551 setmiterlimit
  1118. clipsave
  1119. 0 0 M
  1120. 4724 0 D
  1121. 0 4724 D
  1122. -4724 0 D
  1123. P
  1124. PSL_clip N
  1125. 4 W
  1126. 1181 2362 2362 Sc
  1127. 1 0 0 C
  1128. 2850 3084 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1129. 167 F0
  1130. (TR) bl Z
  1131. 0 A
  1132. {0 A} FS
  1133. 94 2682 2916 Sc
  1134. PSL_cliprestore
  1135. %%EndObject
  1136. 0 A
  1137. FQ
  1138. O0
  1139. 0 0 TM
  1140. % PostScript produced by:
  1141. %@GMT: gmt psxy -R-2/2/-2/2 -JX10c -T -O
  1142. %@PROJ: xy -2.00000000 2.00000000 -2.00000000 2.00000000 -2.000 2.000 -2.000 2.000 +xy
  1143. %%BeginObject PSL_Layer_11
  1144. 0 setlinecap
  1145. 0 setlinejoin
  1146. 3.32551 setmiterlimit
  1147. %%EndObject
  1148. grestore
  1149. PSL_movie_completion /PSL_movie_completion {} def
  1150. %PSL_Begin_Trailer
  1151. %%PageTrailer
  1152. U
  1153. showpage
  1154. %%Trailer
  1155. end
  1156. %%EOF
Tip!

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

Comments

Loading...