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

rose_centered.ps 33 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
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612.0000 792.0000
  4. %%Title: GMT v6.2.0_bec0f3a_2020.10.04 [64-bit] Document from psrose
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Sun Oct 4 21:38:16 2020
  9. %%LanguageLevel: 2
  10. %%DocumentData: Clean7Bit
  11. %%Orientation: Portrait
  12. %%Pages: 1
  13. %%EndComments
  14. %%BeginProlog
  15. 250 dict begin
  16. /! {bind def} bind def
  17. /# {load def}!
  18. /A /setgray #
  19. /B /setdash #
  20. /C /setrgbcolor #
  21. /D /rlineto #
  22. /E {dup stringwidth pop}!
  23. /F /fill #
  24. /G /rmoveto #
  25. /H /sethsbcolor #
  26. /I /setpattern #
  27. /K /setcmykcolor #
  28. /L /lineto #
  29. /M /moveto #
  30. /N /newpath #
  31. /P /closepath #
  32. /R /rotate #
  33. /S /stroke #
  34. /T /translate #
  35. /U /grestore #
  36. /V /gsave #
  37. /W /setlinewidth #
  38. /Y {findfont exch scalefont setfont}!
  39. /Z /show #
  40. /FP {true charpath flattenpath}!
  41. /MU {matrix setmatrix}!
  42. /MS {/SMat matrix currentmatrix def}!
  43. /MR {SMat setmatrix}!
  44. /edef {exch def}!
  45. /FS {/fc edef /fs {V fc F U} def}!
  46. /FQ {/fs {} def}!
  47. /O0 {/os {N} def}!
  48. /O1 {/os {P S} def}!
  49. /FO {fs os}!
  50. /Sa {M MS dup 0 exch G 0.726542528 mul -72 R dup 0 D 4 {72 R dup 0 D -144 R dup 0 D} repeat pop MR FO}!
  51. /Sb {M dup 0 D exch 0 exch D neg 0 D FO}!
  52. /SB {MS T /BoxR edef /BoxW edef /BoxH edef BoxR 0 M
  53. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  54. /Sc {N 3 -1 roll 0 360 arc FO}!
  55. /Sd {M 4 {dup} repeat 0 G neg dup dup D exch D D FO}!
  56. /Se {N MS T R scale 0 0 1 0 360 arc MR FO}!
  57. /Sg {M MS 22.5 R dup 0 exch G -22.5 R 0.765366865 mul dup 0 D 6 {-45 R dup 0 D} repeat pop MR FO}!
  58. /Sh {M MS dup 0 G -120 R dup 0 D 4 {-60 R dup 0 D} repeat pop MR FO}!
  59. /Si {M MS dup neg 0 exch G 60 R 1.732050808 mul dup 0 D 120 R 0 D MR FO}!
  60. /Sj {M MS R dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D MR FO}!
  61. /Sn {M MS dup 0 exch G -36 R 1.175570505 mul dup 0 D 3 {-72 R dup 0 D} repeat pop MR FO}!
  62. /Sp {N 3 -1 roll 0 360 arc fs N}!
  63. /SP {M {D} repeat FO}!
  64. /Sr {M dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D FO}!
  65. /SR {MS T /BoxR edef /BoxW edef /BoxH edef BoxR BoxW -2 div BoxH -2 div T BoxR 0 M
  66. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  67. /Ss {M 1.414213562 mul dup dup dup -2 div dup G 0 D 0 exch D neg 0 D FO}!
  68. /St {M MS dup 0 exch G -60 R 1.732050808 mul dup 0 D -120 R 0 D MR FO}!
  69. /SV {0 exch M 0 D D D D D 0 D FO}!
  70. /Sv {0 0 M D D 0 D D D D D 0 D D FO}!
  71. /Sw {2 copy M 5 2 roll arc FO}!
  72. /Sx {M 1.414213562 mul 5 {dup} repeat -2 div dup G D neg 0 G neg D S}!
  73. /Sy {M dup 0 exch G dup -2 mul dup 0 exch D S}!
  74. /S+ {M dup 0 G dup -2 mul dup 0 D exch dup G 0 exch D S}!
  75. /S- {M dup 0 G dup -2 mul dup 0 D S}!
  76. /sw {stringwidth pop}!
  77. /sh {V MU 0 0 M FP pathbbox N 4 1 roll pop pop pop U}!
  78. /sd {V MU 0 0 M FP pathbbox N pop pop exch pop U}!
  79. /sH {V MU 0 0 M FP pathbbox N exch pop exch sub exch pop U}!
  80. /sb {E exch sh}!
  81. /bl {}!
  82. /bc {E -2 div 0 G}!
  83. /br {E neg 0 G}!
  84. /ml {dup 0 exch sh -2 div G}!
  85. /mc {dup E -2 div exch sh -2 div G}!
  86. /mr {dup E neg exch sh -2 div G}!
  87. /tl {dup 0 exch sh neg G}!
  88. /tc {dup E -2 div exch sh neg G}!
  89. /tr {dup E neg exch sh neg G}!
  90. /mx {2 copy lt {exch} if pop}!
  91. /PSL_xorig 0 def /PSL_yorig 0 def
  92. /TM {2 copy T PSL_yorig add /PSL_yorig edef PSL_xorig add /PSL_xorig edef}!
  93. /PSL_reencode {findfont dup length dict begin
  94. {1 index /FID ne {def}{pop pop} ifelse} forall
  95. exch /Encoding edef currentdict end definefont pop
  96. }!
  97. /PSL_eps_begin {
  98. /PSL_eps_state save def
  99. /PSL_dict_count countdictstack def
  100. /PSL_op_count count 1 sub def
  101. userdict begin
  102. /showpage {} def
  103. 0 setgray 0 setlinecap 1 setlinewidth
  104. 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath
  105. /languagelevel where
  106. {pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if
  107. }!
  108. /PSL_eps_end {
  109. count PSL_op_count sub {pop} repeat
  110. countdictstack PSL_dict_count sub {end} repeat
  111. PSL_eps_state restore
  112. }!
  113. /PSL_transp {
  114. /.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. /ydepth exch def
  196. /textheight exch def
  197. /just exch def
  198. /offset exch def
  199. /str exch def
  200. /pathdist 0 def
  201. /setdist offset def
  202. /charcount 0 def
  203. /justy just 4 idiv textheight mul 2 div neg ydepth sub def
  204. V flattenpath
  205. {movetoproc} {linetoproc}
  206. {curvetoproc} {closepathproc}
  207. pathforall
  208. U N
  209. end
  210. } def
  211. PSL_pathtextdict begin
  212. /movetoproc
  213. { /newy exch def /newx exch def
  214. /firstx newx def /firsty newy def
  215. /ovr 0 def
  216. newx newy transform
  217. /cpy exch def /cpx exch def
  218. } def
  219. /linetoproc
  220. { /oldx newx def /oldy newy def
  221. /newy exch def /newx exch def
  222. /dx newx oldx sub def
  223. /dy newy oldy sub def
  224. /dist dx dup mul dy dup mul add sqrt def
  225. dist 0 ne
  226. { /dsx dx dist div ovr mul def
  227. /dsy dy dist div ovr mul def
  228. oldx dsx add oldy dsy add transform
  229. /cpy exch def /cpx exch def
  230. /pathdist pathdist dist add def
  231. {setdist pathdist le
  232. {charcount str length lt
  233. {setchar} {exit} ifelse}
  234. { /ovr setdist pathdist sub def
  235. exit}
  236. ifelse
  237. } loop
  238. } if
  239. } def
  240. /curvetoproc
  241. { (ERROR: No curveto's after flattenpath!)
  242. print
  243. } def
  244. /closepathproc
  245. {firstx firsty linetoproc
  246. firstx firsty movetoproc
  247. } def
  248. /setchar
  249. { /char str charcount 1 getinterval def
  250. /charcount charcount 1 add def
  251. /charwidth char stringwidth pop def
  252. V cpx cpy itransform T
  253. dy dx atan R
  254. 0 justy M
  255. char show
  256. 0 justy neg G
  257. currentpoint transform
  258. /cpy exch def /cpx exch def
  259. U /setdist setdist charwidth add def
  260. } def
  261. end
  262. /PSL_set_label_heights
  263. {
  264. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  265. /PSL_heights PSL_n_labels array def
  266. 0 1 PSL_n_labels_minus_1
  267. { /psl_k exch def
  268. /psl_label PSL_label_str psl_k get def
  269. PSL_label_font psl_k get cvx exec
  270. psl_label sH /PSL_height edef
  271. PSL_heights psl_k PSL_height put
  272. } for
  273. } def
  274. /PSL_curved_path_labels
  275. { /psl_bits exch def
  276. /PSL_placetext psl_bits 2 and 2 eq def
  277. /PSL_clippath psl_bits 4 and 4 eq def
  278. /PSL_strokeline false def
  279. /PSL_fillbox psl_bits 128 and 128 eq def
  280. /PSL_drawbox psl_bits 256 and 256 eq def
  281. /PSL_n_paths1 PSL_n_paths 1 sub def
  282. /PSL_usebox PSL_fillbox PSL_drawbox or def
  283. PSL_clippath {clipsave N clippath} if
  284. /psl_k 0 def
  285. /psl_p 0 def
  286. 0 1 PSL_n_paths1
  287. { /psl_kk exch def
  288. /PSL_n PSL_path_n psl_kk get def
  289. /PSL_m PSL_label_n psl_kk get def
  290. /PSL_x PSL_path_x psl_k PSL_n getinterval def
  291. /PSL_y PSL_path_y psl_k PSL_n getinterval def
  292. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
  293. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
  294. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
  295. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
  296. PSL_curved_path_label
  297. /psl_k psl_k PSL_n add def
  298. /psl_p psl_p PSL_m add def
  299. } for
  300. PSL_clippath {PSL_eoclip} if N
  301. } def
  302. /PSL_curved_path_label
  303. {
  304. /PSL_n1 PSL_n 1 sub def
  305. /PSL_m1 PSL_m 1 sub def
  306. PSL_CT_calcstringwidth
  307. PSL_CT_calclinedist
  308. PSL_CT_excludelabels
  309. PSL_CT_addcutpoints
  310. /PSL_nn1 PSL_nn 1 sub def
  311. /n 0 def
  312. /k 0 def
  313. /j 0 def
  314. /PSL_seg 0 def
  315. /PSL_xp PSL_nn array def
  316. /PSL_yp PSL_nn array def
  317. PSL_xp 0 PSL_xx 0 get put
  318. PSL_yp 0 PSL_yy 0 get put
  319. 1 1 PSL_nn1
  320. { /i exch def
  321. /node_type PSL_kind i get def
  322. /j j 1 add def
  323. PSL_xp j PSL_xx i get put
  324. PSL_yp j PSL_yy i get put
  325. node_type 1 eq
  326. {n 0 eq
  327. {PSL_CT_drawline}
  328. { PSL_CT_reversepath
  329. PSL_CT_textline} ifelse
  330. /j 0 def
  331. PSL_xp j PSL_xx i get put
  332. PSL_yp j PSL_yy i get put
  333. } if
  334. } for
  335. n 0 eq {PSL_CT_drawline} if
  336. } def
  337. /PSL_CT_textline
  338. { PSL_fnt k get cvx exec
  339. /PSL_height PSL_heights k get def
  340. PSL_placetext {PSL_CT_placelabel} if
  341. PSL_clippath {PSL_CT_clippath} if
  342. /n 0 def /k k 1 add def
  343. } def
  344. /PSL_CT_calcstringwidth
  345. { /PSL_width_tmp PSL_m array def
  346. 0 1 PSL_m1
  347. { /i exch def
  348. PSL_fnt_tmp i get cvx exec
  349. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  350. } for
  351. } def
  352. /PSL_CT_calclinedist
  353. { /PSL_newx PSL_x 0 get def
  354. /PSL_newy PSL_y 0 get def
  355. /dist 0.0 def
  356. /PSL_dist PSL_n array def
  357. PSL_dist 0 0.0 put
  358. 1 1 PSL_n1
  359. { /i exch def
  360. /PSL_oldx PSL_newx def
  361. /PSL_oldy PSL_newy def
  362. /PSL_newx PSL_x i get def
  363. /PSL_newy PSL_y i get def
  364. /dx PSL_newx PSL_oldx sub def
  365. /dy PSL_newy PSL_oldy sub def
  366. /dist dist dx dx mul dy dy mul add sqrt add def
  367. PSL_dist i dist put
  368. } for
  369. } def
  370. /PSL_CT_excludelabels
  371. { /k 0 def
  372. /PSL_width PSL_m array def
  373. /PSL_angle PSL_m array def
  374. /PSL_node PSL_m array def
  375. /PSL_str PSL_m array def
  376. /PSL_fnt PSL_m array def
  377. /lastdist PSL_dist PSL_n1 get def
  378. 0 1 PSL_m1
  379. { /i exch def
  380. /dist PSL_dist PSL_node_tmp i get get def
  381. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  382. /L_dist dist halfwidth sub def
  383. /R_dist dist halfwidth add def
  384. L_dist 0 gt R_dist lastdist lt and
  385. {
  386. PSL_width k PSL_width_tmp i get put
  387. PSL_node k PSL_node_tmp i get put
  388. PSL_angle k PSL_angle_tmp i get put
  389. PSL_str k PSL_str_tmp i get put
  390. PSL_fnt k PSL_fnt_tmp i get put
  391. /k k 1 add def
  392. } if
  393. } for
  394. /PSL_m k def
  395. /PSL_m1 PSL_m 1 sub def
  396. } def
  397. /PSL_CT_addcutpoints
  398. { /k 0 def
  399. /PSL_nc PSL_m 2 mul 1 add def
  400. /PSL_cuts PSL_nc array def
  401. /PSL_nc1 PSL_nc 1 sub def
  402. 0 1 PSL_m1
  403. { /i exch def
  404. /dist PSL_dist PSL_node i get get def
  405. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  406. PSL_cuts k dist halfwidth sub put
  407. /k k 1 add def
  408. PSL_cuts k dist halfwidth add put
  409. /k k 1 add def
  410. } for
  411. PSL_cuts k 100000.0 put
  412. /PSL_nn PSL_n PSL_m 2 mul add def
  413. /PSL_xx PSL_nn array def
  414. /PSL_yy PSL_nn array def
  415. /PSL_kind PSL_nn array def
  416. /j 0 def
  417. /k 0 def
  418. /dist 0.0 def
  419. 0 1 PSL_n1
  420. { /i exch def
  421. /last_dist dist def
  422. /dist PSL_dist i get def
  423. k 1 PSL_nc1
  424. { /kk exch def
  425. /this_cut PSL_cuts kk get def
  426. dist this_cut gt
  427. { /ds dist last_dist sub def
  428. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  429. /i1 i 0 eq {0} {i 1 sub} ifelse def
  430. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  431. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  432. PSL_kind j 1 put
  433. /j j 1 add def
  434. /k k 1 add def
  435. } if
  436. } for
  437. dist PSL_cuts k get le
  438. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  439. PSL_kind j 0 put
  440. /j j 1 add def
  441. } if
  442. } for
  443. } def
  444. /PSL_CT_reversepath
  445. {PSL_xp j get PSL_xp 0 get lt
  446. {0 1 j 2 idiv
  447. { /left exch def
  448. /right j left sub def
  449. /tmp PSL_xp left get def
  450. PSL_xp left PSL_xp right get put
  451. PSL_xp right tmp put
  452. /tmp PSL_yp left get def
  453. PSL_yp left PSL_yp right get put
  454. PSL_yp right tmp put
  455. } for
  456. } if
  457. } def
  458. /PSL_CT_placelabel
  459. {
  460. /PSL_just PSL_label_justify k get def
  461. /PSL_height PSL_heights k get def
  462. /psl_label PSL_str k get def
  463. /psl_depth psl_label sd def
  464. PSL_usebox
  465. {PSL_CT_clippath
  466. PSL_fillbox
  467. {V PSL_setboxrgb fill U} if
  468. PSL_drawbox
  469. {V PSL_setboxpen S U} if N
  470. } if
  471. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  472. } def
  473. /PSL_CT_clippath
  474. {
  475. /H PSL_height 2 div PSL_gap_y add def
  476. /xoff j 1 add array def
  477. /yoff j 1 add array def
  478. /angle 0 def
  479. 0 1 j {
  480. /ii exch def
  481. /x PSL_xp ii get def
  482. /y PSL_yp ii get def
  483. ii 0 eq {
  484. /x1 PSL_xp 1 get def
  485. /y1 PSL_yp 1 get def
  486. /dx x1 x sub def
  487. /dy y1 y sub def
  488. }
  489. { /i1 ii 1 sub def
  490. /x1 PSL_xp i1 get def
  491. /y1 PSL_yp i1 get def
  492. /dx x x1 sub def
  493. /dy y y1 sub def
  494. } ifelse
  495. dx 0.0 eq dy 0.0 eq and not
  496. { /angle dy dx atan 90 add def} if
  497. /sina angle sin def
  498. /cosa angle cos def
  499. xoff ii H cosa mul put
  500. yoff ii H sina mul put
  501. } for
  502. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  503. 1 1 j {
  504. /ii exch def
  505. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  506. } for
  507. j -1 0 {
  508. /ii exch def
  509. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  510. } for P
  511. } def
  512. /PSL_CT_drawline
  513. {
  514. /str 20 string def
  515. PSL_strokeline
  516. {PSL_CT_placeline S} if
  517. /PSL_seg PSL_seg 1 add def
  518. /n 1 def
  519. } def
  520. /PSL_CT_placeline
  521. {PSL_xp 0 get PSL_yp 0 get M
  522. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  523. } def
  524. /PSL_draw_path_lines
  525. {
  526. /PSL_n_paths1 PSL_n_paths 1 sub def
  527. V
  528. /psl_start 0 def
  529. 0 1 PSL_n_paths1
  530. { /psl_k exch def
  531. /PSL_n PSL_path_n psl_k get def
  532. /PSL_n1 PSL_n 1 sub def
  533. PSL_path_pen psl_k get cvx exec
  534. N
  535. PSL_path_x psl_start get PSL_path_y psl_start get M
  536. 1 1 PSL_n1
  537. { /psl_i exch def
  538. /psl_kk psl_i psl_start add def
  539. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  540. } for
  541. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  542. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  543. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  544. S
  545. /psl_start psl_start PSL_n add def
  546. } for
  547. U
  548. } def
  549. /PSL_straight_path_labels
  550. {
  551. /psl_bits exch def
  552. /PSL_placetext psl_bits 2 and 2 eq def
  553. /PSL_rounded psl_bits 32 and 32 eq def
  554. /PSL_fillbox psl_bits 128 and 128 eq def
  555. /PSL_drawbox psl_bits 256 and 256 eq def
  556. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  557. /PSL_usebox PSL_fillbox PSL_drawbox or def
  558. 0 1 PSL_n_labels_minus_1
  559. { /psl_k exch def
  560. PSL_ST_prepare_text
  561. PSL_usebox
  562. { PSL_rounded
  563. {PSL_ST_textbox_round}
  564. {PSL_ST_textbox_rect}
  565. ifelse
  566. PSL_fillbox {V PSL_setboxrgb fill U} if
  567. PSL_drawbox {V PSL_setboxpen S U} if
  568. N
  569. } if
  570. PSL_placetext {PSL_ST_place_label} if
  571. } for
  572. } def
  573. /PSL_straight_path_clip
  574. {
  575. /psl_bits exch def
  576. /PSL_rounded psl_bits 32 and 32 eq def
  577. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  578. N clipsave clippath
  579. 0 1 PSL_n_labels_minus_1
  580. { /psl_k exch def
  581. PSL_ST_prepare_text
  582. PSL_rounded
  583. {PSL_ST_textbox_round}
  584. {PSL_ST_textbox_rect}
  585. ifelse
  586. } for
  587. PSL_eoclip N
  588. } def
  589. /PSL_ST_prepare_text
  590. {
  591. /psl_xp PSL_txt_x psl_k get def
  592. /psl_yp PSL_txt_y psl_k get def
  593. /psl_label PSL_label_str psl_k get def
  594. PSL_label_font psl_k get cvx exec
  595. /PSL_height PSL_heights psl_k get def
  596. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  597. /PSL_just PSL_label_justify psl_k get def
  598. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  599. /PSL_justy PSL_just 4 idiv 2 div neg def
  600. /psl_SW psl_label stringwidth pop def
  601. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  602. /psl_x0 psl_SW PSL_justx mul def
  603. /psl_y0 PSL_justy PSL_height mul def
  604. /psl_angle PSL_label_angle psl_k get def
  605. } def
  606. /PSL_ST_textbox_rect
  607. {
  608. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  609. PSL_gap_x neg PSL_gap_y neg M
  610. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  611. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  612. } def
  613. /PSL_ST_textbox_round
  614. {
  615. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  616. /psl_xd PSL_gap_x psl_BoxR sub def
  617. /psl_yd PSL_gap_y psl_BoxR sub def
  618. /psl_xL PSL_gap_x neg def
  619. /psl_yB PSL_gap_y neg def
  620. /psl_yT psl_boxH psl_yB add def
  621. /psl_H2 PSL_height psl_yd 2 mul add def
  622. /psl_W2 psl_SW psl_xd 2 mul add def
  623. /psl_xR psl_xL psl_boxW add def
  624. /psl_x0 psl_SW PSL_justx mul def
  625. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  626. psl_xL psl_yd M
  627. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  628. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  629. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  630. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  631. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  632. } def
  633. /PSL_ST_place_label
  634. {
  635. V psl_xp psl_yp T psl_angle R
  636. psl_SW PSL_justx mul psl_y0 M
  637. psl_label dup sd neg 0 exch G show
  638. U
  639. } def
  640. /PSL_nclip 0 def
  641. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  642. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  643. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  644. %%EndProlog
  645. %%BeginSetup
  646. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  647. PSLevel 1 gt { << /WhiteIsOpaque true >> setpagedevice } if
  648. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  649. %%EndSetup
  650. %%Page: 1 1
  651. %%BeginPageSetup
  652. V 0.06 0.06 scale
  653. %%EndPageSetup
  654. /PSL_page_xsize 10200 def
  655. /PSL_page_ysize 13200 def
  656. /PSL_plot_completion {} def
  657. /PSL_movie_label_completion {} def
  658. /PSL_movie_prog_indicator_completion {} def
  659. %PSL_End_Header
  660. gsave
  661. 0 A
  662. FQ
  663. O0
  664. 1200 1200 TM
  665. % PostScript produced by:
  666. %@GMT: gmt psrose data.txt -i1,0 -A20 -JX3i -P -R0/25/0/360 -Bxa10g10 -K -Bya10g10 '-B+tSector Diagram' -W1p -Gorange -D
  667. %@PROJ: xy -1.50000000 1.50000000 -1.50000000 1.50000000 -1.500 1.500 -1.500 1.500 +xy
  668. %GMTBoundingBox: 72 72 216 216
  669. %%BeginObject PSL_Layer_1
  670. 0 setlinecap
  671. 0 setlinejoin
  672. 3.32550952342 setmiterlimit
  673. 1800 1800 T
  674. 4 W
  675. N 0 0 M 1800 0 D S
  676. N 0 0 M 1773 313 D S
  677. N 0 0 M 1691 616 D S
  678. N 0 0 M 1559 900 D S
  679. N 0 0 M 1379 1157 D S
  680. N 0 0 M 1157 1379 D S
  681. N 0 0 M 900 1559 D S
  682. N 0 0 M 616 1691 D S
  683. N 0 0 M 313 1773 D S
  684. N 0 0 M 0 1800 D S
  685. N 0 0 M -313 1773 D S
  686. N 0 0 M -616 1691 D S
  687. N 0 0 M -900 1559 D S
  688. N 0 0 M -1157 1379 D S
  689. N 0 0 M -1379 1157 D S
  690. N 0 0 M -1559 900 D S
  691. N 0 0 M -1691 616 D S
  692. N 0 0 M -1773 313 D S
  693. N 0 0 M -1800 0 D S
  694. N 0 0 M -1773 -313 D S
  695. N 0 0 M -1691 -616 D S
  696. N 0 0 M -1559 -900 D S
  697. N 0 0 M -1379 -1157 D S
  698. N 0 0 M -1157 -1379 D S
  699. N 0 0 M -900 -1559 D S
  700. N 0 0 M -616 -1691 D S
  701. N 0 0 M -313 -1773 D S
  702. N 0 0 M 0 -1800 D S
  703. N 0 0 M 313 -1773 D S
  704. N 0 0 M 616 -1691 D S
  705. N 0 0 M 900 -1559 D S
  706. N 0 0 M 1157 -1379 D S
  707. N 0 0 M 1379 -1157 D S
  708. N 0 0 M 1559 -900 D S
  709. N 0 0 M 1691 -616 D S
  710. N 0 0 M 1773 -313 D S
  711. N 0 0 M 1800 0 D S
  712. N 0 0 720 0 360 arc S
  713. N 0 0 1440 0 360 arc S
  714. 17 W
  715. {1 0.647 0 C} FS
  716. 389 60 80 0 0 Sw
  717. 158 40 60 0 0 Sw
  718. 101 20 40 0 0 Sw
  719. 79 0 20 0 0 Sw
  720. 86 -20 0 0 0 Sw
  721. 187 -40 -20 0 0 Sw
  722. 641 -60 -40 0 0 Sw
  723. 763 -80 -60 0 0 Sw
  724. 590 -100 -80 0 0 Sw
  725. 353 -120 -100 0 0 Sw
  726. 288 -140 -120 0 0 Sw
  727. 216 -160 -140 0 0 Sw
  728. 158 -180 -160 0 0 Sw
  729. 151 -200 -180 0 0 Sw
  730. 180 -220 -200 0 0 Sw
  731. 396 -240 -220 0 0 Sw
  732. 1246 -260 -240 0 0 Sw
  733. 1800 -280 -260 0 0 Sw
  734. 68 383 M
  735. 245 1390 D
  736. 0 0 1800 -280 -260 arc
  737. 0 0 1246 -260 -240 arc
  738. 0 0 396 -240 -220 arc
  739. 0 0 180 -220 -200 arc
  740. 0 0 151 -200 -180 arc
  741. 0 0 158 -180 -160 arc
  742. 0 0 216 -160 -140 arc
  743. 0 0 288 -140 -120 arc
  744. 0 0 353 -120 -100 arc
  745. 0 0 590 -100 -80 arc
  746. 0 0 763 -80 -60 arc
  747. 0 0 641 -60 -40 arc
  748. 0 0 187 -40 -20 arc
  749. 0 0 86 -20 0 arc
  750. 0 0 79 0 20 arc
  751. 0 0 101 20 40 arc
  752. 0 0 158 40 60 arc
  753. 0 0 389 60 80 arc S
  754. 0 2500 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  755. 400 F0
  756. (Sector Diagram) bc Z
  757. 0 -1967 M 267 F0
  758. (South) tc Z
  759. 8 W
  760. 1800 -1717 M
  761. 0 -83 D
  762. -720 0 D
  763. 0 83 D
  764. S
  765. 1440 -1883 M 200 F0
  766. (10) tc Z
  767. 1967 0 M 267 F0
  768. (East) ml Z
  769. -1967 0 M (West) mr Z
  770. 0 1967 M (North) bc Z
  771. 25 W
  772. FQ
  773. O1
  774. 1800 0 0 Sc
  775. -1800 -1800 T
  776. %%EndObject
  777. 0 A
  778. FQ
  779. O0
  780. 0 0 TM
  781. % PostScript produced by:
  782. %@GMT: gmt psrose data.txt -i2,0 -A20 -JX3i -R0/25/0/360 -O -K -W1p -Ggreen -D
  783. %@PROJ: xy -1.50000000 1.50000000 -1.50000000 1.50000000 -1.500 1.500 -1.500 1.500 +xy
  784. %%BeginObject PSL_Layer_2
  785. 0 setlinecap
  786. 0 setlinejoin
  787. 3.32550952342 setmiterlimit
  788. 1800 1800 T
  789. 17 W
  790. {0 1 0 C} FS
  791. 389 60 80 0 0 Sw
  792. 158 40 60 0 0 Sw
  793. 101 20 40 0 0 Sw
  794. 79 0 20 0 0 Sw
  795. 86 -20 0 0 0 Sw
  796. 158 -40 -20 0 0 Sw
  797. 547 -60 -40 0 0 Sw
  798. 670 -80 -60 0 0 Sw
  799. 446 -100 -80 0 0 Sw
  800. 295 -120 -100 0 0 Sw
  801. 266 -140 -120 0 0 Sw
  802. 216 -160 -140 0 0 Sw
  803. 158 -180 -160 0 0 Sw
  804. 151 -200 -180 0 0 Sw
  805. 180 -220 -200 0 0 Sw
  806. 382 -240 -220 0 0 Sw
  807. 1080 -260 -240 0 0 Sw
  808. 1022 -280 -260 0 0 Sw
  809. 68 383 M
  810. 110 624 D
  811. 0 0 1022 -280 -260 arc
  812. 0 0 1080 -260 -240 arc
  813. 0 0 382 -240 -220 arc
  814. 0 0 180 -220 -200 arc
  815. 0 0 151 -200 -180 arc
  816. 0 0 158 -180 -160 arc
  817. 0 0 216 -160 -140 arc
  818. 0 0 266 -140 -120 arc
  819. 0 0 295 -120 -100 arc
  820. 0 0 446 -100 -80 arc
  821. 0 0 670 -80 -60 arc
  822. 0 0 547 -60 -40 arc
  823. 0 0 158 -40 -20 arc
  824. 0 0 86 -20 0 arc
  825. 0 0 79 0 20 arc
  826. 0 0 101 20 40 arc
  827. 0 0 158 40 60 arc
  828. 0 0 389 60 80 arc S
  829. -1800 -1800 T
  830. %%EndObject
  831. 0 A
  832. FQ
  833. O0
  834. 0 0 TM
  835. % PostScript produced by:
  836. %@GMT: gmt psrose data.txt -i3,0 -A20 -JX3i -R0/25/0/360 -O -K -W1p -Gblue -D
  837. %@PROJ: xy -1.50000000 1.50000000 -1.50000000 1.50000000 -1.500 1.500 -1.500 1.500 +xy
  838. %%BeginObject PSL_Layer_3
  839. 0 setlinecap
  840. 0 setlinejoin
  841. 3.32550952342 setmiterlimit
  842. 1800 1800 T
  843. 17 W
  844. {0 0 1 C} FS
  845. 173 60 80 0 0 Sw
  846. 58 40 60 0 0 Sw
  847. 50 20 40 0 0 Sw
  848. 43 0 20 0 0 Sw
  849. 50 -20 0 0 0 Sw
  850. 86 -40 -20 0 0 Sw
  851. 324 -60 -40 0 0 Sw
  852. 389 -80 -60 0 0 Sw
  853. 302 -100 -80 0 0 Sw
  854. 180 -120 -100 0 0 Sw
  855. 158 -140 -120 0 0 Sw
  856. 122 -160 -140 0 0 Sw
  857. 94 -180 -160 0 0 Sw
  858. 101 -200 -180 0 0 Sw
  859. 101 -220 -200 0 0 Sw
  860. 180 -240 -220 0 0 Sw
  861. 634 -260 -240 0 0 Sw
  862. 540 -280 -260 0 0 Sw
  863. 30 170 M
  864. 64 362 D
  865. 0 0 540 -280 -260 arc
  866. 0 0 634 -260 -240 arc
  867. 0 0 180 -240 -220 arc
  868. 0 0 101 -220 -200 arc
  869. 0 0 101 -200 -180 arc
  870. 0 0 94 -180 -160 arc
  871. 0 0 122 -160 -140 arc
  872. 0 0 158 -140 -120 arc
  873. 0 0 180 -120 -100 arc
  874. 0 0 302 -100 -80 arc
  875. 0 0 389 -80 -60 arc
  876. 0 0 324 -60 -40 arc
  877. 0 0 86 -40 -20 arc
  878. 0 0 50 -20 0 arc
  879. 0 0 43 0 20 arc
  880. 0 0 50 20 40 arc
  881. 0 0 58 40 60 arc
  882. 0 0 173 60 80 arc S
  883. -1800 -1800 T
  884. %%EndObject
  885. 0 A
  886. FQ
  887. O0
  888. 0 0 TM
  889. % PostScript produced by:
  890. %@GMT: gmt psrose data.txt -i4,0 -A20 -JX3i -R0/25/0/360 -O -K -W1p -Gwhite -D
  891. %@PROJ: xy -1.50000000 1.50000000 -1.50000000 1.50000000 -1.500 1.500 -1.500 1.500 +xy
  892. %%BeginObject PSL_Layer_4
  893. 0 setlinecap
  894. 0 setlinejoin
  895. 3.32550952342 setmiterlimit
  896. 1800 1800 T
  897. 17 W
  898. {1 A} FS
  899. 86 60 80 0 0 Sw
  900. 50 40 60 0 0 Sw
  901. 50 20 40 0 0 Sw
  902. 43 0 20 0 0 Sw
  903. 50 -20 0 0 0 Sw
  904. 50 -40 -20 0 0 Sw
  905. 65 -60 -40 0 0 Sw
  906. 79 -80 -60 0 0 Sw
  907. 79 -100 -80 0 0 Sw
  908. 108 -120 -100 0 0 Sw
  909. 108 -140 -120 0 0 Sw
  910. 108 -160 -140 0 0 Sw
  911. 86 -180 -160 0 0 Sw
  912. 94 -200 -180 0 0 Sw
  913. 86 -220 -200 0 0 Sw
  914. 86 -240 -220 0 0 Sw
  915. 101 -260 -240 0 0 Sw
  916. 94 -280 -260 0 0 Sw
  917. 15 85 M
  918. 1 7 D
  919. 0 0 94 -280 -260 arc
  920. 0 0 101 -260 -240 arc
  921. 0 0 86 -240 -220 arc
  922. 0 0 86 -220 -200 arc
  923. 0 0 94 -200 -180 arc
  924. 0 0 86 -180 -160 arc
  925. 0 0 108 -160 -140 arc
  926. 0 0 108 -140 -120 arc
  927. 0 0 108 -120 -100 arc
  928. 0 0 79 -100 -80 arc
  929. 0 0 79 -80 -60 arc
  930. 0 0 65 -60 -40 arc
  931. 0 0 50 -40 -20 arc
  932. 0 0 50 -20 0 arc
  933. 0 0 43 0 20 arc
  934. 0 0 50 20 40 arc
  935. 0 0 50 40 60 arc
  936. 0 0 86 60 80 arc S
  937. -1800 -1800 T
  938. %%EndObject
  939. 0 A
  940. FQ
  941. O0
  942. 4200 3300 TM
  943. % PostScript produced by:
  944. %@GMT: gmt psrose data.txt -i1,0 -JX3i -R0/25/0/360 -Bxa10g10 -O -K -Bya10g10 '-B+tWindrose Diagram' -W4p,orange -D -X3.5i -Y2.75i
  945. %@PROJ: xy -1.50000000 1.50000000 -1.50000000 1.50000000 -1.500 1.500 -1.500 1.500 +xy
  946. %%BeginObject PSL_Layer_5
  947. 0 setlinecap
  948. 0 setlinejoin
  949. 3.32550952342 setmiterlimit
  950. 1800 1800 T
  951. 4 W
  952. N 0 0 M 1800 0 D S
  953. N 0 0 M 1773 313 D S
  954. N 0 0 M 1691 616 D S
  955. N 0 0 M 1559 900 D S
  956. N 0 0 M 1379 1157 D S
  957. N 0 0 M 1157 1379 D S
  958. N 0 0 M 900 1559 D S
  959. N 0 0 M 616 1691 D S
  960. N 0 0 M 313 1773 D S
  961. N 0 0 M 0 1800 D S
  962. N 0 0 M -313 1773 D S
  963. N 0 0 M -616 1691 D S
  964. N 0 0 M -900 1559 D S
  965. N 0 0 M -1157 1379 D S
  966. N 0 0 M -1379 1157 D S
  967. N 0 0 M -1559 900 D S
  968. N 0 0 M -1691 616 D S
  969. N 0 0 M -1773 313 D S
  970. N 0 0 M -1800 0 D S
  971. N 0 0 M -1773 -313 D S
  972. N 0 0 M -1691 -616 D S
  973. N 0 0 M -1559 -900 D S
  974. N 0 0 M -1379 -1157 D S
  975. N 0 0 M -1157 -1379 D S
  976. N 0 0 M -900 -1559 D S
  977. N 0 0 M -616 -1691 D S
  978. N 0 0 M -313 -1773 D S
  979. N 0 0 M 0 -1800 D S
  980. N 0 0 M 313 -1773 D S
  981. N 0 0 M 616 -1691 D S
  982. N 0 0 M 900 -1559 D S
  983. N 0 0 M 1157 -1379 D S
  984. N 0 0 M 1379 -1157 D S
  985. N 0 0 M 1559 -900 D S
  986. N 0 0 M 1691 -616 D S
  987. N 0 0 M 1773 -313 D S
  988. N 0 0 M 1800 0 D S
  989. N 0 0 720 0 360 arc S
  990. N 0 0 1440 0 360 arc S
  991. 67 W
  992. 1 0.647 0 C
  993. N 0 0 M 133 365 D S
  994. N 0 0 M 102 121 D S
  995. N 0 0 M 87 50 D S
  996. N 0 0 M 78 14 D S
  997. N 0 0 M 85 -15 D S
  998. N 0 0 M 162 -94 D S
  999. N 0 0 M 412 -491 D S
  1000. N 0 0 M 261 -717 D S
  1001. N 0 0 M 0 -590 D S
  1002. N 0 0 M -121 -332 D S
  1003. N 0 0 M -185 -221 D S
  1004. N 0 0 M -187 -108 D S
  1005. N 0 0 M -156 -28 D S
  1006. N 0 0 M -149 26 D S
  1007. N 0 0 M -156 90 D S
  1008. N 0 0 M -255 303 D S
  1009. N 0 0 M -426 1170 D S
  1010. N 0 0 M 0 1800 D S
  1011. 0 A
  1012. 0 2500 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1013. 400 F0
  1014. (Windrose Diagram) bc Z
  1015. 0 -1967 M 267 F0
  1016. (South) tc Z
  1017. 8 W
  1018. 1800 -1717 M
  1019. 0 -83 D
  1020. -720 0 D
  1021. 0 83 D
  1022. S
  1023. 1440 -1883 M 200 F0
  1024. (10) tc Z
  1025. 1967 0 M 267 F0
  1026. (East) ml Z
  1027. -1967 0 M (West) mr Z
  1028. 0 1967 M (North) bc Z
  1029. 25 W
  1030. O1
  1031. 1800 0 0 Sc
  1032. -1800 -1800 T
  1033. %%EndObject
  1034. 0 A
  1035. FQ
  1036. O0
  1037. 0 0 TM
  1038. % PostScript produced by:
  1039. %@GMT: gmt psrose data.txt -i2,0 -JX3i -R0/25/0/360 -O -K -W4p,green -D
  1040. %@PROJ: xy -1.50000000 1.50000000 -1.50000000 1.50000000 -1.500 1.500 -1.500 1.500 +xy
  1041. %%BeginObject PSL_Layer_6
  1042. 0 setlinecap
  1043. 0 setlinejoin
  1044. 3.32550952342 setmiterlimit
  1045. 1800 1800 T
  1046. 67 W
  1047. 0 1 0 C
  1048. N 0 0 M 133 365 D S
  1049. N 0 0 M 102 121 D S
  1050. N 0 0 M 87 50 D S
  1051. N 0 0 M 78 14 D S
  1052. N 0 0 M 85 -15 D S
  1053. N 0 0 M 137 -79 D S
  1054. N 0 0 M 352 -419 D S
  1055. N 0 0 M 229 -629 D S
  1056. N 0 0 M 0 -446 D S
  1057. N 0 0 M -101 -277 D S
  1058. N 0 0 M -171 -204 D S
  1059. N 0 0 M -187 -108 D S
  1060. N 0 0 M -156 -28 D S
  1061. N 0 0 M -149 26 D S
  1062. N 0 0 M -156 90 D S
  1063. N 0 0 M -245 292 D S
  1064. N 0 0 M -369 1015 D S
  1065. N 0 0 M 0 1022 D S
  1066. -1800 -1800 T
  1067. %%EndObject
  1068. 0 A
  1069. FQ
  1070. O0
  1071. 0 0 TM
  1072. % PostScript produced by:
  1073. %@GMT: gmt psrose data.txt -i3,0 -JX3i -R0/25/0/360 -O -K -W4p,blue -D
  1074. %@PROJ: xy -1.50000000 1.50000000 -1.50000000 1.50000000 -1.500 1.500 -1.500 1.500 +xy
  1075. %%BeginObject PSL_Layer_7
  1076. 0 setlinecap
  1077. 0 setlinejoin
  1078. 3.32550952342 setmiterlimit
  1079. 1800 1800 T
  1080. 67 W
  1081. 0 0 1 C
  1082. N 0 0 M 59 162 D S
  1083. N 0 0 M 37 44 D S
  1084. N 0 0 M 44 25 D S
  1085. N 0 0 M 43 8 D S
  1086. N 0 0 M 50 -9 D S
  1087. N 0 0 M 75 -43 D S
  1088. N 0 0 M 208 -248 D S
  1089. N 0 0 M 133 -365 D S
  1090. N 0 0 M 0 -302 D S
  1091. N 0 0 M -62 -169 D S
  1092. N 0 0 M -102 -121 D S
  1093. N 0 0 M -106 -61 D S
  1094. N 0 0 M -92 -16 D S
  1095. N 0 0 M -99 18 D S
  1096. N 0 0 M -87 50 D S
  1097. N 0 0 M -116 138 D S
  1098. N 0 0 M -217 595 D S
  1099. N 0 0 M 0 540 D S
  1100. -1800 -1800 T
  1101. %%EndObject
  1102. 0 A
  1103. FQ
  1104. O0
  1105. 0 0 TM
  1106. % PostScript produced by:
  1107. %@GMT: gmt psrose data.txt -i4,0 -JX3i -R0/25/0/360 -O -K -W4p,white -D
  1108. %@PROJ: xy -1.50000000 1.50000000 -1.50000000 1.50000000 -1.500 1.500 -1.500 1.500 +xy
  1109. %%BeginObject PSL_Layer_8
  1110. 0 setlinecap
  1111. 0 setlinejoin
  1112. 3.32550952342 setmiterlimit
  1113. 1800 1800 T
  1114. 67 W
  1115. 1 A
  1116. N 0 0 M 30 81 D S
  1117. N 0 0 M 32 39 D S
  1118. N 0 0 M 44 25 D S
  1119. N 0 0 M 43 8 D S
  1120. N 0 0 M 50 -9 D S
  1121. N 0 0 M 44 -25 D S
  1122. N 0 0 M 42 -50 D S
  1123. N 0 0 M 27 -74 D S
  1124. N 0 0 M 0 -79 D S
  1125. N 0 0 M -37 -101 D S
  1126. N 0 0 M -69 -83 D S
  1127. N 0 0 M -94 -54 D S
  1128. N 0 0 M -85 -15 D S
  1129. N 0 0 M -92 16 D S
  1130. N 0 0 M -75 43 D S
  1131. N 0 0 M -56 66 D S
  1132. N 0 0 M -34 95 D S
  1133. N 0 0 M 0 94 D S
  1134. -1800 -1800 T
  1135. %%EndObject
  1136. 0 A
  1137. FQ
  1138. O0
  1139. -4200 3300 TM
  1140. % PostScript produced by:
  1141. %@GMT: gmt psrose data.txt -i1,0 -A20r -JX3i -R0/25/0/360 -Bxa10g10 -O -K -Bya10g10 '-B+tRose Diagram' -W1p -Gorange -D -X-3.5i -Y2.75i
  1142. %@PROJ: xy -1.50000000 1.50000000 -1.50000000 1.50000000 -1.500 1.500 -1.500 1.500 +xy
  1143. %%BeginObject PSL_Layer_9
  1144. 0 setlinecap
  1145. 0 setlinejoin
  1146. 3.32550952342 setmiterlimit
  1147. 1800 1800 T
  1148. 4 W
  1149. N 0 0 M 1800 0 D S
  1150. N 0 0 M 1773 313 D S
  1151. N 0 0 M 1691 616 D S
  1152. N 0 0 M 1559 900 D S
  1153. N 0 0 M 1379 1157 D S
  1154. N 0 0 M 1157 1379 D S
  1155. N 0 0 M 900 1559 D S
  1156. N 0 0 M 616 1691 D S
  1157. N 0 0 M 313 1773 D S
  1158. N 0 0 M 0 1800 D S
  1159. N 0 0 M -313 1773 D S
  1160. N 0 0 M -616 1691 D S
  1161. N 0 0 M -900 1559 D S
  1162. N 0 0 M -1157 1379 D S
  1163. N 0 0 M -1379 1157 D S
  1164. N 0 0 M -1559 900 D S
  1165. N 0 0 M -1691 616 D S
  1166. N 0 0 M -1773 313 D S
  1167. N 0 0 M -1800 0 D S
  1168. N 0 0 M -1773 -313 D S
  1169. N 0 0 M -1691 -616 D S
  1170. N 0 0 M -1559 -900 D S
  1171. N 0 0 M -1379 -1157 D S
  1172. N 0 0 M -1157 -1379 D S
  1173. N 0 0 M -900 -1559 D S
  1174. N 0 0 M -616 -1691 D S
  1175. N 0 0 M -313 -1773 D S
  1176. N 0 0 M 0 -1800 D S
  1177. N 0 0 M 313 -1773 D S
  1178. N 0 0 M 616 -1691 D S
  1179. N 0 0 M 900 -1559 D S
  1180. N 0 0 M 1157 -1379 D S
  1181. N 0 0 M 1379 -1157 D S
  1182. N 0 0 M 1559 -900 D S
  1183. N 0 0 M 1691 -616 D S
  1184. N 0 0 M 1773 -313 D S
  1185. N 0 0 M 1800 0 D S
  1186. N 0 0 720 0 360 arc S
  1187. N 0 0 1440 0 360 arc S
  1188. 17 W
  1189. {1 0.647 0 C} FS
  1190. O1
  1191. 426 630 -171 867 -99 213 -7 64 7 54 31 80 -2 113 -64 111 -121 258 -261 127 -151 -226 250 -397 77 -79 7 -29 -9 -36 -15 -71 -31 -244 17 133 365 SP
  1192. 0 2500 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1193. 400 F0
  1194. (Rose Diagram) bc Z
  1195. 0 -1967 M 267 F0
  1196. (South) tc Z
  1197. 8 W
  1198. 1800 -1717 M
  1199. 0 -83 D
  1200. -720 0 D
  1201. 0 83 D
  1202. S
  1203. 1440 -1883 M 200 F0
  1204. (10) tc Z
  1205. 1967 0 M 267 F0
  1206. (East) ml Z
  1207. -1967 0 M (West) mr Z
  1208. 0 1967 M (North) bc Z
  1209. 25 W
  1210. FQ
  1211. 1800 0 0 Sc
  1212. -1800 -1800 T
  1213. %%EndObject
  1214. 0 A
  1215. FQ
  1216. O0
  1217. 0 0 TM
  1218. % PostScript produced by:
  1219. %@GMT: gmt psrose data.txt -i2,0 -A20r -JX3i -R0/25/0/360 -O -K -W1p -Ggreen -D
  1220. %@PROJ: xy -1.50000000 1.50000000 -1.50000000 1.50000000 -1.500 1.500 -1.500 1.500 +xy
  1221. %%BeginObject PSL_Layer_10
  1222. 0 setlinecap
  1223. 0 setlinejoin
  1224. 3.32550952342 setmiterlimit
  1225. 1800 1800 T
  1226. 17 W
  1227. {0 1 0 C} FS
  1228. O1
  1229. 369 7 -124 723 -89 202 -7 64 7 54 31 80 -16 96 -70 73 -101 169 -229 183 -123 -210 215 -340 52 -64 7 -29 -9 -36 -15 -71 -31 -244 17 133 365 SP
  1230. -1800 -1800 T
  1231. %%EndObject
  1232. 0 A
  1233. FQ
  1234. O0
  1235. 0 0 TM
  1236. % PostScript produced by:
  1237. %@GMT: gmt psrose data.txt -i3,0 -A20r -JX3i -R0/25/0/360 -O -K -W1p -Gblue -D
  1238. %@PROJ: xy -1.50000000 1.50000000 -1.50000000 1.50000000 -1.500 1.500 -1.500 1.500 +xy
  1239. %%BeginObject PSL_Layer_11
  1240. 0 setlinecap
  1241. 0 setlinejoin
  1242. 3.32550952342 setmiterlimit
  1243. 1800 1800 T
  1244. 17 W
  1245. {0 0 1 C} FS
  1246. O1
  1247. 217 -55 -101 457 -29 88 12 32 -7 34 14 45 -4 60 -40 48 -62 133 -133 63 -75 -117 133 -205 25 -34 7 -17 -1 -17 7 -19 -22 -118 17 59 162 SP
  1248. -1800 -1800 T
  1249. %%EndObject
  1250. 0 A
  1251. FQ
  1252. O0
  1253. 0 0 TM
  1254. % PostScript produced by:
  1255. %@GMT: gmt psrose data.txt -i4,0 -A20r -JX3i -R0/25/0/360 -O -K -W1p -Gwhite -D
  1256. %@PROJ: xy -1.50000000 1.50000000 -1.50000000 1.50000000 -1.500 1.500 -1.500 1.500 +xy
  1257. %%BeginObject PSL_Layer_12
  1258. 0 setlinecap
  1259. 0 setlinejoin
  1260. 3.32550952342 setmiterlimit
  1261. 1800 1800 T
  1262. 17 W
  1263. {1 A} FS
  1264. O1
  1265. 34 -1 22 29 19 23 17 27 -7 31 9 39 -25 29 -32 18 -37 -22 -27 -5 -15 -24 -2 -25 -6 -16 7 -17 -1 -17 12 -14 2 -42 17 30 81 SP
  1266. -1800 -1800 T
  1267. %%EndObject
  1268. 0 A
  1269. FQ
  1270. O0
  1271. 0 0 TM
  1272. % PostScript produced by:
  1273. %@GMT: gmt pstext -R0/6/0/3 -Jx1i -O -F+f18p+jLM -N
  1274. %@PROJ: xy 0.00000000 6.00000000 0.00000000 3.00000000 0.000 6.000 0.000 3.000 +xy
  1275. %%BeginObject PSL_Layer_13
  1276. 0 setlinecap
  1277. 0 setlinejoin
  1278. 3.32550952342 setmiterlimit
  1279. 4800 2400 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1280. 300 F0
  1281. (Bins are centered) ml Z
  1282. %%EndObject
  1283. grestore
  1284. PSL_movie_label_completion /PSL_movie_label_completion {} def
  1285. PSL_movie_prog_indicator_completion /PSL_movie_prog_indicator_completion {} def
  1286. %PSL_Begin_Trailer
  1287. %%PageTrailer
  1288. U
  1289. showpage
  1290. %%Trailer
  1291. end
  1292. %%EOF
Tip!

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

Comments

Loading...