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

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

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

Comments

Loading...