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

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

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

Comments

Loading...