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

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

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

Comments

Loading...