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

rotrectangle.ps 30 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
  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_99b7aea-dirty_2021.03.11 [64-bit] Document from psxy
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Thu Mar 11 17:36:17 2021
  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. /PSL_BM_arg edef /PSL_S_arg edef /PSL_F_arg edef
  115. /.setfillconstantalpha where
  116. { pop PSL_BM_arg .setblendmode PSL_S_arg .setstrokeconstantalpha PSL_F_arg .setfillconstantalpha }
  117. { /pdfmark where {pop [ /BM PSL_BM_arg /CA PSL_S_arg /ca PSL_F_arg /SetTransparency pdfmark} if }
  118. ifelse
  119. }!
  120. /Standard+_Encoding [
  121. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  122. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  123. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  124. /.notdef /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
  125. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  126. /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
  127. /zero /one /two /three /four /five /six /seven
  128. /eight /nine /colon /semicolon /less /equal /greater /question
  129. /at /A /B /C /D /E /F /G
  130. /H /I /J /K /L /M /N /O
  131. /P /Q /R /S /T /U /V /W
  132. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  133. /quoteleft /a /b /c /d /e /f /g
  134. /h /i /j /k /l /m /n /o
  135. /p /q /r /s /t /u /v /w
  136. /x /y /z /braceleft /bar /braceright /asciitilde /florin
  137. /Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
  138. /Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
  139. /divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
  140. /onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
  141. /.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
  142. /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
  143. /Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
  144. /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
  145. /Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
  146. /dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
  147. /emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
  148. /Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
  149. /acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
  150. /egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
  151. /oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
  152. /udieresis /oslash /oe /germandbls /ugrave /Aring /aring /ydieresis
  153. ] def
  154. /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
  155. /F0 {/Helvetica Y}!
  156. /F1 {/Helvetica-Bold Y}!
  157. /F2 {/Helvetica-Oblique Y}!
  158. /F3 {/Helvetica-BoldOblique Y}!
  159. /F4 {/Times-Roman Y}!
  160. /F5 {/Times-Bold Y}!
  161. /F6 {/Times-Italic Y}!
  162. /F7 {/Times-BoldItalic Y}!
  163. /F8 {/Courier Y}!
  164. /F9 {/Courier-Bold Y}!
  165. /F10 {/Courier-Oblique Y}!
  166. /F11 {/Courier-BoldOblique Y}!
  167. /F12 {/Symbol Y}!
  168. /F13 {/AvantGarde-Book Y}!
  169. /F14 {/AvantGarde-BookOblique Y}!
  170. /F15 {/AvantGarde-Demi Y}!
  171. /F16 {/AvantGarde-DemiOblique Y}!
  172. /F17 {/Bookman-Demi Y}!
  173. /F18 {/Bookman-DemiItalic Y}!
  174. /F19 {/Bookman-Light Y}!
  175. /F20 {/Bookman-LightItalic Y}!
  176. /F21 {/Helvetica-Narrow Y}!
  177. /F22 {/Helvetica-Narrow-Bold Y}!
  178. /F23 {/Helvetica-Narrow-Oblique Y}!
  179. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  180. /F25 {/NewCenturySchlbk-Roman Y}!
  181. /F26 {/NewCenturySchlbk-Italic Y}!
  182. /F27 {/NewCenturySchlbk-Bold Y}!
  183. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  184. /F29 {/Palatino-Roman Y}!
  185. /F30 {/Palatino-Italic Y}!
  186. /F31 {/Palatino-Bold Y}!
  187. /F32 {/Palatino-BoldItalic Y}!
  188. /F33 {/ZapfChancery-MediumItalic Y}!
  189. /F34 {/ZapfDingbats Y}!
  190. /F35 {/Ryumin-Light-EUC-H Y}!
  191. /F36 {/Ryumin-Light-EUC-V Y}!
  192. /F37 {/GothicBBB-Medium-EUC-H Y}!
  193. /F38 {/GothicBBB-Medium-EUC-V Y}!
  194. /PSL_pathtextdict 26 dict def
  195. /PSL_pathtext
  196. {PSL_pathtextdict begin
  197. /ydepth exch def
  198. /textheight exch def
  199. /just exch def
  200. /offset exch def
  201. /str exch def
  202. /pathdist 0 def
  203. /setdist offset def
  204. /charcount 0 def
  205. /justy just 4 idiv textheight mul 2 div neg ydepth sub def
  206. V flattenpath
  207. {movetoproc} {linetoproc}
  208. {curvetoproc} {closepathproc}
  209. pathforall
  210. U N
  211. end
  212. } def
  213. PSL_pathtextdict begin
  214. /movetoproc
  215. { /newy exch def /newx exch def
  216. /firstx newx def /firsty newy def
  217. /ovr 0 def
  218. newx newy transform
  219. /cpy exch def /cpx exch def
  220. } def
  221. /linetoproc
  222. { /oldx newx def /oldy newy def
  223. /newy exch def /newx exch def
  224. /dx newx oldx sub def
  225. /dy newy oldy sub def
  226. /dist dx dup mul dy dup mul add sqrt def
  227. dist 0 ne
  228. { /dsx dx dist div ovr mul def
  229. /dsy dy dist div ovr mul def
  230. oldx dsx add oldy dsy add transform
  231. /cpy exch def /cpx exch def
  232. /pathdist pathdist dist add def
  233. {setdist pathdist le
  234. {charcount str length lt
  235. {setchar} {exit} ifelse}
  236. { /ovr setdist pathdist sub def
  237. exit}
  238. ifelse
  239. } loop
  240. } if
  241. } def
  242. /curvetoproc
  243. { (ERROR: No curveto's after flattenpath!)
  244. print
  245. } def
  246. /closepathproc
  247. {firstx firsty linetoproc
  248. firstx firsty movetoproc
  249. } def
  250. /setchar
  251. { /char str charcount 1 getinterval def
  252. /charcount charcount 1 add def
  253. /charwidth char stringwidth pop def
  254. V cpx cpy itransform T
  255. dy dx atan R
  256. 0 justy M
  257. PSL_font_F {
  258. char show}
  259. if
  260. PSL_font_FO {
  261. currentpoint N M V char true charpath fs U V char false charpath S U char E 0 G
  262. } if
  263. PSL_font_OF {
  264. currentpoint N M V char false charpath S U V char true charpath fs U char E 0 G
  265. } if
  266. 0 justy neg G currentpoint transform
  267. /cpy exch def /cpx exch def
  268. U /setdist setdist charwidth add def
  269. } def
  270. end
  271. /PSL_set_label_heights
  272. {
  273. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  274. /PSL_heights PSL_n_labels array def
  275. 0 1 PSL_n_labels_minus_1
  276. { /psl_k exch def
  277. /psl_label PSL_label_str psl_k get def
  278. PSL_label_font psl_k get cvx exec
  279. psl_label sH /PSL_height edef
  280. PSL_heights psl_k PSL_height put
  281. } for
  282. } def
  283. /PSL_curved_path_labels
  284. { /psl_bits exch def
  285. /PSL_placetext psl_bits 2 and 2 eq def
  286. /PSL_clippath psl_bits 4 and 4 eq def
  287. /PSL_strokeline false def
  288. /PSL_fillbox psl_bits 128 and 128 eq def
  289. /PSL_drawbox psl_bits 256 and 256 eq def
  290. /PSL_font_F psl_bits 1536 and 0 eq def
  291. /PSL_font_FO psl_bits 512 and 512 eq def
  292. /PSL_font_OF psl_bits 1024 and 1024 eq def
  293. /PSL_n_paths1 PSL_n_paths 1 sub def
  294. /PSL_usebox PSL_fillbox PSL_drawbox or def
  295. PSL_clippath {clipsave N clippath} if
  296. /psl_k 0 def
  297. /psl_p 0 def
  298. 0 1 PSL_n_paths1
  299. { /psl_kk exch def
  300. /PSL_n PSL_path_n psl_kk get def
  301. /PSL_m PSL_label_n psl_kk get def
  302. /PSL_x PSL_path_x psl_k PSL_n getinterval def
  303. /PSL_y PSL_path_y psl_k PSL_n getinterval def
  304. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
  305. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
  306. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
  307. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
  308. PSL_curved_path_label
  309. /psl_k psl_k PSL_n add def
  310. /psl_p psl_p PSL_m add def
  311. } for
  312. PSL_clippath {PSL_eoclip} if N
  313. } def
  314. /PSL_curved_path_label
  315. {
  316. /PSL_n1 PSL_n 1 sub def
  317. /PSL_m1 PSL_m 1 sub def
  318. PSL_CT_calcstringwidth
  319. PSL_CT_calclinedist
  320. PSL_CT_excludelabels
  321. PSL_CT_addcutpoints
  322. /PSL_nn1 PSL_nn 1 sub def
  323. /n 0 def
  324. /k 0 def
  325. /j 0 def
  326. /PSL_seg 0 def
  327. /PSL_xp PSL_nn array def
  328. /PSL_yp PSL_nn array def
  329. PSL_xp 0 PSL_xx 0 get put
  330. PSL_yp 0 PSL_yy 0 get put
  331. 1 1 PSL_nn1
  332. { /i exch def
  333. /node_type PSL_kind i get def
  334. /j j 1 add def
  335. PSL_xp j PSL_xx i get put
  336. PSL_yp j PSL_yy i get put
  337. node_type 1 eq
  338. {n 0 eq
  339. {PSL_CT_drawline}
  340. {
  341. PSL_CT_reversepath
  342. PSL_CT_textline}
  343. ifelse
  344. /j 0 def
  345. PSL_xp j PSL_xx i get put
  346. PSL_yp j PSL_yy i get put
  347. } if
  348. } for
  349. n 0 eq {PSL_CT_drawline} if
  350. } def
  351. /PSL_CT_textline
  352. { PSL_fnt k get cvx exec
  353. /PSL_height PSL_heights k get def
  354. PSL_placetext {PSL_CT_placelabel} if
  355. PSL_clippath {PSL_CT_clippath} if
  356. /n 0 def /k k 1 add def
  357. } def
  358. /PSL_CT_calcstringwidth
  359. { /PSL_width_tmp PSL_m array def
  360. 0 1 PSL_m1
  361. { /i exch def
  362. PSL_fnt_tmp i get cvx exec
  363. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  364. } for
  365. } def
  366. /PSL_CT_calclinedist
  367. { /PSL_newx PSL_x 0 get def
  368. /PSL_newy PSL_y 0 get def
  369. /dist 0.0 def
  370. /PSL_dist PSL_n array def
  371. PSL_dist 0 0.0 put
  372. 1 1 PSL_n1
  373. { /i exch def
  374. /PSL_oldx PSL_newx def
  375. /PSL_oldy PSL_newy def
  376. /PSL_newx PSL_x i get def
  377. /PSL_newy PSL_y i get def
  378. /dx PSL_newx PSL_oldx sub def
  379. /dy PSL_newy PSL_oldy sub def
  380. /dist dist dx dx mul dy dy mul add sqrt add def
  381. PSL_dist i dist put
  382. } for
  383. } def
  384. /PSL_CT_excludelabels
  385. { /k 0 def
  386. /PSL_width PSL_m array def
  387. /PSL_angle PSL_m array def
  388. /PSL_node PSL_m array def
  389. /PSL_str PSL_m array def
  390. /PSL_fnt PSL_m array def
  391. /lastdist PSL_dist PSL_n1 get def
  392. 0 1 PSL_m1
  393. { /i exch def
  394. /dist PSL_dist PSL_node_tmp i get get def
  395. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  396. /L_dist dist halfwidth sub def
  397. /R_dist dist halfwidth add def
  398. L_dist 0 gt R_dist lastdist lt and
  399. {
  400. PSL_width k PSL_width_tmp i get put
  401. PSL_node k PSL_node_tmp i get put
  402. PSL_angle k PSL_angle_tmp i get put
  403. PSL_str k PSL_str_tmp i get put
  404. PSL_fnt k PSL_fnt_tmp i get put
  405. /k k 1 add def
  406. } if
  407. } for
  408. /PSL_m k def
  409. /PSL_m1 PSL_m 1 sub def
  410. } def
  411. /PSL_CT_addcutpoints
  412. { /k 0 def
  413. /PSL_nc PSL_m 2 mul 1 add def
  414. /PSL_cuts PSL_nc array def
  415. /PSL_nc1 PSL_nc 1 sub def
  416. 0 1 PSL_m1
  417. { /i exch def
  418. /dist PSL_dist PSL_node i get get def
  419. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  420. PSL_cuts k dist halfwidth sub put
  421. /k k 1 add def
  422. PSL_cuts k dist halfwidth add put
  423. /k k 1 add def
  424. } for
  425. PSL_cuts k 100000.0 put
  426. /PSL_nn PSL_n PSL_m 2 mul add def
  427. /PSL_xx PSL_nn array def
  428. /PSL_yy PSL_nn array def
  429. /PSL_kind PSL_nn array def
  430. /j 0 def
  431. /k 0 def
  432. /dist 0.0 def
  433. 0 1 PSL_n1
  434. { /i exch def
  435. /last_dist dist def
  436. /dist PSL_dist i get def
  437. k 1 PSL_nc1
  438. { /kk exch def
  439. /this_cut PSL_cuts kk get def
  440. dist this_cut gt
  441. { /ds dist last_dist sub def
  442. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  443. /i1 i 0 eq {0} {i 1 sub} ifelse def
  444. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  445. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  446. PSL_kind j 1 put
  447. /j j 1 add def
  448. /k k 1 add def
  449. } if
  450. } for
  451. dist PSL_cuts k get le
  452. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  453. PSL_kind j 0 put
  454. /j j 1 add def
  455. } if
  456. } for
  457. } def
  458. /PSL_CT_reversepath
  459. {PSL_xp j get PSL_xp 0 get lt
  460. {0 1 j 2 idiv
  461. { /left exch def
  462. /right j left sub def
  463. /tmp PSL_xp left get def
  464. PSL_xp left PSL_xp right get put
  465. PSL_xp right tmp put
  466. /tmp PSL_yp left get def
  467. PSL_yp left PSL_yp right get put
  468. PSL_yp right tmp put
  469. } for
  470. } if
  471. } def
  472. /PSL_CT_placelabel
  473. {
  474. /PSL_just PSL_label_justify k get def
  475. /PSL_height PSL_heights k get def
  476. /psl_label PSL_str k get def
  477. /psl_depth psl_label sd def
  478. PSL_usebox
  479. {PSL_CT_clippath
  480. PSL_fillbox
  481. {V PSL_setboxrgb fill U} if
  482. PSL_drawbox
  483. {V PSL_setboxpen S U} if N
  484. } if
  485. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  486. } def
  487. /PSL_CT_clippath
  488. {
  489. /H PSL_height 2 div PSL_gap_y add def
  490. /xoff j 1 add array def
  491. /yoff j 1 add array def
  492. /angle 0 def
  493. 0 1 j {
  494. /ii exch def
  495. /x PSL_xp ii get def
  496. /y PSL_yp ii get def
  497. ii 0 eq {
  498. /x1 PSL_xp 1 get def
  499. /y1 PSL_yp 1 get def
  500. /dx x1 x sub def
  501. /dy y1 y sub def
  502. }
  503. { /i1 ii 1 sub def
  504. /x1 PSL_xp i1 get def
  505. /y1 PSL_yp i1 get def
  506. /dx x x1 sub def
  507. /dy y y1 sub def
  508. } ifelse
  509. dx 0.0 eq dy 0.0 eq and not
  510. { /angle dy dx atan 90 add def} if
  511. /sina angle sin def
  512. /cosa angle cos def
  513. xoff ii H cosa mul put
  514. yoff ii H sina mul put
  515. } for
  516. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  517. 1 1 j {
  518. /ii exch def
  519. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  520. } for
  521. j -1 0 {
  522. /ii exch def
  523. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  524. } for P
  525. } def
  526. /PSL_CT_drawline
  527. {
  528. /str 20 string def
  529. PSL_strokeline
  530. {PSL_CT_placeline S} if
  531. /PSL_seg PSL_seg 1 add def
  532. /n 1 def
  533. } def
  534. /PSL_CT_placeline
  535. {PSL_xp 0 get PSL_yp 0 get M
  536. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  537. } def
  538. /PSL_draw_path_lines
  539. {
  540. /PSL_n_paths1 PSL_n_paths 1 sub def
  541. V
  542. /psl_start 0 def
  543. 0 1 PSL_n_paths1
  544. { /psl_k exch def
  545. /PSL_n PSL_path_n psl_k get def
  546. /PSL_n1 PSL_n 1 sub def
  547. PSL_path_pen psl_k get cvx exec
  548. N
  549. PSL_path_x psl_start get PSL_path_y psl_start get M
  550. 1 1 PSL_n1
  551. { /psl_i exch def
  552. /psl_kk psl_i psl_start add def
  553. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  554. } for
  555. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  556. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  557. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  558. S
  559. /psl_start psl_start PSL_n add def
  560. } for
  561. U
  562. } def
  563. /PSL_straight_path_labels
  564. {
  565. /psl_bits exch def
  566. /PSL_placetext psl_bits 2 and 2 eq def
  567. /PSL_rounded psl_bits 32 and 32 eq def
  568. /PSL_fillbox psl_bits 128 and 128 eq def
  569. /PSL_drawbox psl_bits 256 and 256 eq def
  570. /PSL_font_F psl_bits 1536 and 0 eq def
  571. /PSL_font_FO psl_bits 512 and 512 eq def
  572. /PSL_font_OF psl_bits 1024 and 1024 eq def
  573. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  574. /PSL_usebox PSL_fillbox PSL_drawbox or def
  575. 0 1 PSL_n_labels_minus_1
  576. { /psl_k exch def
  577. PSL_ST_prepare_text
  578. PSL_usebox
  579. { PSL_rounded
  580. {PSL_ST_textbox_round}
  581. {PSL_ST_textbox_rect}
  582. ifelse
  583. PSL_fillbox {V PSL_setboxrgb fill U} if
  584. PSL_drawbox {V PSL_setboxpen S U} if
  585. N
  586. } if
  587. PSL_font_F {
  588. PSL_placetext {PSL_ST_place_label} if
  589. } if
  590. PSL_font_FO {
  591. PSL_placetext {PSL_ST_place_label_FO} if
  592. } if
  593. PSL_font_OF {
  594. PSL_placetext {PSL_ST_place_label_OF} if
  595. } if
  596. } for
  597. } def
  598. /PSL_straight_path_clip
  599. {
  600. /psl_bits exch def
  601. /PSL_rounded psl_bits 32 and 32 eq def
  602. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  603. N clipsave clippath
  604. 0 1 PSL_n_labels_minus_1
  605. { /psl_k exch def
  606. PSL_ST_prepare_text
  607. PSL_rounded
  608. {PSL_ST_textbox_round}
  609. {PSL_ST_textbox_rect}
  610. ifelse
  611. } for
  612. PSL_eoclip N
  613. } def
  614. /PSL_ST_prepare_text
  615. {
  616. /psl_xp PSL_txt_x psl_k get def
  617. /psl_yp PSL_txt_y psl_k get def
  618. /psl_label PSL_label_str psl_k get def
  619. PSL_label_font psl_k get cvx exec
  620. /PSL_height PSL_heights psl_k get def
  621. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  622. /PSL_just PSL_label_justify psl_k get def
  623. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  624. /PSL_justy PSL_just 4 idiv 2 div neg def
  625. /psl_SW psl_label stringwidth pop def
  626. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  627. /psl_x0 psl_SW PSL_justx mul def
  628. /psl_y0 PSL_justy PSL_height mul def
  629. /psl_angle PSL_label_angle psl_k get def
  630. } def
  631. /PSL_ST_textbox_rect
  632. {
  633. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  634. PSL_gap_x neg PSL_gap_y neg M
  635. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  636. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  637. } def
  638. /PSL_ST_textbox_round
  639. {
  640. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  641. /psl_xd PSL_gap_x psl_BoxR sub def
  642. /psl_yd PSL_gap_y psl_BoxR sub def
  643. /psl_xL PSL_gap_x neg def
  644. /psl_yB PSL_gap_y neg def
  645. /psl_yT psl_boxH psl_yB add def
  646. /psl_H2 PSL_height psl_yd 2 mul add def
  647. /psl_W2 psl_SW psl_xd 2 mul add def
  648. /psl_xR psl_xL psl_boxW add def
  649. /psl_x0 psl_SW PSL_justx mul def
  650. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  651. psl_xL psl_yd M
  652. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  653. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  654. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  655. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  656. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  657. } def
  658. /PSL_ST_place_label
  659. {
  660. V psl_xp psl_yp T psl_angle R
  661. psl_SW PSL_justx mul psl_y0 M
  662. psl_label dup sd neg 0 exch G show
  663. U
  664. } def
  665. /PSL_ST_place_label_FO
  666. {
  667. V psl_xp psl_yp T psl_angle R
  668. psl_SW PSL_justx mul psl_y0 M
  669. psl_label dup sd neg 0 exch G false charpath V fs U S N
  670. U
  671. } def
  672. /PSL_ST_place_label_OF
  673. {
  674. V psl_xp psl_yp T psl_angle R
  675. psl_SW PSL_justx mul psl_y0 M
  676. psl_label dup sd neg 0 exch G false charpath V S U fs N
  677. U
  678. } def
  679. /PSL_nclip 0 def
  680. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  681. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  682. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  683. %%EndProlog
  684. %%BeginSetup
  685. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  686. PSLevel 1 gt { << /WhiteIsOpaque true >> setpagedevice } if
  687. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  688. %%EndSetup
  689. %%Page: 1 1
  690. %%BeginPageSetup
  691. V 0.06 0.06 scale
  692. %%EndPageSetup
  693. /PSL_page_xsize 10200 def
  694. /PSL_page_ysize 13200 def
  695. /PSL_plot_completion {} def
  696. /PSL_movie_label_completion {} def
  697. /PSL_movie_prog_indicator_completion {} def
  698. %PSL_End_Header
  699. gsave
  700. 0 A
  701. FQ
  702. O0
  703. 1200 1200 TM
  704. % PostScript produced by:
  705. %@GMT: gmt psxy -R270/20/305/25r -JOc280/25.5/22/69/4i -P -B10g5 -BWSne -SJ tt.rects.d -Gred -W0.25p,green -K
  706. %@PROJ: omerc 269.90000000 305.10000000 9.38892506 35.70715678 -768713.992 2555941.086 -971349.472 1012568.723 +unavailable +a=6371007.181 +b=6371007.181 +units=m +no_defs
  707. %GMTBoundingBox: 72 72 288 171.85796027
  708. %%BeginObject PSL_Layer_1
  709. 0 setlinecap
  710. 0 setlinejoin
  711. 3.32550952342 setmiterlimit
  712. 4 W
  713. 0 A
  714. 823 -1 M
  715. 0 1 D
  716. -71 192 D
  717. -30 79 D
  718. -181 479 D
  719. -193 502 D
  720. -103 263 D
  721. -112 284 D
  722. -133 332 D
  723. -2 5 D S
  724. 1658 -1 M
  725. 0 1 D
  726. -218 566 D
  727. -231 588 D
  728. -108 270 D
  729. -136 337 D
  730. -34 82 D
  731. -11 28 D
  732. -76 184 D
  733. -11 28 D
  734. -109 260 D
  735. -15 38 D
  736. -169 396 D
  737. -37 87 D
  738. -1 1 D S
  739. 2503 -1 M
  740. 0 1 D
  741. -85 217 D
  742. -100 255 D
  743. -172 433 D
  744. -104 259 D
  745. -132 325 D
  746. -101 245 D
  747. -103 247 D
  748. -66 157 D
  749. -31 74 D
  750. -135 317 D
  751. -146 335 D
  752. -1 1 D S
  753. 3356 -1 M
  754. 0 1 D
  755. -96 245 D
  756. -136 342 D
  757. -60 151 D
  758. -57 141 D
  759. -112 277 D
  760. -40 99 D
  761. -130 315 D
  762. -91 218 D
  763. -11 28 D
  764. -62 146 D
  765. -11 28 D
  766. -78 184 D
  767. -136 317 D
  768. -29 65 D
  769. -57 132 D
  770. -21 47 D
  771. -57 129 D
  772. -1 1 D S
  773. 4217 -1 M
  774. -1 1 D
  775. -101 258 D
  776. -150 378 D
  777. -46 115 D
  778. -57 142 D
  779. -189 466 D
  780. -161 389 D
  781. -96 229 D
  782. -90 212 D
  783. -119 279 D
  784. -25 56 D
  785. -65 151 D
  786. -25 56 D
  787. -59 133 D
  788. 0 1 D S
  789. 4802 714 M
  790. -2 5 D
  791. -86 216 D
  792. -155 386 D
  793. -85 207 D
  794. -18 46 D
  795. -79 191 D
  796. -53 128 D
  797. -112 268 D
  798. -67 157 D
  799. -15 38 D
  800. -80 187 D
  801. -25 56 D
  802. -32 76 D
  803. -21 47 D
  804. -62 142 D
  805. 0 1 D S
  806. 4802 2860 M
  807. -2 4 D
  808. 0 1 D S
  809. 4565 -2 M
  810. 5 2 D
  811. 145 57 D
  812. 85 33 D
  813. 1 0 D S
  814. 2319 -2 M
  815. 5 2 D
  816. 268 104 D
  817. 155 61 D
  818. 372 146 D
  819. 54 22 D
  820. 122 48 D
  821. 108 43 D
  822. 88 35 D
  823. 68 27 D
  824. 68 27 D
  825. 163 65 D
  826. 143 57 D
  827. 48 19 D
  828. 103 41 D
  829. 335 134 D
  830. 130 52 D
  831. 251 100 D
  832. 1 0 D S
  833. -1 0 M
  834. 1 0 D
  835. 270 98 D
  836. 331 122 D
  837. 437 165 D
  838. 265 102 D
  839. 246 95 D
  840. 219 86 D
  841. 419 166 D
  842. 468 188 D
  843. 289 117 D
  844. 458 187 D
  845. 678 279 D
  846. 458 189 D
  847. 131 54 D
  848. 131 54 D
  849. 1 0 D S
  850. -1 881 M
  851. 1 0 D
  852. 295 111 D
  853. 436 169 D
  854. 163 64 D
  855. 379 151 D
  856. 445 181 D
  857. 86 35 D
  858. 66 27 D
  859. 92 38 D
  860. 99 41 D
  861. 231 96 D
  862. 119 50 D
  863. 146 61 D
  864. 279 118 D
  865. 367 156 D
  866. 202 86 D
  867. 236 101 D
  868. 135 58 D
  869. 156 67 D
  870. 170 73 D
  871. 238 103 D
  872. 138 59 D
  873. 322 138 D
  874. 1 1 D S
  875. -1 1791 M
  876. 1 1 D
  877. 152 60 D
  878. 115 46 D
  879. 134 54 D
  880. 179 73 D
  881. 192 79 D
  882. 116 48 D
  883. 269 113 D
  884. 168 71 D
  885. 265 113 D
  886. 266 115 D
  887. 84 37 D
  888. 33 14 D
  889. 91 40 D
  890. 33 14 D
  891. 104 46 D
  892. 33 14 D
  893. 78 35 D
  894. 40 17 D
  895. 78 35 D
  896. 40 17 D
  897. 70 31 D
  898. 5 2 D S
  899. -1 2745 M
  900. 1 0 D
  901. 224 95 D
  902. 57 24 D
  903. 4 2 D S
  904. 8 W
  905. N 1 0 M 30 -83 D S
  906. N 1658 0 M 32 -83 D S
  907. N 503 2864 M -36 84 D S
  908. N 3356 0 M 33 -83 D S
  909. N 2172 2864 M -37 84 D S
  910. N 3910 2864 M -37 84 D S
  911. N 4800 90 M 83 32 D S
  912. N 0 0 M -83 -30 D S
  913. N 4800 1902 M 83 34 D S
  914. N 0 1792 M -83 -33 D S
  915. 31 -167 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  916. 200 F0
  917. (”90�) tc Z
  918. 1690 -167 M (”80�) tc Z
  919. 3389 -167 M (”70�) tc Z
  920. -167 -30 M (20�) mr Z
  921. -167 1759 M (30�) mr Z
  922. clipsave
  923. 0 0 M
  924. 4800 0 D
  925. 0 2864 D
  926. -4800 0 D
  927. P
  928. PSL_clip N
  929. V
  930. 4 W
  931. 0 1 0 C
  932. {1 0 0 C} FS
  933. O1
  934. 299 750 21.7399192622 3961 646 Sj
  935. 303 762 112.116515796 2908 1124 Sj
  936. 459 769 41.7601567945 1141 1323 Sj
  937. U
  938. PSL_cliprestore
  939. 25 W
  940. 0 A
  941. 2 setlinecap
  942. N 0 0 M 0 2864 D S
  943. N 4800 0 M 0 2864 D S
  944. N 0 0 M 4800 0 D S
  945. N 0 2864 M 4800 0 D S
  946. 0 setlinecap
  947. %%EndObject
  948. 0 A
  949. FQ
  950. O0
  951. 0 0 TM
  952. % PostScript produced by:
  953. %@GMT: gmt psxy -R270/20/305/25r -JOc280/25.5/22/69/4i -O -K -Sc0.05i tt.rects.d -G0
  954. %@PROJ: omerc 269.90000000 305.10000000 9.38892506 35.70715678 -768713.992 2555941.086 -971349.472 1012568.723 +unavailable +a=6371007.181 +b=6371007.181 +units=m +no_defs
  955. %%BeginObject PSL_Layer_2
  956. 0 setlinecap
  957. 0 setlinejoin
  958. 3.32550952342 setmiterlimit
  959. clipsave
  960. 0 0 M
  961. 4800 0 D
  962. 0 2864 D
  963. -4800 0 D
  964. P
  965. PSL_clip N
  966. V
  967. 4 W
  968. {0 A} FS
  969. 30 3961 646 Sc
  970. 30 2908 1124 Sc
  971. 30 1141 1323 Sc
  972. U
  973. PSL_cliprestore
  974. %%EndObject
  975. 0 A
  976. FQ
  977. O0
  978. 0 3600 TM
  979. % PostScript produced by:
  980. %@GMT: gmt psxy -R270/20/305/25r -JOc280/25.5/22/69/4i -O -K -B10g5 -BWSne -Sji tt.rects.d -Gblue -W0.25p,green -Y3i
  981. %@PROJ: omerc 269.90000000 305.10000000 9.38892506 35.70715678 -768713.992 2555941.086 -971349.472 1012568.723 +unavailable +a=6371007.181 +b=6371007.181 +units=m +no_defs
  982. %%BeginObject PSL_Layer_3
  983. 0 setlinecap
  984. 0 setlinejoin
  985. 3.32550952342 setmiterlimit
  986. 4 W
  987. 0 A
  988. 823 -1 M
  989. 0 1 D
  990. -71 192 D
  991. -30 79 D
  992. -181 479 D
  993. -193 502 D
  994. -103 263 D
  995. -112 284 D
  996. -133 332 D
  997. -2 5 D S
  998. 1658 -1 M
  999. 0 1 D
  1000. -218 566 D
  1001. -231 588 D
  1002. -108 270 D
  1003. -136 337 D
  1004. -34 82 D
  1005. -11 28 D
  1006. -76 184 D
  1007. -11 28 D
  1008. -109 260 D
  1009. -15 38 D
  1010. -169 396 D
  1011. -37 87 D
  1012. -1 1 D S
  1013. 2503 -1 M
  1014. 0 1 D
  1015. -85 217 D
  1016. -100 255 D
  1017. -172 433 D
  1018. -104 259 D
  1019. -132 325 D
  1020. -101 245 D
  1021. -103 247 D
  1022. -66 157 D
  1023. -31 74 D
  1024. -135 317 D
  1025. -146 335 D
  1026. -1 1 D S
  1027. 3356 -1 M
  1028. 0 1 D
  1029. -96 245 D
  1030. -136 342 D
  1031. -60 151 D
  1032. -57 141 D
  1033. -112 277 D
  1034. -40 99 D
  1035. -130 315 D
  1036. -91 218 D
  1037. -11 28 D
  1038. -62 146 D
  1039. -11 28 D
  1040. -78 184 D
  1041. -136 317 D
  1042. -29 65 D
  1043. -57 132 D
  1044. -21 47 D
  1045. -57 129 D
  1046. -1 1 D S
  1047. 4217 -1 M
  1048. -1 1 D
  1049. -101 258 D
  1050. -150 378 D
  1051. -46 115 D
  1052. -57 142 D
  1053. -189 466 D
  1054. -161 389 D
  1055. -96 229 D
  1056. -90 212 D
  1057. -119 279 D
  1058. -25 56 D
  1059. -65 151 D
  1060. -25 56 D
  1061. -59 133 D
  1062. 0 1 D S
  1063. 4802 714 M
  1064. -2 5 D
  1065. -86 216 D
  1066. -155 386 D
  1067. -85 207 D
  1068. -18 46 D
  1069. -79 191 D
  1070. -53 128 D
  1071. -112 268 D
  1072. -67 157 D
  1073. -15 38 D
  1074. -80 187 D
  1075. -25 56 D
  1076. -32 76 D
  1077. -21 47 D
  1078. -62 142 D
  1079. 0 1 D S
  1080. 4802 2860 M
  1081. -2 4 D
  1082. 0 1 D S
  1083. 4565 -2 M
  1084. 5 2 D
  1085. 145 57 D
  1086. 85 33 D
  1087. 1 0 D S
  1088. 2319 -2 M
  1089. 5 2 D
  1090. 268 104 D
  1091. 155 61 D
  1092. 372 146 D
  1093. 54 22 D
  1094. 122 48 D
  1095. 108 43 D
  1096. 88 35 D
  1097. 68 27 D
  1098. 68 27 D
  1099. 163 65 D
  1100. 143 57 D
  1101. 48 19 D
  1102. 103 41 D
  1103. 335 134 D
  1104. 130 52 D
  1105. 251 100 D
  1106. 1 0 D S
  1107. -1 0 M
  1108. 1 0 D
  1109. 270 98 D
  1110. 331 122 D
  1111. 437 165 D
  1112. 265 102 D
  1113. 246 95 D
  1114. 219 86 D
  1115. 419 166 D
  1116. 468 188 D
  1117. 289 117 D
  1118. 458 187 D
  1119. 678 279 D
  1120. 458 189 D
  1121. 131 54 D
  1122. 131 54 D
  1123. 1 0 D S
  1124. -1 881 M
  1125. 1 0 D
  1126. 295 111 D
  1127. 436 169 D
  1128. 163 64 D
  1129. 379 151 D
  1130. 445 181 D
  1131. 86 35 D
  1132. 66 27 D
  1133. 92 38 D
  1134. 99 41 D
  1135. 231 96 D
  1136. 119 50 D
  1137. 146 61 D
  1138. 279 118 D
  1139. 367 156 D
  1140. 202 86 D
  1141. 236 101 D
  1142. 135 58 D
  1143. 156 67 D
  1144. 170 73 D
  1145. 238 103 D
  1146. 138 59 D
  1147. 322 138 D
  1148. 1 1 D S
  1149. -1 1791 M
  1150. 1 1 D
  1151. 152 60 D
  1152. 115 46 D
  1153. 134 54 D
  1154. 179 73 D
  1155. 192 79 D
  1156. 116 48 D
  1157. 269 113 D
  1158. 168 71 D
  1159. 265 113 D
  1160. 266 115 D
  1161. 84 37 D
  1162. 33 14 D
  1163. 91 40 D
  1164. 33 14 D
  1165. 104 46 D
  1166. 33 14 D
  1167. 78 35 D
  1168. 40 17 D
  1169. 78 35 D
  1170. 40 17 D
  1171. 70 31 D
  1172. 5 2 D S
  1173. -1 2745 M
  1174. 1 0 D
  1175. 224 95 D
  1176. 57 24 D
  1177. 4 2 D S
  1178. 8 W
  1179. N 1 0 M 30 -83 D S
  1180. N 1658 0 M 32 -83 D S
  1181. N 503 2864 M -36 84 D S
  1182. N 3356 0 M 33 -83 D S
  1183. N 2172 2864 M -37 84 D S
  1184. N 3910 2864 M -37 84 D S
  1185. N 4800 90 M 83 32 D S
  1186. N 0 0 M -83 -30 D S
  1187. N 4800 1902 M 83 34 D S
  1188. N 0 1792 M -83 -33 D S
  1189. 31 -167 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1190. 200 F0
  1191. (”90�) tc Z
  1192. 1690 -167 M (”80�) tc Z
  1193. 3389 -167 M (”70�) tc Z
  1194. -167 -30 M (20�) mr Z
  1195. -167 1759 M (30�) mr Z
  1196. clipsave
  1197. 0 0 M
  1198. 4800 0 D
  1199. 0 2864 D
  1200. -4800 0 D
  1201. P
  1202. PSL_clip N
  1203. V
  1204. 4 W
  1205. 0 1 0 C
  1206. {0 0 1 C} FS
  1207. O1
  1208. 600 1200 0 2479 60 Sj
  1209. 600 1200 30 2908 1124 Sj
  1210. 240 600 90 1141 1323 Sj
  1211. U
  1212. PSL_cliprestore
  1213. 25 W
  1214. 0 A
  1215. 2 setlinecap
  1216. N 0 0 M 0 2864 D S
  1217. N 4800 0 M 0 2864 D S
  1218. N 0 0 M 4800 0 D S
  1219. N 0 2864 M 4800 0 D S
  1220. 0 setlinecap
  1221. %%EndObject
  1222. 0 A
  1223. FQ
  1224. O0
  1225. 0 0 TM
  1226. % PostScript produced by:
  1227. %@GMT: gmt psxy -R270/20/305/25r -JOc280/25.5/22/69/4i -O -K -Sc0.05i tt.rects.d -G0
  1228. %@PROJ: omerc 269.90000000 305.10000000 9.38892506 35.70715678 -768713.992 2555941.086 -971349.472 1012568.723 +unavailable +a=6371007.181 +b=6371007.181 +units=m +no_defs
  1229. %%BeginObject PSL_Layer_4
  1230. 0 setlinecap
  1231. 0 setlinejoin
  1232. 3.32550952342 setmiterlimit
  1233. clipsave
  1234. 0 0 M
  1235. 4800 0 D
  1236. 0 2864 D
  1237. -4800 0 D
  1238. P
  1239. PSL_clip N
  1240. V
  1241. 4 W
  1242. {0 A} FS
  1243. 30 2479 60 Sc
  1244. 30 2908 1124 Sc
  1245. 30 1141 1323 Sc
  1246. U
  1247. PSL_cliprestore
  1248. %%EndObject
  1249. 0 A
  1250. FQ
  1251. O0
  1252. 0 3600 TM
  1253. % PostScript produced by:
  1254. %@GMT: gmt psxy -R-10/25/-5/15 -Jx0.15i -O -K -B10g5 -BWSne -SJ tt.rects.d -Gbrown -W0.25p,green -Y3i
  1255. %@PROJ: xy -10.00000000 25.00000000 -5.00000000 15.00000000 -10.000 25.000 -5.000 15.000 +xy
  1256. %%BeginObject PSL_Layer_5
  1257. 0 setlinecap
  1258. 0 setlinejoin
  1259. 3.32550952342 setmiterlimit
  1260. 4 W
  1261. 0 A
  1262. 0 0 M
  1263. 0 3600 D
  1264. S
  1265. 900 0 M
  1266. 0 3600 D
  1267. S
  1268. 1800 0 M
  1269. 0 3600 D
  1270. S
  1271. 2700 0 M
  1272. 0 3600 D
  1273. S
  1274. 3600 0 M
  1275. 0 3600 D
  1276. S
  1277. 4500 0 M
  1278. 0 3600 D
  1279. S
  1280. 5400 0 M
  1281. 0 3600 D
  1282. S
  1283. 6300 0 M
  1284. 0 3600 D
  1285. S
  1286. 0 0 M
  1287. 6300 0 D
  1288. S
  1289. 0 900 M
  1290. 6300 0 D
  1291. S
  1292. 0 1800 M
  1293. 6300 0 D
  1294. S
  1295. 0 2700 M
  1296. 6300 0 D
  1297. S
  1298. 0 3600 M
  1299. 6300 0 D
  1300. S
  1301. clipsave
  1302. 0 0 M
  1303. 6300 0 D
  1304. 0 3600 D
  1305. -6300 0 D
  1306. P
  1307. PSL_clip N
  1308. V
  1309. 0 1 0 C
  1310. {0.647 0.165 0.165 C} FS
  1311. O1
  1312. 360 900 60 1800 900 Sj
  1313. 180 1260 20 3600 2700 Sj
  1314. 540 1080 0 5400 900 Sj
  1315. U
  1316. PSL_cliprestore
  1317. 25 W
  1318. 0 A
  1319. /PSL_slant_y 0 def /PSL_slant_x 0 def
  1320. 2 setlinecap
  1321. N 0 3600 M 0 -3600 D S
  1322. /PSL_A0_y 83 def
  1323. /PSL_A1_y 0 def
  1324. 8 W
  1325. N 0 900 M -83 0 D S
  1326. N 0 2700 M -83 0 D S
  1327. /MM {neg exch M} def
  1328. /PSL_AH0 0
  1329. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1330. 200 F0
  1331. (0) sw mx
  1332. (10) sw mx
  1333. def
  1334. /PSL_A0_y PSL_A0_y 83 add def
  1335. 900 PSL_A0_y MM
  1336. (0) mr Z
  1337. 2700 PSL_A0_y MM
  1338. (10) mr Z
  1339. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1340. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1341. 6300 0 T
  1342. 25 W
  1343. N 0 3600 M 0 -3600 D S
  1344. /PSL_A0_y 83 def
  1345. /PSL_A1_y 0 def
  1346. 8 W
  1347. N 0 900 M 83 0 D S
  1348. N 0 2700 M 83 0 D S
  1349. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1350. -6300 0 T
  1351. 25 W
  1352. N 0 0 M 6300 0 D S
  1353. /PSL_A0_y 83 def
  1354. /PSL_A1_y 0 def
  1355. 8 W
  1356. N 0 0 M 0 -83 D S
  1357. N 1800 0 M 0 -83 D S
  1358. N 3600 0 M 0 -83 D S
  1359. N 5400 0 M 0 -83 D S
  1360. /MM {neg M} def
  1361. /PSL_AH0 0
  1362. (”10) sh mx
  1363. (0) sh mx
  1364. (10) sh mx
  1365. (20) sh mx
  1366. def
  1367. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1368. 0 PSL_A0_y MM
  1369. (”10) bc Z
  1370. 1800 PSL_A0_y MM
  1371. (0) bc Z
  1372. 3600 PSL_A0_y MM
  1373. (10) bc Z
  1374. 5400 PSL_A0_y MM
  1375. (20) bc Z
  1376. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1377. 0 3600 T
  1378. 25 W
  1379. N 0 0 M 6300 0 D S
  1380. /PSL_A0_y 83 def
  1381. /PSL_A1_y 0 def
  1382. 8 W
  1383. N 0 0 M 0 83 D S
  1384. N 1800 0 M 0 83 D S
  1385. N 3600 0 M 0 83 D S
  1386. N 5400 0 M 0 83 D S
  1387. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1388. 0 -3600 T
  1389. 0 setlinecap
  1390. %%EndObject
  1391. 0 A
  1392. FQ
  1393. O0
  1394. 0 0 TM
  1395. % PostScript produced by:
  1396. %@GMT: gmt psxy -R-10/25/-5/15 -Jx0.15i -O -Sc0.05i tt.rects.d -G0
  1397. %@PROJ: xy -10.00000000 25.00000000 -5.00000000 15.00000000 -10.000 25.000 -5.000 15.000 +xy
  1398. %%BeginObject PSL_Layer_6
  1399. 0 setlinecap
  1400. 0 setlinejoin
  1401. 3.32550952342 setmiterlimit
  1402. clipsave
  1403. 0 0 M
  1404. 6300 0 D
  1405. 0 3600 D
  1406. -6300 0 D
  1407. P
  1408. PSL_clip N
  1409. V
  1410. 4 W
  1411. {0 A} FS
  1412. 30 1800 900 Sc
  1413. 30 3600 2700 Sc
  1414. 30 5400 900 Sc
  1415. U
  1416. PSL_cliprestore
  1417. %%EndObject
  1418. grestore
  1419. PSL_movie_label_completion /PSL_movie_label_completion {} def
  1420. PSL_movie_prog_indicator_completion /PSL_movie_prog_indicator_completion {} def
  1421. %PSL_Begin_Trailer
  1422. %%PageTrailer
  1423. U
  1424. showpage
  1425. %%Trailer
  1426. end
  1427. %%EOF
Tip!

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

Comments

Loading...