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

grdimage.ps 82 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612.0000 792.0000
  4. %%Title: GMT v6.0.0_1ded948 [64-bit] Document from grdimage
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Thu Dec 6 10:51:02 2018
  9. %%LanguageLevel: 2
  10. %%DocumentData: Clean7Bit
  11. %%Orientation: Portrait
  12. %%Pages: 1
  13. %%EndComments
  14. %%BeginProlog
  15. 250 dict begin
  16. /! {bind def} bind def
  17. /# {load def}!
  18. /A /setgray #
  19. /B /setdash #
  20. /C /setrgbcolor #
  21. /D /rlineto #
  22. /E {dup stringwidth pop}!
  23. /F /fill #
  24. /G /rmoveto #
  25. /H /sethsbcolor #
  26. /I /setpattern #
  27. /K /setcmykcolor #
  28. /L /lineto #
  29. /M /moveto #
  30. /N /newpath #
  31. /P /closepath #
  32. /R /rotate #
  33. /S /stroke #
  34. /T /translate #
  35. /U /grestore #
  36. /V /gsave #
  37. /W /setlinewidth #
  38. /Y {findfont exch scalefont setfont}!
  39. /Z /show #
  40. /FP {true charpath flattenpath}!
  41. /MU {matrix setmatrix}!
  42. /MS {/SMat matrix currentmatrix def}!
  43. /MR {SMat setmatrix}!
  44. /edef {exch def}!
  45. /FS {/fc edef /fs {V fc F U} def}!
  46. /FQ {/fs {} def}!
  47. /O0 {/os {N} def}!
  48. /O1 {/os {P S} def}!
  49. /FO {fs os}!
  50. /Sa {M MS dup 0 exch G 0.726542528 mul -72 R dup 0 D 4 {72 R dup 0 D -144 R dup 0 D} repeat pop MR FO}!
  51. /Sb {M dup 0 D exch 0 exch D neg 0 D FO}!
  52. /SB {MS T /BoxR edef /BoxW edef /BoxH edef BoxR 0 M
  53. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  54. /Sc {N 3 -1 roll 0 360 arc FO}!
  55. /Sd {M 4 {dup} repeat 0 G neg dup dup D exch D D FO}!
  56. /Se {N MS T R scale 0 0 1 0 360 arc MR FO}!
  57. /Sg {M MS 22.5 R dup 0 exch G -22.5 R 0.765366865 mul dup 0 D 6 {-45 R dup 0 D} repeat pop MR FO}!
  58. /Sh {M MS dup 0 G -120 R dup 0 D 4 {-60 R dup 0 D} repeat pop MR FO}!
  59. /Si {M MS dup neg 0 exch G 60 R 1.732050808 mul dup 0 D 120 R 0 D MR FO}!
  60. /Sj {M MS R dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D MR FO}!
  61. /Sn {M MS dup 0 exch G -36 R 1.175570505 mul dup 0 D 3 {-72 R dup 0 D} repeat pop MR FO}!
  62. /Sp {N 3 -1 roll 0 360 arc fs N}!
  63. /SP {M {D} repeat FO}!
  64. /Sr {M dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D FO}!
  65. /SR {MS T /BoxR edef /BoxW edef /BoxH edef BoxR BoxW -2 div BoxH -2 div T BoxR 0 M
  66. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  67. /Ss {M 1.414213562 mul dup dup dup -2 div dup G 0 D 0 exch D neg 0 D FO}!
  68. /St {M MS dup 0 exch G -60 R 1.732050808 mul dup 0 D -120 R 0 D MR FO}!
  69. /SV {0 exch M 0 D D D D D 0 D FO}!
  70. /Sv {0 0 M D D 0 D D D D D 0 D D FO}!
  71. /Sw {2 copy M 5 2 roll arc FO}!
  72. /Sx {M 1.414213562 mul 5 {dup} repeat -2 div dup G D neg 0 G neg D S}!
  73. /Sy {M dup 0 exch G dup -2 mul dup 0 exch D S}!
  74. /S+ {M dup 0 G dup -2 mul dup 0 D exch dup G 0 exch D S}!
  75. /S- {M dup 0 G dup -2 mul dup 0 D S}!
  76. /sw {stringwidth pop}!
  77. /sh {V MU 0 0 M FP pathbbox N 4 1 roll pop pop pop U}!
  78. /sd {V MU 0 0 M FP pathbbox N pop pop exch pop U}!
  79. /sH {V MU 0 0 M FP pathbbox N exch pop exch sub exch pop U}!
  80. /sb {E exch sh}!
  81. /bl {}!
  82. /bc {E -2 div 0 G}!
  83. /br {E neg 0 G}!
  84. /ml {dup 0 exch sh -2 div G}!
  85. /mc {dup E -2 div exch sh -2 div G}!
  86. /mr {dup E neg exch sh -2 div G}!
  87. /tl {dup 0 exch sh neg G}!
  88. /tc {dup E -2 div exch sh neg G}!
  89. /tr {dup E neg exch sh neg G}!
  90. /mx {2 copy lt {exch} if pop}!
  91. /PSL_xorig 0 def /PSL_yorig 0 def
  92. /TM {2 copy T PSL_yorig add /PSL_yorig edef PSL_xorig add /PSL_xorig edef}!
  93. /PSL_reencode {findfont dup length dict begin
  94. {1 index /FID ne {def}{pop pop} ifelse} forall
  95. exch /Encoding edef currentdict end definefont pop
  96. }!
  97. /PSL_eps_begin {
  98. /PSL_eps_state save def
  99. /PSL_dict_count countdictstack def
  100. /PSL_op_count count 1 sub def
  101. userdict begin
  102. /showpage {} def
  103. 0 setgray 0 setlinecap 1 setlinewidth
  104. 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath
  105. /languagelevel where
  106. {pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if
  107. }!
  108. /PSL_eps_end {
  109. count PSL_op_count sub {pop} repeat
  110. countdictstack PSL_dict_count sub {end} repeat
  111. PSL_eps_state restore
  112. }!
  113. /PSL_transp {
  114. /.setopacityalpha where {pop .setblendmode .setopacityalpha}{
  115. /pdfmark where {pop [ /BM exch /CA exch dup /ca exch /SetTransparency pdfmark}
  116. {pop pop} ifelse} ifelse
  117. }!
  118. /Standard+_Encoding [
  119. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  120. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  121. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  122. /.notdef /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
  123. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  124. /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
  125. /zero /one /two /three /four /five /six /seven
  126. /eight /nine /colon /semicolon /less /equal /greater /question
  127. /at /A /B /C /D /E /F /G
  128. /H /I /J /K /L /M /N /O
  129. /P /Q /R /S /T /U /V /W
  130. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  131. /quoteleft /a /b /c /d /e /f /g
  132. /h /i /j /k /l /m /n /o
  133. /p /q /r /s /t /u /v /w
  134. /x /y /z /braceleft /bar /braceright /asciitilde /florin
  135. /Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
  136. /Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
  137. /divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
  138. /onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
  139. /.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
  140. /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
  141. /Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
  142. /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
  143. /Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
  144. /dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
  145. /emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
  146. /Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
  147. /acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
  148. /egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
  149. /oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
  150. /udieresis /oslash /oe /germandbls /ugrave /Aring /aring /ydieresis
  151. ] def
  152. /PSL_font_encode 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 array astore def
  153. /F0 {/Helvetica Y}!
  154. /F1 {/Helvetica-Bold Y}!
  155. /F2 {/Helvetica-Oblique Y}!
  156. /F3 {/Helvetica-BoldOblique Y}!
  157. /F4 {/Times-Roman Y}!
  158. /F5 {/Times-Bold Y}!
  159. /F6 {/Times-Italic Y}!
  160. /F7 {/Times-BoldItalic Y}!
  161. /F8 {/Courier Y}!
  162. /F9 {/Courier-Bold Y}!
  163. /F10 {/Courier-Oblique Y}!
  164. /F11 {/Courier-BoldOblique Y}!
  165. /F12 {/Symbol Y}!
  166. /F13 {/AvantGarde-Book Y}!
  167. /F14 {/AvantGarde-BookOblique Y}!
  168. /F15 {/AvantGarde-Demi Y}!
  169. /F16 {/AvantGarde-DemiOblique Y}!
  170. /F17 {/Bookman-Demi Y}!
  171. /F18 {/Bookman-DemiItalic Y}!
  172. /F19 {/Bookman-Light Y}!
  173. /F20 {/Bookman-LightItalic Y}!
  174. /F21 {/Helvetica-Narrow Y}!
  175. /F22 {/Helvetica-Narrow-Bold Y}!
  176. /F23 {/Helvetica-Narrow-Oblique Y}!
  177. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  178. /F25 {/NewCenturySchlbk-Roman Y}!
  179. /F26 {/NewCenturySchlbk-Italic Y}!
  180. /F27 {/NewCenturySchlbk-Bold Y}!
  181. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  182. /F29 {/Palatino-Roman Y}!
  183. /F30 {/Palatino-Italic Y}!
  184. /F31 {/Palatino-Bold Y}!
  185. /F32 {/Palatino-BoldItalic Y}!
  186. /F33 {/ZapfChancery-MediumItalic Y}!
  187. /F34 {/ZapfDingbats Y}!
  188. /F35 {/Ryumin-Light-EUC-H Y}!
  189. /F36 {/Ryumin-Light-EUC-V Y}!
  190. /F37 {/GothicBBB-Medium-EUC-H Y}!
  191. /F38 {/GothicBBB-Medium-EUC-V Y}!
  192. /PSL_pathtextdict 26 dict def
  193. /PSL_pathtext
  194. {PSL_pathtextdict begin
  195. /ydepth exch def
  196. /textheight exch def
  197. /just exch def
  198. /offset exch def
  199. /str exch def
  200. /pathdist 0 def
  201. /setdist offset def
  202. /charcount 0 def
  203. /justy just 4 idiv textheight mul 2 div neg ydepth sub def
  204. V flattenpath
  205. {movetoproc} {linetoproc}
  206. {curvetoproc} {closepathproc}
  207. pathforall
  208. U N
  209. end
  210. } def
  211. PSL_pathtextdict begin
  212. /movetoproc
  213. { /newy exch def /newx exch def
  214. /firstx newx def /firsty newy def
  215. /ovr 0 def
  216. newx newy transform
  217. /cpy exch def /cpx exch def
  218. } def
  219. /linetoproc
  220. { /oldx newx def /oldy newy def
  221. /newy exch def /newx exch def
  222. /dx newx oldx sub def
  223. /dy newy oldy sub def
  224. /dist dx dup mul dy dup mul add sqrt def
  225. dist 0 ne
  226. { /dsx dx dist div ovr mul def
  227. /dsy dy dist div ovr mul def
  228. oldx dsx add oldy dsy add transform
  229. /cpy exch def /cpx exch def
  230. /pathdist pathdist dist add def
  231. {setdist pathdist le
  232. {charcount str length lt
  233. {setchar} {exit} ifelse}
  234. { /ovr setdist pathdist sub def
  235. exit}
  236. ifelse
  237. } loop
  238. } if
  239. } def
  240. /curvetoproc
  241. { (ERROR: No curveto's after flattenpath!)
  242. print
  243. } def
  244. /closepathproc
  245. {firstx firsty linetoproc
  246. firstx firsty movetoproc
  247. } def
  248. /setchar
  249. { /char str charcount 1 getinterval def
  250. /charcount charcount 1 add def
  251. /charwidth char stringwidth pop def
  252. V cpx cpy itransform T
  253. dy dx atan R
  254. 0 justy M
  255. char show
  256. 0 justy neg G
  257. currentpoint transform
  258. /cpy exch def /cpx exch def
  259. U /setdist setdist charwidth add def
  260. } def
  261. end
  262. /PSL_set_label_heights
  263. {
  264. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  265. /PSL_heights PSL_n_labels array def
  266. 0 1 PSL_n_labels_minus_1
  267. { /psl_k exch def
  268. /psl_label PSL_label_str psl_k get def
  269. PSL_label_font psl_k get cvx exec
  270. psl_label sH /PSL_height edef
  271. PSL_heights psl_k PSL_height put
  272. } for
  273. } def
  274. /PSL_curved_path_labels
  275. { /psl_bits exch def
  276. /PSL_placetext psl_bits 2 and 2 eq def
  277. /PSL_clippath psl_bits 4 and 4 eq def
  278. /PSL_strokeline false def
  279. /PSL_fillbox psl_bits 128 and 128 eq def
  280. /PSL_drawbox psl_bits 256 and 256 eq def
  281. /PSL_n_paths1 PSL_n_paths 1 sub def
  282. /PSL_usebox PSL_fillbox PSL_drawbox or def
  283. PSL_clippath {clipsave N clippath} if
  284. /psl_k 0 def
  285. /psl_p 0 def
  286. 0 1 PSL_n_paths1
  287. { /psl_kk exch def
  288. /PSL_n PSL_path_n psl_kk get def
  289. /PSL_m PSL_label_n psl_kk get def
  290. /PSL_x PSL_path_x psl_k PSL_n getinterval def
  291. /PSL_y PSL_path_y psl_k PSL_n getinterval def
  292. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
  293. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
  294. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
  295. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
  296. PSL_curved_path_label
  297. /psl_k psl_k PSL_n add def
  298. /psl_p psl_p PSL_m add def
  299. } for
  300. PSL_clippath {PSL_eoclip} if N
  301. } def
  302. /PSL_curved_path_label
  303. {
  304. /PSL_n1 PSL_n 1 sub def
  305. /PSL_m1 PSL_m 1 sub def
  306. PSL_CT_calcstringwidth
  307. PSL_CT_calclinedist
  308. PSL_CT_excludelabels
  309. PSL_CT_addcutpoints
  310. /PSL_nn1 PSL_nn 1 sub def
  311. /n 0 def
  312. /k 0 def
  313. /j 0 def
  314. /PSL_seg 0 def
  315. /PSL_xp PSL_nn array def
  316. /PSL_yp PSL_nn array def
  317. PSL_xp 0 PSL_xx 0 get put
  318. PSL_yp 0 PSL_yy 0 get put
  319. 1 1 PSL_nn1
  320. { /i exch def
  321. /node_type PSL_kind i get def
  322. /j j 1 add def
  323. PSL_xp j PSL_xx i get put
  324. PSL_yp j PSL_yy i get put
  325. node_type 1 eq
  326. {n 0 eq
  327. {PSL_CT_drawline}
  328. { PSL_CT_reversepath
  329. PSL_CT_textline} ifelse
  330. /j 0 def
  331. PSL_xp j PSL_xx i get put
  332. PSL_yp j PSL_yy i get put
  333. } if
  334. } for
  335. n 0 eq {PSL_CT_drawline} if
  336. } def
  337. /PSL_CT_textline
  338. { /psl_fnt PSL_fnt k get def
  339. psl_fnt (FS) search {pop pop pop /PSL_fmode 2 def} {pop /PSL_fmode 1 def} ifelse
  340. psl_fnt cvx exec
  341. /PSL_height PSL_heights k get def
  342. PSL_placetext {PSL_CT_placelabel} if
  343. PSL_clippath {PSL_CT_clippath} if
  344. /n 0 def /k k 1 add def
  345. } def
  346. /PSL_CT_calcstringwidth
  347. { /PSL_width_tmp PSL_m array def
  348. 0 1 PSL_m1
  349. { /i exch def
  350. PSL_fnt_tmp i get cvx exec
  351. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  352. } for
  353. } def
  354. /PSL_CT_calclinedist
  355. { /PSL_newx PSL_x 0 get def
  356. /PSL_newy PSL_y 0 get def
  357. /dist 0.0 def
  358. /PSL_dist PSL_n array def
  359. PSL_dist 0 0.0 put
  360. 1 1 PSL_n1
  361. { /i exch def
  362. /PSL_oldx PSL_newx def
  363. /PSL_oldy PSL_newy def
  364. /PSL_newx PSL_x i get def
  365. /PSL_newy PSL_y i get def
  366. /dx PSL_newx PSL_oldx sub def
  367. /dy PSL_newy PSL_oldy sub def
  368. /dist dist dx dx mul dy dy mul add sqrt add def
  369. PSL_dist i dist put
  370. } for
  371. } def
  372. /PSL_CT_excludelabels
  373. { /k 0 def
  374. /PSL_width PSL_m array def
  375. /PSL_angle PSL_m array def
  376. /PSL_node PSL_m array def
  377. /PSL_str PSL_m array def
  378. /PSL_fnt PSL_m array def
  379. /lastdist PSL_dist PSL_n1 get def
  380. 0 1 PSL_m1
  381. { /i exch def
  382. /dist PSL_dist PSL_node_tmp i get get def
  383. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  384. /L_dist dist halfwidth sub def
  385. /R_dist dist halfwidth add def
  386. L_dist 0 gt R_dist lastdist lt and
  387. {
  388. PSL_width k PSL_width_tmp i get put
  389. PSL_node k PSL_node_tmp i get put
  390. PSL_angle k PSL_angle_tmp i get put
  391. PSL_str k PSL_str_tmp i get put
  392. PSL_fnt k PSL_fnt_tmp i get put
  393. /k k 1 add def
  394. } if
  395. } for
  396. /PSL_m k def
  397. /PSL_m1 PSL_m 1 sub def
  398. } def
  399. /PSL_CT_addcutpoints
  400. { /k 0 def
  401. /PSL_nc PSL_m 2 mul 1 add def
  402. /PSL_cuts PSL_nc array def
  403. /PSL_nc1 PSL_nc 1 sub def
  404. 0 1 PSL_m1
  405. { /i exch def
  406. /dist PSL_dist PSL_node i get get def
  407. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  408. PSL_cuts k dist halfwidth sub put
  409. /k k 1 add def
  410. PSL_cuts k dist halfwidth add put
  411. /k k 1 add def
  412. } for
  413. PSL_cuts k 100000.0 put
  414. /PSL_nn PSL_n PSL_m 2 mul add def
  415. /PSL_xx PSL_nn array def
  416. /PSL_yy PSL_nn array def
  417. /PSL_kind PSL_nn array def
  418. /j 0 def
  419. /k 0 def
  420. /dist 0.0 def
  421. 0 1 PSL_n1
  422. { /i exch def
  423. /last_dist dist def
  424. /dist PSL_dist i get def
  425. k 1 PSL_nc1
  426. { /kk exch def
  427. /this_cut PSL_cuts kk get def
  428. dist this_cut gt
  429. { /ds dist last_dist sub def
  430. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  431. /i1 i 0 eq {0} {i 1 sub} ifelse def
  432. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  433. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  434. PSL_kind j 1 put
  435. /j j 1 add def
  436. /k k 1 add def
  437. } if
  438. } for
  439. dist PSL_cuts k get le
  440. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  441. PSL_kind j 0 put
  442. /j j 1 add def
  443. } if
  444. } for
  445. } def
  446. /PSL_CT_reversepath
  447. {PSL_xp j get PSL_xp 0 get lt
  448. {0 1 j 2 idiv
  449. { /left exch def
  450. /right j left sub def
  451. /tmp PSL_xp left get def
  452. PSL_xp left PSL_xp right get put
  453. PSL_xp right tmp put
  454. /tmp PSL_yp left get def
  455. PSL_yp left PSL_yp right get put
  456. PSL_yp right tmp put
  457. } for
  458. } if
  459. } def
  460. /PSL_CT_placelabel
  461. {
  462. /PSL_just PSL_label_justify k get def
  463. /PSL_height PSL_heights k get def
  464. /psl_label PSL_str k get def
  465. /psl_depth psl_label sd def
  466. PSL_usebox
  467. {PSL_CT_clippath
  468. PSL_fillbox
  469. {V PSL_setboxrgb fill U} if
  470. PSL_drawbox
  471. {V PSL_setboxpen S U} if N
  472. } if
  473. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  474. } def
  475. /PSL_CT_clippath
  476. {
  477. /H PSL_height 2 div PSL_gap_y add def
  478. /xoff j 1 add array def
  479. /yoff j 1 add array def
  480. /angle 0 def
  481. 0 1 j {
  482. /ii exch def
  483. /x PSL_xp ii get def
  484. /y PSL_yp ii get def
  485. ii 0 eq {
  486. /x1 PSL_xp 1 get def
  487. /y1 PSL_yp 1 get def
  488. /dx x1 x sub def
  489. /dy y1 y sub def
  490. }
  491. { /i1 ii 1 sub def
  492. /x1 PSL_xp i1 get def
  493. /y1 PSL_yp i1 get def
  494. /dx x x1 sub def
  495. /dy y y1 sub def
  496. } ifelse
  497. dx 0.0 eq dy 0.0 eq and not
  498. { /angle dy dx atan 90 add def} if
  499. /sina angle sin def
  500. /cosa angle cos def
  501. xoff ii H cosa mul put
  502. yoff ii H sina mul put
  503. } for
  504. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  505. 1 1 j {
  506. /ii exch def
  507. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  508. } for
  509. j -1 0 {
  510. /ii exch def
  511. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  512. } for P
  513. } def
  514. /PSL_CT_drawline
  515. {
  516. /str 20 string def
  517. PSL_strokeline
  518. {PSL_CT_placeline S} if
  519. /PSL_seg PSL_seg 1 add def
  520. /n 1 def
  521. } def
  522. /PSL_CT_placeline
  523. {PSL_xp 0 get PSL_yp 0 get M
  524. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  525. } def
  526. /PSL_draw_path_lines
  527. {
  528. /PSL_n_paths1 PSL_n_paths 1 sub def
  529. V
  530. /psl_start 0 def
  531. 0 1 PSL_n_paths1
  532. { /psl_k exch def
  533. /PSL_n PSL_path_n psl_k get def
  534. /PSL_n1 PSL_n 1 sub def
  535. PSL_path_pen psl_k get cvx exec
  536. N
  537. PSL_path_x psl_start get PSL_path_y psl_start get M
  538. 1 1 PSL_n1
  539. { /psl_i exch def
  540. /psl_kk psl_i psl_start add def
  541. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  542. } for
  543. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  544. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  545. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  546. S
  547. /psl_start psl_start PSL_n add def
  548. } for
  549. U
  550. } def
  551. /PSL_straight_path_labels
  552. {
  553. /psl_bits exch def
  554. /PSL_placetext psl_bits 2 and 2 eq def
  555. /PSL_rounded psl_bits 32 and 32 eq def
  556. /PSL_fillbox psl_bits 128 and 128 eq def
  557. /PSL_drawbox psl_bits 256 and 256 eq def
  558. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  559. /PSL_usebox PSL_fillbox PSL_drawbox or def
  560. 0 1 PSL_n_labels_minus_1
  561. { /psl_k exch def
  562. PSL_ST_prepare_text
  563. PSL_usebox
  564. { PSL_rounded
  565. {PSL_ST_textbox_round}
  566. {PSL_ST_textbox_rect}
  567. ifelse
  568. PSL_fillbox {V PSL_setboxrgb fill U} if
  569. PSL_drawbox {V PSL_setboxpen S U} if
  570. N
  571. } if
  572. PSL_placetext {PSL_ST_place_label} if
  573. } for
  574. } def
  575. /PSL_straight_path_clip
  576. {
  577. /psl_bits exch def
  578. /PSL_rounded psl_bits 32 and 32 eq def
  579. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  580. N clipsave clippath
  581. 0 1 PSL_n_labels_minus_1
  582. { /psl_k exch def
  583. PSL_ST_prepare_text
  584. PSL_rounded
  585. {PSL_ST_textbox_round}
  586. {PSL_ST_textbox_rect}
  587. ifelse
  588. } for
  589. PSL_eoclip N
  590. } def
  591. /PSL_ST_prepare_text
  592. {
  593. /psl_xp PSL_txt_x psl_k get def
  594. /psl_yp PSL_txt_y psl_k get def
  595. /psl_label PSL_label_str psl_k get def
  596. /psl_fnt PSL_label_font psl_k get def
  597. psl_fnt cvx exec
  598. psl_fnt (FS) search {pop pop pop /PSL_fmode 2 def} {pop /PSL_fmode 1 def} ifelse
  599. /PSL_height PSL_heights psl_k get def
  600. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  601. /PSL_just PSL_label_justify psl_k get def
  602. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  603. /PSL_justy PSL_just 4 idiv 2 div neg def
  604. /psl_SW psl_label stringwidth pop def
  605. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  606. /psl_x0 psl_SW PSL_justx mul def
  607. /psl_y0 PSL_justy PSL_height mul def
  608. /psl_angle PSL_label_angle psl_k get def
  609. } def
  610. /PSL_ST_textbox_rect
  611. {
  612. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  613. PSL_gap_x neg PSL_gap_y neg M
  614. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  615. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  616. } def
  617. /PSL_ST_textbox_round
  618. {
  619. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  620. /psl_xd PSL_gap_x psl_BoxR sub def
  621. /psl_yd PSL_gap_y psl_BoxR sub def
  622. /psl_xL PSL_gap_x neg def
  623. /psl_yB PSL_gap_y neg def
  624. /psl_yT psl_boxH psl_yB add def
  625. /psl_H2 PSL_height psl_yd 2 mul add def
  626. /psl_W2 psl_SW psl_xd 2 mul add def
  627. /psl_xR psl_xL psl_boxW add def
  628. /psl_x0 psl_SW PSL_justx mul def
  629. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  630. psl_xL psl_yd M
  631. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  632. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  633. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  634. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  635. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  636. } def
  637. /PSL_ST_place_label
  638. {
  639. V psl_xp psl_yp T psl_angle R
  640. psl_SW PSL_justx mul psl_y0 M
  641. psl_label dup sd neg 0 exch G
  642. PSL_fmode 1 eq {show} {false charpath V S U fs N} ifelse
  643. U
  644. } def
  645. /PSL_nclip 0 def
  646. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  647. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  648. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  649. %%EndProlog
  650. %%BeginSetup
  651. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  652. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  653. %%EndSetup
  654. %%Page: 1 1
  655. %%BeginPageSetup
  656. V 0.06 0.06 scale
  657. %%EndPageSetup
  658. /PSL_page_xsize 10200 def
  659. /PSL_page_ysize 13200 def
  660. /PSL_completion {} def
  661. /PSL_movie_completion {} def
  662. %PSL_End_Header
  663. gsave
  664. 0 A
  665. FQ
  666. O0
  667. 1890 11339 TM
  668. % PostScript produced by:
  669. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -K -R-0.5/2.5/-0.5/2.5 -P -X4c -Y24c
  670. %@PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy
  671. %GMTBoundingBox: 113.386 680.315 72 72
  672. %%BeginObject PSL_Layer_1
  673. 0 setlinecap
  674. 0 setlinejoin
  675. 3.32551 setmiterlimit
  676. clipsave
  677. 0 0 M
  678. 1200 0 D
  679. 0 1200 D
  680. -1200 0 D
  681. P
  682. PSL_clip N
  683. V N 0 0 T 1200 1200 scale /DeviceRGB setcolorspace
  684. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 3 /Height 3 /BitsPerComponent 8
  685. /ImageMatrix [3 0 0 -3 0 3] /DataSource currentfile /ASCII85Decode filter
  686. >> image
  687. $3:)+ruM+o!,MZ8!<7TLP5rl.rrE)Ys7H?~>
  688. U
  689. PSL_cliprestore
  690. 25 W
  691. 2 setlinecap
  692. N 0 1200 M 0 -1200 D S
  693. /PSL_A0_y 83 def
  694. /PSL_A1_y 0 def
  695. 8 W
  696. N 0 200 M -83 0 D S
  697. N 0 600 M -83 0 D S
  698. N 0 1000 M -83 0 D S
  699. /PSL_AH0 0
  700. /MM {neg exch M} def
  701. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  702. 167 F0
  703. (0) sw mx
  704. (1) sw mx
  705. (2) sw mx
  706. def
  707. /PSL_A0_y PSL_A0_y 83 add def
  708. 200 PSL_A0_y MM
  709. (0) mr Z
  710. 600 PSL_A0_y MM
  711. (1) mr Z
  712. 1000 PSL_A0_y MM
  713. (2) mr Z
  714. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  715. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  716. 1200 0 T
  717. 25 W
  718. N 0 1200 M 0 -1200 D S
  719. /PSL_A0_y 83 def
  720. /PSL_A1_y 0 def
  721. 8 W
  722. N 0 200 M 83 0 D S
  723. N 0 600 M 83 0 D S
  724. N 0 1000 M 83 0 D S
  725. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  726. -1200 0 T
  727. 25 W
  728. N 0 0 M 1200 0 D S
  729. /PSL_A0_y 83 def
  730. /PSL_A1_y 0 def
  731. 8 W
  732. N 200 0 M 0 -83 D S
  733. N 600 0 M 0 -83 D S
  734. N 1000 0 M 0 -83 D S
  735. /PSL_AH0 0
  736. /MM {neg M} def
  737. (0) sh mx
  738. (1) sh mx
  739. (2) sh mx
  740. def
  741. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  742. 200 PSL_A0_y MM
  743. (0) bc Z
  744. 600 PSL_A0_y MM
  745. (1) bc Z
  746. 1000 PSL_A0_y MM
  747. (2) bc Z
  748. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  749. 0 1200 T
  750. 25 W
  751. N 0 0 M 1200 0 D S
  752. /PSL_A0_y 83 def
  753. /PSL_A1_y 0 def
  754. 8 W
  755. N 200 0 M 0 83 D S
  756. N 600 0 M 0 83 D S
  757. N 1000 0 M 0 83 D S
  758. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  759. 0 -1200 T
  760. 0 setlinecap
  761. %%EndObject
  762. 0 A
  763. FQ
  764. O0
  765. 0 0 TM
  766. % PostScript produced by:
  767. %@GMT: gmt pstext -R-0.5/2.5/-0.5/2.5 -JX1i -N -F+f10p+jBR -O -K
  768. %@PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy
  769. %%BeginObject PSL_Layer_2
  770. 0 setlinecap
  771. 0 setlinejoin
  772. 3.32551 setmiterlimit
  773. -360 800 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  774. 167 F0
  775. (grdmath) br Z
  776. -360 600 M (grdimage) br Z
  777. %%EndObject
  778. 0 A
  779. FQ
  780. O0
  781. 1890 0 TM
  782. % PostScript produced by:
  783. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -O -K -R0/2/0/2 -X4c
  784. %@PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy
  785. %%BeginObject PSL_Layer_3
  786. 0 setlinecap
  787. 0 setlinejoin
  788. 3.32551 setmiterlimit
  789. clipsave
  790. 0 0 M
  791. 1200 0 D
  792. 0 1200 D
  793. -1200 0 D
  794. P
  795. PSL_clip N
  796. V N -300 -300 T 1800 1800 scale /DeviceRGB setcolorspace
  797. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 3 /Height 3 /BitsPerComponent 8
  798. /ImageMatrix [3 0 0 -3 0 3] /DataSource currentfile /ASCII85Decode filter
  799. >> image
  800. $3:)+ruM+o!,MZ8!<7TLP5rl.rrE)Ys7H?~>
  801. U
  802. PSL_cliprestore
  803. 25 W
  804. 2 setlinecap
  805. N 0 1200 M 0 -1200 D S
  806. /PSL_A0_y 83 def
  807. /PSL_A1_y 0 def
  808. 8 W
  809. N 0 0 M -83 0 D S
  810. N 0 600 M -83 0 D S
  811. N 0 1200 M -83 0 D S
  812. /PSL_AH0 0
  813. /MM {neg exch M} def
  814. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  815. 167 F0
  816. (0) sw mx
  817. (1) sw mx
  818. (2) sw mx
  819. def
  820. /PSL_A0_y PSL_A0_y 83 add def
  821. 0 PSL_A0_y MM
  822. (0) mr Z
  823. 600 PSL_A0_y MM
  824. (1) mr Z
  825. 1200 PSL_A0_y MM
  826. (2) mr Z
  827. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  828. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  829. 1200 0 T
  830. 25 W
  831. N 0 1200 M 0 -1200 D S
  832. /PSL_A0_y 83 def
  833. /PSL_A1_y 0 def
  834. 8 W
  835. N 0 0 M 83 0 D S
  836. N 0 600 M 83 0 D S
  837. N 0 1200 M 83 0 D S
  838. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  839. -1200 0 T
  840. 25 W
  841. N 0 0 M 1200 0 D S
  842. /PSL_A0_y 83 def
  843. /PSL_A1_y 0 def
  844. 8 W
  845. N 0 0 M 0 -83 D S
  846. N 600 0 M 0 -83 D S
  847. N 1200 0 M 0 -83 D S
  848. /PSL_AH0 0
  849. /MM {neg M} def
  850. (0) sh mx
  851. (1) sh mx
  852. (2) sh mx
  853. def
  854. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  855. 0 PSL_A0_y MM
  856. (0) bc Z
  857. 600 PSL_A0_y MM
  858. (1) bc Z
  859. 1200 PSL_A0_y MM
  860. (2) bc Z
  861. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  862. 0 1200 T
  863. 25 W
  864. N 0 0 M 1200 0 D S
  865. /PSL_A0_y 83 def
  866. /PSL_A1_y 0 def
  867. 8 W
  868. N 0 0 M 0 83 D S
  869. N 600 0 M 0 83 D S
  870. N 1200 0 M 0 83 D S
  871. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  872. 0 -1200 T
  873. 0 setlinecap
  874. %%EndObject
  875. 0 A
  876. FQ
  877. O0
  878. 1890 0 TM
  879. % PostScript produced by:
  880. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -O -K -R-0.5/1.5/0/2 -X4c
  881. %@PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy
  882. %%BeginObject PSL_Layer_4
  883. 0 setlinecap
  884. 0 setlinejoin
  885. 3.32551 setmiterlimit
  886. clipsave
  887. 0 0 M
  888. 1200 0 D
  889. 0 1200 D
  890. -1200 0 D
  891. P
  892. PSL_clip N
  893. V N 0 -300 T 1200 1800 scale /DeviceRGB setcolorspace
  894. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 2 /Height 3 /BitsPerComponent 8
  895. /ImageMatrix [2 0 0 -3 0 3] /DataSource currentfile /ASCII85Decode filter
  896. >> image
  897. $3:)+ruGnUrrE(Lc2dkEs5F~>
  898. U
  899. PSL_cliprestore
  900. 25 W
  901. 2 setlinecap
  902. N 0 1200 M 0 -1200 D S
  903. /PSL_A0_y 83 def
  904. /PSL_A1_y 0 def
  905. 8 W
  906. N 0 0 M -83 0 D S
  907. N 0 600 M -83 0 D S
  908. N 0 1200 M -83 0 D S
  909. /PSL_AH0 0
  910. /MM {neg exch M} def
  911. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  912. 167 F0
  913. (0) sw mx
  914. (1) sw mx
  915. (2) sw mx
  916. def
  917. /PSL_A0_y PSL_A0_y 83 add def
  918. 0 PSL_A0_y MM
  919. (0) mr Z
  920. 600 PSL_A0_y MM
  921. (1) mr Z
  922. 1200 PSL_A0_y MM
  923. (2) mr Z
  924. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  925. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  926. 1200 0 T
  927. 25 W
  928. N 0 1200 M 0 -1200 D S
  929. /PSL_A0_y 83 def
  930. /PSL_A1_y 0 def
  931. 8 W
  932. N 0 0 M 83 0 D S
  933. N 0 600 M 83 0 D S
  934. N 0 1200 M 83 0 D S
  935. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  936. -1200 0 T
  937. 25 W
  938. N 0 0 M 1200 0 D S
  939. /PSL_A0_y 83 def
  940. /PSL_A1_y 0 def
  941. 8 W
  942. N 300 0 M 0 -83 D S
  943. N 900 0 M 0 -83 D S
  944. /PSL_AH0 0
  945. /MM {neg M} def
  946. (0) sh mx
  947. (1) sh mx
  948. def
  949. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  950. 300 PSL_A0_y MM
  951. (0) bc Z
  952. 900 PSL_A0_y MM
  953. (1) bc Z
  954. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  955. 0 1200 T
  956. 25 W
  957. N 0 0 M 1200 0 D S
  958. /PSL_A0_y 83 def
  959. /PSL_A1_y 0 def
  960. 8 W
  961. N 300 0 M 0 83 D S
  962. N 900 0 M 0 83 D S
  963. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  964. 0 -1200 T
  965. 0 setlinecap
  966. %%EndObject
  967. 0 A
  968. FQ
  969. O0
  970. 1890 0 TM
  971. % PostScript produced by:
  972. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -O -K -R-1/3/-1/3 -X4c
  973. %@PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy
  974. %%BeginObject PSL_Layer_5
  975. 0 setlinecap
  976. 0 setlinejoin
  977. 3.32551 setmiterlimit
  978. clipsave
  979. 0 0 M
  980. 1200 0 D
  981. 0 1200 D
  982. -1200 0 D
  983. P
  984. PSL_clip N
  985. V N 150 150 T 900 900 scale /DeviceRGB setcolorspace
  986. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 3 /Height 3 /BitsPerComponent 8
  987. /ImageMatrix [3 0 0 -3 0 3] /DataSource currentfile /ASCII85Decode filter
  988. >> image
  989. $3:)+ruM+o!,MZ8!<7TLP5rl.rrE)Ys7H?~>
  990. U
  991. PSL_cliprestore
  992. 25 W
  993. 2 setlinecap
  994. N 0 1200 M 0 -1200 D S
  995. /PSL_A0_y 83 def
  996. /PSL_A1_y 0 def
  997. 8 W
  998. N 0 0 M -83 0 D S
  999. N 0 300 M -83 0 D S
  1000. N 0 600 M -83 0 D S
  1001. N 0 900 M -83 0 D S
  1002. N 0 1200 M -83 0 D S
  1003. /PSL_AH0 0
  1004. /MM {neg exch M} def
  1005. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1006. 167 F0
  1007. (”1) sw mx
  1008. (0) sw mx
  1009. (1) sw mx
  1010. (2) sw mx
  1011. (3) sw mx
  1012. def
  1013. /PSL_A0_y PSL_A0_y 83 add def
  1014. 0 PSL_A0_y MM
  1015. (”1) mr Z
  1016. 300 PSL_A0_y MM
  1017. (0) mr Z
  1018. 600 PSL_A0_y MM
  1019. (1) mr Z
  1020. 900 PSL_A0_y MM
  1021. (2) mr Z
  1022. 1200 PSL_A0_y MM
  1023. (3) mr Z
  1024. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1025. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1026. 1200 0 T
  1027. 25 W
  1028. N 0 1200 M 0 -1200 D S
  1029. /PSL_A0_y 83 def
  1030. /PSL_A1_y 0 def
  1031. 8 W
  1032. N 0 0 M 83 0 D S
  1033. N 0 300 M 83 0 D S
  1034. N 0 600 M 83 0 D S
  1035. N 0 900 M 83 0 D S
  1036. N 0 1200 M 83 0 D S
  1037. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1038. -1200 0 T
  1039. 25 W
  1040. N 0 0 M 1200 0 D S
  1041. /PSL_A0_y 83 def
  1042. /PSL_A1_y 0 def
  1043. 8 W
  1044. N 0 0 M 0 -83 D S
  1045. N 300 0 M 0 -83 D S
  1046. N 600 0 M 0 -83 D S
  1047. N 900 0 M 0 -83 D S
  1048. N 1200 0 M 0 -83 D S
  1049. /PSL_AH0 0
  1050. /MM {neg M} def
  1051. (”1) sh mx
  1052. (0) sh mx
  1053. (1) sh mx
  1054. (2) sh mx
  1055. (3) sh mx
  1056. def
  1057. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1058. 0 PSL_A0_y MM
  1059. (”1) bc Z
  1060. 300 PSL_A0_y MM
  1061. (0) bc Z
  1062. 600 PSL_A0_y MM
  1063. (1) bc Z
  1064. 900 PSL_A0_y MM
  1065. (2) bc Z
  1066. 1200 PSL_A0_y MM
  1067. (3) bc Z
  1068. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1069. 0 1200 T
  1070. 25 W
  1071. N 0 0 M 1200 0 D S
  1072. /PSL_A0_y 83 def
  1073. /PSL_A1_y 0 def
  1074. 8 W
  1075. N 0 0 M 0 83 D S
  1076. N 300 0 M 0 83 D S
  1077. N 600 0 M 0 83 D S
  1078. N 900 0 M 0 83 D S
  1079. N 1200 0 M 0 83 D S
  1080. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1081. 0 -1200 T
  1082. 0 setlinecap
  1083. %%EndObject
  1084. 0 A
  1085. FQ
  1086. O0
  1087. -5669 -1890 TM
  1088. % PostScript produced by:
  1089. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-0.5/2.5/-0.5/2.5 -X-12c -Y-4c -nl
  1090. %@PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy
  1091. %%BeginObject PSL_Layer_6
  1092. 0 setlinecap
  1093. 0 setlinejoin
  1094. 3.32551 setmiterlimit
  1095. clipsave
  1096. 0 0 M
  1097. 1200 0 D
  1098. 0 1200 D
  1099. -1200 0 D
  1100. P
  1101. PSL_clip N
  1102. V N 200 200 T 800 800 scale [/Indexed /DeviceRGB 12 <
  1103. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFCE00FF>] setcolorspace
  1104. << /ImageType 1 /Decode [0 15] /Width 33 /Height 33 /BitsPerComponent 4
  1105. /ImageMatrix [33 0 0 -33 0 33] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  1106. >> image
  1107. G[=\$]+ooO(^A>@!fVXSi!;"<Ndr?>Bo*'%>=dc[p)-/O11,(m^Y2mt=#Y!Jotra`o<KG#gI8V+*"4dA'2SdWL5KDO\,u($
  1108. Xah5(#Zq`sJ:YKB=9s065GfnQcN's`6!"H@bQh&]OCnl121htHTU?=f.O!'F@&a3,,q-)OR-OZ.eI8/Z:fW*&MkI-JcVu!9
  1109. ]`YQE~>
  1110. U
  1111. PSL_cliprestore
  1112. 25 W
  1113. 2 setlinecap
  1114. N 0 1200 M 0 -1200 D S
  1115. /PSL_A0_y 83 def
  1116. /PSL_A1_y 0 def
  1117. 8 W
  1118. N 0 200 M -83 0 D S
  1119. N 0 600 M -83 0 D S
  1120. N 0 1000 M -83 0 D S
  1121. /PSL_AH0 0
  1122. /MM {neg exch M} def
  1123. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1124. 167 F0
  1125. (0) sw mx
  1126. (1) sw mx
  1127. (2) sw mx
  1128. def
  1129. /PSL_A0_y PSL_A0_y 83 add def
  1130. 200 PSL_A0_y MM
  1131. (0) mr Z
  1132. 600 PSL_A0_y MM
  1133. (1) mr Z
  1134. 1000 PSL_A0_y MM
  1135. (2) mr Z
  1136. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1137. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1138. 1200 0 T
  1139. 25 W
  1140. N 0 1200 M 0 -1200 D S
  1141. /PSL_A0_y 83 def
  1142. /PSL_A1_y 0 def
  1143. 8 W
  1144. N 0 200 M 83 0 D S
  1145. N 0 600 M 83 0 D S
  1146. N 0 1000 M 83 0 D S
  1147. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1148. -1200 0 T
  1149. 25 W
  1150. N 0 0 M 1200 0 D S
  1151. /PSL_A0_y 83 def
  1152. /PSL_A1_y 0 def
  1153. 8 W
  1154. N 200 0 M 0 -83 D S
  1155. N 600 0 M 0 -83 D S
  1156. N 1000 0 M 0 -83 D S
  1157. /PSL_AH0 0
  1158. /MM {neg M} def
  1159. (0) sh mx
  1160. (1) sh mx
  1161. (2) sh mx
  1162. def
  1163. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1164. 200 PSL_A0_y MM
  1165. (0) bc Z
  1166. 600 PSL_A0_y MM
  1167. (1) bc Z
  1168. 1000 PSL_A0_y MM
  1169. (2) bc Z
  1170. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1171. 0 1200 T
  1172. 25 W
  1173. N 0 0 M 1200 0 D S
  1174. /PSL_A0_y 83 def
  1175. /PSL_A1_y 0 def
  1176. 8 W
  1177. N 200 0 M 0 83 D S
  1178. N 600 0 M 0 83 D S
  1179. N 1000 0 M 0 83 D S
  1180. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1181. 0 -1200 T
  1182. 0 setlinecap
  1183. %%EndObject
  1184. 0 A
  1185. FQ
  1186. O0
  1187. 0 0 TM
  1188. % PostScript produced by:
  1189. %@GMT: gmt grdcontour t.nc -Ct.cpt -JX1i -R-0.5/2.5/-0.5/2.5 -O -K
  1190. %@PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy
  1191. %%BeginObject PSL_Layer_7
  1192. 0 setlinecap
  1193. 0 setlinejoin
  1194. 3.32551 setmiterlimit
  1195. clipsave
  1196. 0 0 M
  1197. 1200 0 D
  1198. 0 1200 D
  1199. -1200 0 D
  1200. P
  1201. PSL_clip N
  1202. 12 W
  1203. 240 200 M
  1204. -40 200 D
  1205. S
  1206. 320 200 M
  1207. -120 600 D
  1208. S
  1209. 400 200 M
  1210. -160 800 D
  1211. S
  1212. 480 200 M
  1213. -160 800 D
  1214. S
  1215. 560 200 M
  1216. -160 800 D
  1217. S
  1218. 640 200 M
  1219. -160 800 D
  1220. S
  1221. 720 200 M
  1222. -160 800 D
  1223. S
  1224. 800 200 M
  1225. -160 800 D
  1226. S
  1227. 880 200 M
  1228. -160 800 D
  1229. S
  1230. 960 200 M
  1231. -160 800 D
  1232. S
  1233. 1000 400 M
  1234. -120 600 D
  1235. S
  1236. 1000 800 M
  1237. -40 200 D
  1238. S
  1239. PSL_cliprestore
  1240. %%EndObject
  1241. 0 A
  1242. FQ
  1243. O0
  1244. 0 0 TM
  1245. % PostScript produced by:
  1246. %@GMT: gmt pstext -R-0.5/2.5/-0.5/2.5 -JX1i -N -F+f10p+jBR -O -K
  1247. %@PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy
  1248. %%BeginObject PSL_Layer_8
  1249. 0 setlinecap
  1250. 0 setlinejoin
  1251. 3.32551 setmiterlimit
  1252. -360 800 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1253. 167 F0
  1254. (grdmath) br Z
  1255. -360 600 M (grdimage -E50 -nl) br Z
  1256. %%EndObject
  1257. 0 A
  1258. FQ
  1259. O0
  1260. 1890 0 TM
  1261. % PostScript produced by:
  1262. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R0/2/0/2 -X4c -nl
  1263. %@PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy
  1264. %%BeginObject PSL_Layer_9
  1265. 0 setlinecap
  1266. 0 setlinejoin
  1267. 3.32551 setmiterlimit
  1268. clipsave
  1269. 0 0 M
  1270. 1200 0 D
  1271. 0 1200 D
  1272. -1200 0 D
  1273. P
  1274. PSL_clip N
  1275. V N 0 0 T 1200 1200 scale [/Indexed /DeviceRGB 12 <
  1276. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFCE00FF>] setcolorspace
  1277. << /ImageType 1 /Decode [0 15] /Width 50 /Height 50 /BitsPerComponent 4
  1278. /ImageMatrix [50 0 0 -50 0 50] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  1279. >> image
  1280. G[A)/0`cei#R/R2!_,-o?j)F=&MO8U^^(dnak[4@aoneqI`lL/;=>1)aJ*FX\ORX-=$o4t)LH+g79!>EpH9_l`'D^:^g4>Z
  1281. n5LtF<%SAT/IW=F"M@_B!FOAD^^jp:K\l~>
  1282. U
  1283. PSL_cliprestore
  1284. 25 W
  1285. 2 setlinecap
  1286. N 0 1200 M 0 -1200 D S
  1287. /PSL_A0_y 83 def
  1288. /PSL_A1_y 0 def
  1289. 8 W
  1290. N 0 0 M -83 0 D S
  1291. N 0 600 M -83 0 D S
  1292. N 0 1200 M -83 0 D S
  1293. /PSL_AH0 0
  1294. /MM {neg exch M} def
  1295. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1296. 167 F0
  1297. (0) sw mx
  1298. (1) sw mx
  1299. (2) sw mx
  1300. def
  1301. /PSL_A0_y PSL_A0_y 83 add def
  1302. 0 PSL_A0_y MM
  1303. (0) mr Z
  1304. 600 PSL_A0_y MM
  1305. (1) mr Z
  1306. 1200 PSL_A0_y MM
  1307. (2) mr Z
  1308. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1309. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1310. 1200 0 T
  1311. 25 W
  1312. N 0 1200 M 0 -1200 D S
  1313. /PSL_A0_y 83 def
  1314. /PSL_A1_y 0 def
  1315. 8 W
  1316. N 0 0 M 83 0 D S
  1317. N 0 600 M 83 0 D S
  1318. N 0 1200 M 83 0 D S
  1319. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1320. -1200 0 T
  1321. 25 W
  1322. N 0 0 M 1200 0 D S
  1323. /PSL_A0_y 83 def
  1324. /PSL_A1_y 0 def
  1325. 8 W
  1326. N 0 0 M 0 -83 D S
  1327. N 600 0 M 0 -83 D S
  1328. N 1200 0 M 0 -83 D S
  1329. /PSL_AH0 0
  1330. /MM {neg M} def
  1331. (0) sh mx
  1332. (1) sh mx
  1333. (2) sh mx
  1334. def
  1335. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1336. 0 PSL_A0_y MM
  1337. (0) bc Z
  1338. 600 PSL_A0_y MM
  1339. (1) bc Z
  1340. 1200 PSL_A0_y MM
  1341. (2) bc Z
  1342. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1343. 0 1200 T
  1344. 25 W
  1345. N 0 0 M 1200 0 D S
  1346. /PSL_A0_y 83 def
  1347. /PSL_A1_y 0 def
  1348. 8 W
  1349. N 0 0 M 0 83 D S
  1350. N 600 0 M 0 83 D S
  1351. N 1200 0 M 0 83 D S
  1352. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1353. 0 -1200 T
  1354. 0 setlinecap
  1355. %%EndObject
  1356. 0 A
  1357. FQ
  1358. O0
  1359. 0 0 TM
  1360. % PostScript produced by:
  1361. %@GMT: gmt grdcontour t.nc -Ct.cpt -JX1i -R0/2/0/2 -O -K
  1362. %@PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy
  1363. %%BeginObject PSL_Layer_10
  1364. 0 setlinecap
  1365. 0 setlinejoin
  1366. 3.32551 setmiterlimit
  1367. clipsave
  1368. 0 0 M
  1369. 1200 0 D
  1370. 0 1200 D
  1371. -1200 0 D
  1372. P
  1373. PSL_clip N
  1374. 12 W
  1375. 60 0 M
  1376. -60 300 D
  1377. S
  1378. 180 0 M
  1379. -180 900 D
  1380. S
  1381. 300 0 M
  1382. -240 1200 D
  1383. S
  1384. 420 0 M
  1385. -240 1200 D
  1386. S
  1387. 540 0 M
  1388. -240 1200 D
  1389. S
  1390. 660 0 M
  1391. -240 1200 D
  1392. S
  1393. 780 0 M
  1394. -240 1200 D
  1395. S
  1396. 900 0 M
  1397. -240 1200 D
  1398. S
  1399. 1020 0 M
  1400. -240 1200 D
  1401. S
  1402. 1140 0 M
  1403. -240 1200 D
  1404. S
  1405. 1200 300 M
  1406. -180 900 D
  1407. S
  1408. 1200 900 M
  1409. -60 300 D
  1410. S
  1411. PSL_cliprestore
  1412. %%EndObject
  1413. 0 A
  1414. FQ
  1415. O0
  1416. 1890 0 TM
  1417. % PostScript produced by:
  1418. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-0.5/1.5/0/2 -X4c -nl
  1419. %@PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy
  1420. %%BeginObject PSL_Layer_11
  1421. 0 setlinecap
  1422. 0 setlinejoin
  1423. 3.32551 setmiterlimit
  1424. clipsave
  1425. 0 0 M
  1426. 1200 0 D
  1427. 0 1200 D
  1428. -1200 0 D
  1429. P
  1430. PSL_clip N
  1431. V N 300 0 T 1200 1200 scale [/Indexed /DeviceRGB 12 <
  1432. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFCE00FF>] setcolorspace
  1433. << /ImageType 1 /Decode [0 15] /Width 50 /Height 50 /BitsPerComponent 4
  1434. /ImageMatrix [50 0 0 -50 0 50] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  1435. >> image
  1436. G[A)/0`cei#R/R2!_,-o?j)F=&MO8U^^(dnak[4@aoneqI`lL/;=>1)aJ*FX\ORX-=$o4t)LH+g79!>EpH9_l`'D^:^g4>Z
  1437. n5LtF<%SAT/IW=F"M@_B!FOAD^^jp:K\l~>
  1438. U
  1439. PSL_cliprestore
  1440. 25 W
  1441. 2 setlinecap
  1442. N 0 1200 M 0 -1200 D S
  1443. /PSL_A0_y 83 def
  1444. /PSL_A1_y 0 def
  1445. 8 W
  1446. N 0 0 M -83 0 D S
  1447. N 0 600 M -83 0 D S
  1448. N 0 1200 M -83 0 D S
  1449. /PSL_AH0 0
  1450. /MM {neg exch M} def
  1451. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1452. 167 F0
  1453. (0) sw mx
  1454. (1) sw mx
  1455. (2) sw mx
  1456. def
  1457. /PSL_A0_y PSL_A0_y 83 add def
  1458. 0 PSL_A0_y MM
  1459. (0) mr Z
  1460. 600 PSL_A0_y MM
  1461. (1) mr Z
  1462. 1200 PSL_A0_y MM
  1463. (2) mr Z
  1464. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1465. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1466. 1200 0 T
  1467. 25 W
  1468. N 0 1200 M 0 -1200 D S
  1469. /PSL_A0_y 83 def
  1470. /PSL_A1_y 0 def
  1471. 8 W
  1472. N 0 0 M 83 0 D S
  1473. N 0 600 M 83 0 D S
  1474. N 0 1200 M 83 0 D S
  1475. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1476. -1200 0 T
  1477. 25 W
  1478. N 0 0 M 1200 0 D S
  1479. /PSL_A0_y 83 def
  1480. /PSL_A1_y 0 def
  1481. 8 W
  1482. N 300 0 M 0 -83 D S
  1483. N 900 0 M 0 -83 D S
  1484. /PSL_AH0 0
  1485. /MM {neg M} def
  1486. (0) sh mx
  1487. (1) sh mx
  1488. def
  1489. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1490. 300 PSL_A0_y MM
  1491. (0) bc Z
  1492. 900 PSL_A0_y MM
  1493. (1) bc Z
  1494. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1495. 0 1200 T
  1496. 25 W
  1497. N 0 0 M 1200 0 D S
  1498. /PSL_A0_y 83 def
  1499. /PSL_A1_y 0 def
  1500. 8 W
  1501. N 300 0 M 0 83 D S
  1502. N 900 0 M 0 83 D S
  1503. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1504. 0 -1200 T
  1505. 0 setlinecap
  1506. %%EndObject
  1507. 0 A
  1508. FQ
  1509. O0
  1510. 0 0 TM
  1511. % PostScript produced by:
  1512. %@GMT: gmt grdcontour t.nc -Ct.cpt -JX1i -R-0.5/1.5/0/2 -O -K
  1513. %@PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy
  1514. %%BeginObject PSL_Layer_12
  1515. 0 setlinecap
  1516. 0 setlinejoin
  1517. 3.32551 setmiterlimit
  1518. clipsave
  1519. 0 0 M
  1520. 1200 0 D
  1521. 0 1200 D
  1522. -1200 0 D
  1523. P
  1524. PSL_clip N
  1525. 12 W
  1526. 360 0 M
  1527. -60 300 D
  1528. S
  1529. 480 0 M
  1530. -180 900 D
  1531. S
  1532. 600 0 M
  1533. -240 1200 D
  1534. S
  1535. 720 0 M
  1536. -240 1200 D
  1537. S
  1538. 840 0 M
  1539. -240 1200 D
  1540. S
  1541. 960 0 M
  1542. -240 1200 D
  1543. S
  1544. 1080 0 M
  1545. -240 1200 D
  1546. S
  1547. 1200 0 M
  1548. -240 1200 D
  1549. S
  1550. 1200 600 M
  1551. -120 600 D
  1552. S
  1553. 1200 1200 M
  1554. 0 0 D
  1555. P S
  1556. PSL_cliprestore
  1557. %%EndObject
  1558. 0 A
  1559. FQ
  1560. O0
  1561. 1890 0 TM
  1562. % PostScript produced by:
  1563. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-1/3/-1/3 -X4c -nl
  1564. %@PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy
  1565. %%BeginObject PSL_Layer_13
  1566. 0 setlinecap
  1567. 0 setlinejoin
  1568. 3.32551 setmiterlimit
  1569. clipsave
  1570. 0 0 M
  1571. 1200 0 D
  1572. 0 1200 D
  1573. -1200 0 D
  1574. P
  1575. PSL_clip N
  1576. V N 300 300 T 600 600 scale [/Indexed /DeviceRGB 12 <
  1577. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFCE00FF>] setcolorspace
  1578. << /ImageType 1 /Decode [0 15] /Width 25 /Height 25 /BitsPerComponent 4
  1579. /ImageMatrix [25 0 0 -25 0 25] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  1580. >> image
  1581. G[=ko<&-@O%8A@Vka]265u:/+`$I5l]qPTn7nD=c,r@0d]OU(,<">[bP-Kp\=B]u?-Z75r%?(Qsd5XZ4iSj,mZ5&p_Yc&KO
  1582. #K^!\:=!W"Mst_JCi'.PmBL=^~>
  1583. U
  1584. PSL_cliprestore
  1585. 25 W
  1586. 2 setlinecap
  1587. N 0 1200 M 0 -1200 D S
  1588. /PSL_A0_y 83 def
  1589. /PSL_A1_y 0 def
  1590. 8 W
  1591. N 0 0 M -83 0 D S
  1592. N 0 300 M -83 0 D S
  1593. N 0 600 M -83 0 D S
  1594. N 0 900 M -83 0 D S
  1595. N 0 1200 M -83 0 D S
  1596. /PSL_AH0 0
  1597. /MM {neg exch M} def
  1598. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1599. 167 F0
  1600. (”1) sw mx
  1601. (0) sw mx
  1602. (1) sw mx
  1603. (2) sw mx
  1604. (3) sw mx
  1605. def
  1606. /PSL_A0_y PSL_A0_y 83 add def
  1607. 0 PSL_A0_y MM
  1608. (”1) mr Z
  1609. 300 PSL_A0_y MM
  1610. (0) mr Z
  1611. 600 PSL_A0_y MM
  1612. (1) mr Z
  1613. 900 PSL_A0_y MM
  1614. (2) mr Z
  1615. 1200 PSL_A0_y MM
  1616. (3) mr Z
  1617. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1618. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1619. 1200 0 T
  1620. 25 W
  1621. N 0 1200 M 0 -1200 D S
  1622. /PSL_A0_y 83 def
  1623. /PSL_A1_y 0 def
  1624. 8 W
  1625. N 0 0 M 83 0 D S
  1626. N 0 300 M 83 0 D S
  1627. N 0 600 M 83 0 D S
  1628. N 0 900 M 83 0 D S
  1629. N 0 1200 M 83 0 D S
  1630. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1631. -1200 0 T
  1632. 25 W
  1633. N 0 0 M 1200 0 D S
  1634. /PSL_A0_y 83 def
  1635. /PSL_A1_y 0 def
  1636. 8 W
  1637. N 0 0 M 0 -83 D S
  1638. N 300 0 M 0 -83 D S
  1639. N 600 0 M 0 -83 D S
  1640. N 900 0 M 0 -83 D S
  1641. N 1200 0 M 0 -83 D S
  1642. /PSL_AH0 0
  1643. /MM {neg M} def
  1644. (”1) sh mx
  1645. (0) sh mx
  1646. (1) sh mx
  1647. (2) sh mx
  1648. (3) sh mx
  1649. def
  1650. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1651. 0 PSL_A0_y MM
  1652. (”1) bc Z
  1653. 300 PSL_A0_y MM
  1654. (0) bc Z
  1655. 600 PSL_A0_y MM
  1656. (1) bc Z
  1657. 900 PSL_A0_y MM
  1658. (2) bc Z
  1659. 1200 PSL_A0_y MM
  1660. (3) bc Z
  1661. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1662. 0 1200 T
  1663. 25 W
  1664. N 0 0 M 1200 0 D S
  1665. /PSL_A0_y 83 def
  1666. /PSL_A1_y 0 def
  1667. 8 W
  1668. N 0 0 M 0 83 D S
  1669. N 300 0 M 0 83 D S
  1670. N 600 0 M 0 83 D S
  1671. N 900 0 M 0 83 D S
  1672. N 1200 0 M 0 83 D S
  1673. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1674. 0 -1200 T
  1675. 0 setlinecap
  1676. %%EndObject
  1677. 0 A
  1678. FQ
  1679. O0
  1680. 0 0 TM
  1681. % PostScript produced by:
  1682. %@GMT: gmt grdcontour t.nc -Ct.cpt -JX1i -R-1/3/-1/3 -O -K
  1683. %@PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy
  1684. %%BeginObject PSL_Layer_14
  1685. 0 setlinecap
  1686. 0 setlinejoin
  1687. 3.32551 setmiterlimit
  1688. clipsave
  1689. 0 0 M
  1690. 1200 0 D
  1691. 0 1200 D
  1692. -1200 0 D
  1693. P
  1694. PSL_clip N
  1695. 12 W
  1696. 330 300 M
  1697. -30 150 D
  1698. S
  1699. 390 300 M
  1700. -90 450 D
  1701. S
  1702. 450 300 M
  1703. -120 600 D
  1704. S
  1705. 510 300 M
  1706. -120 600 D
  1707. S
  1708. 570 300 M
  1709. -120 600 D
  1710. S
  1711. 630 300 M
  1712. -120 600 D
  1713. S
  1714. 690 300 M
  1715. -120 600 D
  1716. S
  1717. 750 300 M
  1718. -120 600 D
  1719. S
  1720. 810 300 M
  1721. -120 600 D
  1722. S
  1723. 870 300 M
  1724. -120 600 D
  1725. S
  1726. 900 450 M
  1727. -90 450 D
  1728. S
  1729. 900 750 M
  1730. -30 150 D
  1731. S
  1732. PSL_cliprestore
  1733. %%EndObject
  1734. 0 A
  1735. FQ
  1736. O0
  1737. -5669 -1890 TM
  1738. % PostScript produced by:
  1739. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-0.5/2.5/-0.5/2.5 -X-12c -Y-4c
  1740. %@PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy
  1741. %%BeginObject PSL_Layer_15
  1742. 0 setlinecap
  1743. 0 setlinejoin
  1744. 3.32551 setmiterlimit
  1745. clipsave
  1746. 0 0 M
  1747. 1200 0 D
  1748. 0 1200 D
  1749. -1200 0 D
  1750. P
  1751. PSL_clip N
  1752. V N 200 200 T 800 800 scale [/Indexed /DeviceRGB 12 <
  1753. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFCE00FF>] setcolorspace
  1754. << /ImageType 1 /Decode [0 15] /Width 33 /Height 33 /BitsPerComponent 4
  1755. /ImageMatrix [33 0 0 -33 0 33] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  1756. >> image
  1757. G[=\$]+ooO(^A>@!fVXSi!;"<Ndr?>Bo*'%>=dc[p)-/O11,(m^Y2mt=#Y!Jotra`o<KG#gI8V+*"4dA'2SdWL5KDO\,u($
  1758. Xah5(#Zq`sJ:YKB=9s065GfnQcN's`6!"H@bQh&]OCnl121htHTU?=f.O!'F@&a3,,q-)OR-OZ.eI8/Z:fW*&MkI-JcVu!9
  1759. ]`YQE~>
  1760. U
  1761. PSL_cliprestore
  1762. 25 W
  1763. 2 setlinecap
  1764. N 0 1200 M 0 -1200 D S
  1765. /PSL_A0_y 83 def
  1766. /PSL_A1_y 0 def
  1767. 8 W
  1768. N 0 200 M -83 0 D S
  1769. N 0 600 M -83 0 D S
  1770. N 0 1000 M -83 0 D S
  1771. /PSL_AH0 0
  1772. /MM {neg exch M} def
  1773. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1774. 167 F0
  1775. (0) sw mx
  1776. (1) sw mx
  1777. (2) sw mx
  1778. def
  1779. /PSL_A0_y PSL_A0_y 83 add def
  1780. 200 PSL_A0_y MM
  1781. (0) mr Z
  1782. 600 PSL_A0_y MM
  1783. (1) mr Z
  1784. 1000 PSL_A0_y MM
  1785. (2) mr Z
  1786. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1787. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1788. 1200 0 T
  1789. 25 W
  1790. N 0 1200 M 0 -1200 D S
  1791. /PSL_A0_y 83 def
  1792. /PSL_A1_y 0 def
  1793. 8 W
  1794. N 0 200 M 83 0 D S
  1795. N 0 600 M 83 0 D S
  1796. N 0 1000 M 83 0 D S
  1797. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1798. -1200 0 T
  1799. 25 W
  1800. N 0 0 M 1200 0 D S
  1801. /PSL_A0_y 83 def
  1802. /PSL_A1_y 0 def
  1803. 8 W
  1804. N 200 0 M 0 -83 D S
  1805. N 600 0 M 0 -83 D S
  1806. N 1000 0 M 0 -83 D S
  1807. /PSL_AH0 0
  1808. /MM {neg M} def
  1809. (0) sh mx
  1810. (1) sh mx
  1811. (2) sh mx
  1812. def
  1813. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1814. 200 PSL_A0_y MM
  1815. (0) bc Z
  1816. 600 PSL_A0_y MM
  1817. (1) bc Z
  1818. 1000 PSL_A0_y MM
  1819. (2) bc Z
  1820. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1821. 0 1200 T
  1822. 25 W
  1823. N 0 0 M 1200 0 D S
  1824. /PSL_A0_y 83 def
  1825. /PSL_A1_y 0 def
  1826. 8 W
  1827. N 200 0 M 0 83 D S
  1828. N 600 0 M 0 83 D S
  1829. N 1000 0 M 0 83 D S
  1830. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1831. 0 -1200 T
  1832. 0 setlinecap
  1833. %%EndObject
  1834. 0 A
  1835. FQ
  1836. O0
  1837. 0 0 TM
  1838. % PostScript produced by:
  1839. %@GMT: gmt grdcontour t.nc -Ct.cpt -JX1i -R-0.5/2.5/-0.5/2.5 -O -K
  1840. %@PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy
  1841. %%BeginObject PSL_Layer_16
  1842. 0 setlinecap
  1843. 0 setlinejoin
  1844. 3.32551 setmiterlimit
  1845. clipsave
  1846. 0 0 M
  1847. 1200 0 D
  1848. 0 1200 D
  1849. -1200 0 D
  1850. P
  1851. PSL_clip N
  1852. 12 W
  1853. 240 200 M
  1854. -40 200 D
  1855. S
  1856. 320 200 M
  1857. -120 600 D
  1858. S
  1859. 400 200 M
  1860. -160 800 D
  1861. S
  1862. 480 200 M
  1863. -160 800 D
  1864. S
  1865. 560 200 M
  1866. -160 800 D
  1867. S
  1868. 640 200 M
  1869. -160 800 D
  1870. S
  1871. 720 200 M
  1872. -160 800 D
  1873. S
  1874. 800 200 M
  1875. -160 800 D
  1876. S
  1877. 880 200 M
  1878. -160 800 D
  1879. S
  1880. 960 200 M
  1881. -160 800 D
  1882. S
  1883. 1000 400 M
  1884. -120 600 D
  1885. S
  1886. 1000 800 M
  1887. -40 200 D
  1888. S
  1889. PSL_cliprestore
  1890. %%EndObject
  1891. 0 A
  1892. FQ
  1893. O0
  1894. 0 0 TM
  1895. % PostScript produced by:
  1896. %@GMT: gmt pstext -R-0.5/2.5/-0.5/2.5 -JX1i -N -F+f10p+jBR -O -K
  1897. %@PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy
  1898. %%BeginObject PSL_Layer_17
  1899. 0 setlinecap
  1900. 0 setlinejoin
  1901. 3.32551 setmiterlimit
  1902. -360 800 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1903. 167 F0
  1904. (grdmath) br Z
  1905. -360 600 M (grdimage -E50) br Z
  1906. %%EndObject
  1907. 0 A
  1908. FQ
  1909. O0
  1910. 1890 0 TM
  1911. % PostScript produced by:
  1912. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R0/2/0/2 -X4c
  1913. %@PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy
  1914. %%BeginObject PSL_Layer_18
  1915. 0 setlinecap
  1916. 0 setlinejoin
  1917. 3.32551 setmiterlimit
  1918. clipsave
  1919. 0 0 M
  1920. 1200 0 D
  1921. 0 1200 D
  1922. -1200 0 D
  1923. P
  1924. PSL_clip N
  1925. V N 0 0 T 1200 1200 scale [/Indexed /DeviceRGB 12 <
  1926. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFCE00FF>] setcolorspace
  1927. << /ImageType 1 /Decode [0 15] /Width 50 /Height 50 /BitsPerComponent 4
  1928. /ImageMatrix [50 0 0 -50 0 50] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  1929. >> image
  1930. G[A)/0`cei#R/R2!_,-o?j)F=&MO8U^^(dnak[4@aoneqI`lL/;=>1)aJ*FX\ORX-=$o4t)LH+g79!>EpH9_l`'D^:^g4>Z
  1931. n5LtF<%SAT/IW=F"M@_B!FOAD^^jp:K\l~>
  1932. U
  1933. PSL_cliprestore
  1934. 25 W
  1935. 2 setlinecap
  1936. N 0 1200 M 0 -1200 D S
  1937. /PSL_A0_y 83 def
  1938. /PSL_A1_y 0 def
  1939. 8 W
  1940. N 0 0 M -83 0 D S
  1941. N 0 600 M -83 0 D S
  1942. N 0 1200 M -83 0 D S
  1943. /PSL_AH0 0
  1944. /MM {neg exch M} def
  1945. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1946. 167 F0
  1947. (0) sw mx
  1948. (1) sw mx
  1949. (2) sw mx
  1950. def
  1951. /PSL_A0_y PSL_A0_y 83 add def
  1952. 0 PSL_A0_y MM
  1953. (0) mr Z
  1954. 600 PSL_A0_y MM
  1955. (1) mr Z
  1956. 1200 PSL_A0_y MM
  1957. (2) mr Z
  1958. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1959. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1960. 1200 0 T
  1961. 25 W
  1962. N 0 1200 M 0 -1200 D S
  1963. /PSL_A0_y 83 def
  1964. /PSL_A1_y 0 def
  1965. 8 W
  1966. N 0 0 M 83 0 D S
  1967. N 0 600 M 83 0 D S
  1968. N 0 1200 M 83 0 D S
  1969. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1970. -1200 0 T
  1971. 25 W
  1972. N 0 0 M 1200 0 D S
  1973. /PSL_A0_y 83 def
  1974. /PSL_A1_y 0 def
  1975. 8 W
  1976. N 0 0 M 0 -83 D S
  1977. N 600 0 M 0 -83 D S
  1978. N 1200 0 M 0 -83 D S
  1979. /PSL_AH0 0
  1980. /MM {neg M} def
  1981. (0) sh mx
  1982. (1) sh mx
  1983. (2) sh mx
  1984. def
  1985. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1986. 0 PSL_A0_y MM
  1987. (0) bc Z
  1988. 600 PSL_A0_y MM
  1989. (1) bc Z
  1990. 1200 PSL_A0_y MM
  1991. (2) bc Z
  1992. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1993. 0 1200 T
  1994. 25 W
  1995. N 0 0 M 1200 0 D S
  1996. /PSL_A0_y 83 def
  1997. /PSL_A1_y 0 def
  1998. 8 W
  1999. N 0 0 M 0 83 D S
  2000. N 600 0 M 0 83 D S
  2001. N 1200 0 M 0 83 D S
  2002. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2003. 0 -1200 T
  2004. 0 setlinecap
  2005. %%EndObject
  2006. 0 A
  2007. FQ
  2008. O0
  2009. 0 0 TM
  2010. % PostScript produced by:
  2011. %@GMT: gmt grdcontour t.nc -Ct.cpt -JX1i -R0/2/0/2 -O -K
  2012. %@PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy
  2013. %%BeginObject PSL_Layer_19
  2014. 0 setlinecap
  2015. 0 setlinejoin
  2016. 3.32551 setmiterlimit
  2017. clipsave
  2018. 0 0 M
  2019. 1200 0 D
  2020. 0 1200 D
  2021. -1200 0 D
  2022. P
  2023. PSL_clip N
  2024. 12 W
  2025. 60 0 M
  2026. -60 300 D
  2027. S
  2028. 180 0 M
  2029. -180 900 D
  2030. S
  2031. 300 0 M
  2032. -240 1200 D
  2033. S
  2034. 420 0 M
  2035. -240 1200 D
  2036. S
  2037. 540 0 M
  2038. -240 1200 D
  2039. S
  2040. 660 0 M
  2041. -240 1200 D
  2042. S
  2043. 780 0 M
  2044. -240 1200 D
  2045. S
  2046. 900 0 M
  2047. -240 1200 D
  2048. S
  2049. 1020 0 M
  2050. -240 1200 D
  2051. S
  2052. 1140 0 M
  2053. -240 1200 D
  2054. S
  2055. 1200 300 M
  2056. -180 900 D
  2057. S
  2058. 1200 900 M
  2059. -60 300 D
  2060. S
  2061. PSL_cliprestore
  2062. %%EndObject
  2063. 0 A
  2064. FQ
  2065. O0
  2066. 1890 0 TM
  2067. % PostScript produced by:
  2068. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-0.5/1.5/0/2 -X4c
  2069. %@PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy
  2070. %%BeginObject PSL_Layer_20
  2071. 0 setlinecap
  2072. 0 setlinejoin
  2073. 3.32551 setmiterlimit
  2074. clipsave
  2075. 0 0 M
  2076. 1200 0 D
  2077. 0 1200 D
  2078. -1200 0 D
  2079. P
  2080. PSL_clip N
  2081. V N 300 0 T 1200 1200 scale [/Indexed /DeviceRGB 12 <
  2082. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFCE00FF>] setcolorspace
  2083. << /ImageType 1 /Decode [0 15] /Width 50 /Height 50 /BitsPerComponent 4
  2084. /ImageMatrix [50 0 0 -50 0 50] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  2085. >> image
  2086. G[A)/0`cei#R/R2!_,-o?j)F=&MO8U^^(dnak[4@aoneqI`lL/;=>1)aJ*FX\ORX-=$o4t)LH+g79!>EpH9_l`'D^:^g4>Z
  2087. n5LtF<%SAT/IW=F"M@_B!FOAD^^jp:K\l~>
  2088. U
  2089. PSL_cliprestore
  2090. 25 W
  2091. 2 setlinecap
  2092. N 0 1200 M 0 -1200 D S
  2093. /PSL_A0_y 83 def
  2094. /PSL_A1_y 0 def
  2095. 8 W
  2096. N 0 0 M -83 0 D S
  2097. N 0 600 M -83 0 D S
  2098. N 0 1200 M -83 0 D S
  2099. /PSL_AH0 0
  2100. /MM {neg exch M} def
  2101. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2102. 167 F0
  2103. (0) sw mx
  2104. (1) sw mx
  2105. (2) sw mx
  2106. def
  2107. /PSL_A0_y PSL_A0_y 83 add def
  2108. 0 PSL_A0_y MM
  2109. (0) mr Z
  2110. 600 PSL_A0_y MM
  2111. (1) mr Z
  2112. 1200 PSL_A0_y MM
  2113. (2) mr Z
  2114. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2115. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2116. 1200 0 T
  2117. 25 W
  2118. N 0 1200 M 0 -1200 D S
  2119. /PSL_A0_y 83 def
  2120. /PSL_A1_y 0 def
  2121. 8 W
  2122. N 0 0 M 83 0 D S
  2123. N 0 600 M 83 0 D S
  2124. N 0 1200 M 83 0 D S
  2125. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2126. -1200 0 T
  2127. 25 W
  2128. N 0 0 M 1200 0 D S
  2129. /PSL_A0_y 83 def
  2130. /PSL_A1_y 0 def
  2131. 8 W
  2132. N 300 0 M 0 -83 D S
  2133. N 900 0 M 0 -83 D S
  2134. /PSL_AH0 0
  2135. /MM {neg M} def
  2136. (0) sh mx
  2137. (1) sh mx
  2138. def
  2139. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2140. 300 PSL_A0_y MM
  2141. (0) bc Z
  2142. 900 PSL_A0_y MM
  2143. (1) bc Z
  2144. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2145. 0 1200 T
  2146. 25 W
  2147. N 0 0 M 1200 0 D S
  2148. /PSL_A0_y 83 def
  2149. /PSL_A1_y 0 def
  2150. 8 W
  2151. N 300 0 M 0 83 D S
  2152. N 900 0 M 0 83 D S
  2153. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2154. 0 -1200 T
  2155. 0 setlinecap
  2156. %%EndObject
  2157. 0 A
  2158. FQ
  2159. O0
  2160. 0 0 TM
  2161. % PostScript produced by:
  2162. %@GMT: gmt grdcontour t.nc -Ct.cpt -JX1i -R-0.5/1.5/0/2 -O -K
  2163. %@PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy
  2164. %%BeginObject PSL_Layer_21
  2165. 0 setlinecap
  2166. 0 setlinejoin
  2167. 3.32551 setmiterlimit
  2168. clipsave
  2169. 0 0 M
  2170. 1200 0 D
  2171. 0 1200 D
  2172. -1200 0 D
  2173. P
  2174. PSL_clip N
  2175. 12 W
  2176. 360 0 M
  2177. -60 300 D
  2178. S
  2179. 480 0 M
  2180. -180 900 D
  2181. S
  2182. 600 0 M
  2183. -240 1200 D
  2184. S
  2185. 720 0 M
  2186. -240 1200 D
  2187. S
  2188. 840 0 M
  2189. -240 1200 D
  2190. S
  2191. 960 0 M
  2192. -240 1200 D
  2193. S
  2194. 1080 0 M
  2195. -240 1200 D
  2196. S
  2197. 1200 0 M
  2198. -240 1200 D
  2199. S
  2200. 1200 600 M
  2201. -120 600 D
  2202. S
  2203. 1200 1200 M
  2204. 0 0 D
  2205. P S
  2206. PSL_cliprestore
  2207. %%EndObject
  2208. 0 A
  2209. FQ
  2210. O0
  2211. 1890 0 TM
  2212. % PostScript produced by:
  2213. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-1/3/-1/3 -X4c
  2214. %@PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy
  2215. %%BeginObject PSL_Layer_22
  2216. 0 setlinecap
  2217. 0 setlinejoin
  2218. 3.32551 setmiterlimit
  2219. clipsave
  2220. 0 0 M
  2221. 1200 0 D
  2222. 0 1200 D
  2223. -1200 0 D
  2224. P
  2225. PSL_clip N
  2226. V N 300 300 T 600 600 scale [/Indexed /DeviceRGB 12 <
  2227. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFCE00FF>] setcolorspace
  2228. << /ImageType 1 /Decode [0 15] /Width 25 /Height 25 /BitsPerComponent 4
  2229. /ImageMatrix [25 0 0 -25 0 25] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  2230. >> image
  2231. G[=ko<&-@O%8A@Vka]265u:/+`$I5l]qPTn7nD=c,r@0d]OU(,<">[bP-Kp\=B]u?-Z75r%?(Qsd5XZ4iSj,mZ5&p_Yc&KO
  2232. #K^!\:=!W"Mst_JCi'.PmBL=^~>
  2233. U
  2234. PSL_cliprestore
  2235. 25 W
  2236. 2 setlinecap
  2237. N 0 1200 M 0 -1200 D S
  2238. /PSL_A0_y 83 def
  2239. /PSL_A1_y 0 def
  2240. 8 W
  2241. N 0 0 M -83 0 D S
  2242. N 0 300 M -83 0 D S
  2243. N 0 600 M -83 0 D S
  2244. N 0 900 M -83 0 D S
  2245. N 0 1200 M -83 0 D S
  2246. /PSL_AH0 0
  2247. /MM {neg exch M} def
  2248. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2249. 167 F0
  2250. (”1) sw mx
  2251. (0) sw mx
  2252. (1) sw mx
  2253. (2) sw mx
  2254. (3) sw mx
  2255. def
  2256. /PSL_A0_y PSL_A0_y 83 add def
  2257. 0 PSL_A0_y MM
  2258. (”1) mr Z
  2259. 300 PSL_A0_y MM
  2260. (0) mr Z
  2261. 600 PSL_A0_y MM
  2262. (1) mr Z
  2263. 900 PSL_A0_y MM
  2264. (2) mr Z
  2265. 1200 PSL_A0_y MM
  2266. (3) mr Z
  2267. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2268. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2269. 1200 0 T
  2270. 25 W
  2271. N 0 1200 M 0 -1200 D S
  2272. /PSL_A0_y 83 def
  2273. /PSL_A1_y 0 def
  2274. 8 W
  2275. N 0 0 M 83 0 D S
  2276. N 0 300 M 83 0 D S
  2277. N 0 600 M 83 0 D S
  2278. N 0 900 M 83 0 D S
  2279. N 0 1200 M 83 0 D S
  2280. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2281. -1200 0 T
  2282. 25 W
  2283. N 0 0 M 1200 0 D S
  2284. /PSL_A0_y 83 def
  2285. /PSL_A1_y 0 def
  2286. 8 W
  2287. N 0 0 M 0 -83 D S
  2288. N 300 0 M 0 -83 D S
  2289. N 600 0 M 0 -83 D S
  2290. N 900 0 M 0 -83 D S
  2291. N 1200 0 M 0 -83 D S
  2292. /PSL_AH0 0
  2293. /MM {neg M} def
  2294. (”1) sh mx
  2295. (0) sh mx
  2296. (1) sh mx
  2297. (2) sh mx
  2298. (3) sh mx
  2299. def
  2300. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2301. 0 PSL_A0_y MM
  2302. (”1) bc Z
  2303. 300 PSL_A0_y MM
  2304. (0) bc Z
  2305. 600 PSL_A0_y MM
  2306. (1) bc Z
  2307. 900 PSL_A0_y MM
  2308. (2) bc Z
  2309. 1200 PSL_A0_y MM
  2310. (3) bc Z
  2311. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2312. 0 1200 T
  2313. 25 W
  2314. N 0 0 M 1200 0 D S
  2315. /PSL_A0_y 83 def
  2316. /PSL_A1_y 0 def
  2317. 8 W
  2318. N 0 0 M 0 83 D S
  2319. N 300 0 M 0 83 D S
  2320. N 600 0 M 0 83 D S
  2321. N 900 0 M 0 83 D S
  2322. N 1200 0 M 0 83 D S
  2323. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2324. 0 -1200 T
  2325. 0 setlinecap
  2326. %%EndObject
  2327. 0 A
  2328. FQ
  2329. O0
  2330. 0 0 TM
  2331. % PostScript produced by:
  2332. %@GMT: gmt grdcontour t.nc -Ct.cpt -JX1i -R-1/3/-1/3 -O -K
  2333. %@PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy
  2334. %%BeginObject PSL_Layer_23
  2335. 0 setlinecap
  2336. 0 setlinejoin
  2337. 3.32551 setmiterlimit
  2338. clipsave
  2339. 0 0 M
  2340. 1200 0 D
  2341. 0 1200 D
  2342. -1200 0 D
  2343. P
  2344. PSL_clip N
  2345. 12 W
  2346. 330 300 M
  2347. -30 150 D
  2348. S
  2349. 390 300 M
  2350. -90 450 D
  2351. S
  2352. 450 300 M
  2353. -120 600 D
  2354. S
  2355. 510 300 M
  2356. -120 600 D
  2357. S
  2358. 570 300 M
  2359. -120 600 D
  2360. S
  2361. 630 300 M
  2362. -120 600 D
  2363. S
  2364. 690 300 M
  2365. -120 600 D
  2366. S
  2367. 750 300 M
  2368. -120 600 D
  2369. S
  2370. 810 300 M
  2371. -120 600 D
  2372. S
  2373. 870 300 M
  2374. -120 600 D
  2375. S
  2376. 900 450 M
  2377. -90 450 D
  2378. S
  2379. 900 750 M
  2380. -30 150 D
  2381. S
  2382. PSL_cliprestore
  2383. %%EndObject
  2384. 0 A
  2385. FQ
  2386. O0
  2387. -5669 -1890 TM
  2388. % PostScript produced by:
  2389. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -K -R-0.5/2.5/-0.5/2.5 -O -X-12c -Y-4c
  2390. %@PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy
  2391. %%BeginObject PSL_Layer_24
  2392. 0 setlinecap
  2393. 0 setlinejoin
  2394. 3.32551 setmiterlimit
  2395. clipsave
  2396. 0 0 M
  2397. 1200 0 D
  2398. 0 1200 D
  2399. -1200 0 D
  2400. P
  2401. PSL_clip N
  2402. V N 0 0 T 1200 1200 scale /DeviceRGB setcolorspace
  2403. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 3 /Height 3 /BitsPerComponent 8
  2404. /ImageMatrix [3 0 0 -3 0 3] /DataSource currentfile /ASCII85Decode filter
  2405. >> image
  2406. $3:)+ruM+o!,MZ8!<7TLP5rl.rrE)Ys7H?~>
  2407. U
  2408. PSL_cliprestore
  2409. 25 W
  2410. 2 setlinecap
  2411. N 0 1200 M 0 -1200 D S
  2412. /PSL_A0_y 83 def
  2413. /PSL_A1_y 0 def
  2414. 8 W
  2415. N 0 200 M -83 0 D S
  2416. N 0 600 M -83 0 D S
  2417. N 0 1000 M -83 0 D S
  2418. /PSL_AH0 0
  2419. /MM {neg exch M} def
  2420. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2421. 167 F0
  2422. (0) sw mx
  2423. (1) sw mx
  2424. (2) sw mx
  2425. def
  2426. /PSL_A0_y PSL_A0_y 83 add def
  2427. 200 PSL_A0_y MM
  2428. (0) mr Z
  2429. 600 PSL_A0_y MM
  2430. (1) mr Z
  2431. 1000 PSL_A0_y MM
  2432. (2) mr Z
  2433. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2434. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2435. 1200 0 T
  2436. 25 W
  2437. N 0 1200 M 0 -1200 D S
  2438. /PSL_A0_y 83 def
  2439. /PSL_A1_y 0 def
  2440. 8 W
  2441. N 0 200 M 83 0 D S
  2442. N 0 600 M 83 0 D S
  2443. N 0 1000 M 83 0 D S
  2444. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2445. -1200 0 T
  2446. 25 W
  2447. N 0 0 M 1200 0 D S
  2448. /PSL_A0_y 83 def
  2449. /PSL_A1_y 0 def
  2450. 8 W
  2451. N 200 0 M 0 -83 D S
  2452. N 600 0 M 0 -83 D S
  2453. N 1000 0 M 0 -83 D S
  2454. /PSL_AH0 0
  2455. /MM {neg M} def
  2456. (0) sh mx
  2457. (1) sh mx
  2458. (2) sh mx
  2459. def
  2460. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2461. 200 PSL_A0_y MM
  2462. (0) bc Z
  2463. 600 PSL_A0_y MM
  2464. (1) bc Z
  2465. 1000 PSL_A0_y MM
  2466. (2) bc Z
  2467. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2468. 0 1200 T
  2469. 25 W
  2470. N 0 0 M 1200 0 D S
  2471. /PSL_A0_y 83 def
  2472. /PSL_A1_y 0 def
  2473. 8 W
  2474. N 200 0 M 0 83 D S
  2475. N 600 0 M 0 83 D S
  2476. N 1000 0 M 0 83 D S
  2477. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2478. 0 -1200 T
  2479. 0 setlinecap
  2480. %%EndObject
  2481. 0 A
  2482. FQ
  2483. O0
  2484. 0 0 TM
  2485. % PostScript produced by:
  2486. %@GMT: gmt pstext -R-0.5/2.5/-0.5/2.5 -JX1i -N -F+f10p+jBR -O -K
  2487. %@PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy
  2488. %%BeginObject PSL_Layer_25
  2489. 0 setlinecap
  2490. 0 setlinejoin
  2491. 3.32551 setmiterlimit
  2492. -360 800 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2493. 167 F0
  2494. (grdmath -r) br Z
  2495. -360 600 M (grdimage) br Z
  2496. %%EndObject
  2497. 0 A
  2498. FQ
  2499. O0
  2500. 1890 0 TM
  2501. % PostScript produced by:
  2502. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -O -K -R0/2/0/2 -X4c
  2503. %@PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy
  2504. %%BeginObject PSL_Layer_26
  2505. 0 setlinecap
  2506. 0 setlinejoin
  2507. 3.32551 setmiterlimit
  2508. clipsave
  2509. 0 0 M
  2510. 1200 0 D
  2511. 0 1200 D
  2512. -1200 0 D
  2513. P
  2514. PSL_clip N
  2515. V N -300 -300 T 1800 1800 scale /DeviceRGB setcolorspace
  2516. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 3 /Height 3 /BitsPerComponent 8
  2517. /ImageMatrix [3 0 0 -3 0 3] /DataSource currentfile /ASCII85Decode filter
  2518. >> image
  2519. $3:)+ruM+o!,MZ8!<7TLP5rl.rrE)Ys7H?~>
  2520. U
  2521. PSL_cliprestore
  2522. 25 W
  2523. 2 setlinecap
  2524. N 0 1200 M 0 -1200 D S
  2525. /PSL_A0_y 83 def
  2526. /PSL_A1_y 0 def
  2527. 8 W
  2528. N 0 0 M -83 0 D S
  2529. N 0 600 M -83 0 D S
  2530. N 0 1200 M -83 0 D S
  2531. /PSL_AH0 0
  2532. /MM {neg exch M} def
  2533. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2534. 167 F0
  2535. (0) sw mx
  2536. (1) sw mx
  2537. (2) sw mx
  2538. def
  2539. /PSL_A0_y PSL_A0_y 83 add def
  2540. 0 PSL_A0_y MM
  2541. (0) mr Z
  2542. 600 PSL_A0_y MM
  2543. (1) mr Z
  2544. 1200 PSL_A0_y MM
  2545. (2) mr Z
  2546. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2547. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2548. 1200 0 T
  2549. 25 W
  2550. N 0 1200 M 0 -1200 D S
  2551. /PSL_A0_y 83 def
  2552. /PSL_A1_y 0 def
  2553. 8 W
  2554. N 0 0 M 83 0 D S
  2555. N 0 600 M 83 0 D S
  2556. N 0 1200 M 83 0 D S
  2557. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2558. -1200 0 T
  2559. 25 W
  2560. N 0 0 M 1200 0 D S
  2561. /PSL_A0_y 83 def
  2562. /PSL_A1_y 0 def
  2563. 8 W
  2564. N 0 0 M 0 -83 D S
  2565. N 600 0 M 0 -83 D S
  2566. N 1200 0 M 0 -83 D S
  2567. /PSL_AH0 0
  2568. /MM {neg M} def
  2569. (0) sh mx
  2570. (1) sh mx
  2571. (2) sh mx
  2572. def
  2573. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2574. 0 PSL_A0_y MM
  2575. (0) bc Z
  2576. 600 PSL_A0_y MM
  2577. (1) bc Z
  2578. 1200 PSL_A0_y MM
  2579. (2) bc Z
  2580. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2581. 0 1200 T
  2582. 25 W
  2583. N 0 0 M 1200 0 D S
  2584. /PSL_A0_y 83 def
  2585. /PSL_A1_y 0 def
  2586. 8 W
  2587. N 0 0 M 0 83 D S
  2588. N 600 0 M 0 83 D S
  2589. N 1200 0 M 0 83 D S
  2590. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2591. 0 -1200 T
  2592. 0 setlinecap
  2593. %%EndObject
  2594. 0 A
  2595. FQ
  2596. O0
  2597. 1890 0 TM
  2598. % PostScript produced by:
  2599. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -O -K -R-0.5/1.5/0/2 -X4c
  2600. %@PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy
  2601. %%BeginObject PSL_Layer_27
  2602. 0 setlinecap
  2603. 0 setlinejoin
  2604. 3.32551 setmiterlimit
  2605. clipsave
  2606. 0 0 M
  2607. 1200 0 D
  2608. 0 1200 D
  2609. -1200 0 D
  2610. P
  2611. PSL_clip N
  2612. V N 0 -300 T 1200 1800 scale /DeviceRGB setcolorspace
  2613. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 2 /Height 3 /BitsPerComponent 8
  2614. /ImageMatrix [2 0 0 -3 0 3] /DataSource currentfile /ASCII85Decode filter
  2615. >> image
  2616. $3:)+ruGnUrrE(Lc2dkEs5F~>
  2617. U
  2618. PSL_cliprestore
  2619. 25 W
  2620. 2 setlinecap
  2621. N 0 1200 M 0 -1200 D S
  2622. /PSL_A0_y 83 def
  2623. /PSL_A1_y 0 def
  2624. 8 W
  2625. N 0 0 M -83 0 D S
  2626. N 0 600 M -83 0 D S
  2627. N 0 1200 M -83 0 D S
  2628. /PSL_AH0 0
  2629. /MM {neg exch M} def
  2630. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2631. 167 F0
  2632. (0) sw mx
  2633. (1) sw mx
  2634. (2) sw mx
  2635. def
  2636. /PSL_A0_y PSL_A0_y 83 add def
  2637. 0 PSL_A0_y MM
  2638. (0) mr Z
  2639. 600 PSL_A0_y MM
  2640. (1) mr Z
  2641. 1200 PSL_A0_y MM
  2642. (2) mr Z
  2643. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2644. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2645. 1200 0 T
  2646. 25 W
  2647. N 0 1200 M 0 -1200 D S
  2648. /PSL_A0_y 83 def
  2649. /PSL_A1_y 0 def
  2650. 8 W
  2651. N 0 0 M 83 0 D S
  2652. N 0 600 M 83 0 D S
  2653. N 0 1200 M 83 0 D S
  2654. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2655. -1200 0 T
  2656. 25 W
  2657. N 0 0 M 1200 0 D S
  2658. /PSL_A0_y 83 def
  2659. /PSL_A1_y 0 def
  2660. 8 W
  2661. N 300 0 M 0 -83 D S
  2662. N 900 0 M 0 -83 D S
  2663. /PSL_AH0 0
  2664. /MM {neg M} def
  2665. (0) sh mx
  2666. (1) sh mx
  2667. def
  2668. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2669. 300 PSL_A0_y MM
  2670. (0) bc Z
  2671. 900 PSL_A0_y MM
  2672. (1) bc Z
  2673. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2674. 0 1200 T
  2675. 25 W
  2676. N 0 0 M 1200 0 D S
  2677. /PSL_A0_y 83 def
  2678. /PSL_A1_y 0 def
  2679. 8 W
  2680. N 300 0 M 0 83 D S
  2681. N 900 0 M 0 83 D S
  2682. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2683. 0 -1200 T
  2684. 0 setlinecap
  2685. %%EndObject
  2686. 0 A
  2687. FQ
  2688. O0
  2689. 1890 0 TM
  2690. % PostScript produced by:
  2691. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -O -K -R-1/3/-1/3 -X4c
  2692. %@PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy
  2693. %%BeginObject PSL_Layer_28
  2694. 0 setlinecap
  2695. 0 setlinejoin
  2696. 3.32551 setmiterlimit
  2697. clipsave
  2698. 0 0 M
  2699. 1200 0 D
  2700. 0 1200 D
  2701. -1200 0 D
  2702. P
  2703. PSL_clip N
  2704. V N 150 150 T 900 900 scale /DeviceRGB setcolorspace
  2705. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 3 /Height 3 /BitsPerComponent 8
  2706. /ImageMatrix [3 0 0 -3 0 3] /DataSource currentfile /ASCII85Decode filter
  2707. >> image
  2708. $3:)+ruM+o!,MZ8!<7TLP5rl.rrE)Ys7H?~>
  2709. U
  2710. PSL_cliprestore
  2711. 25 W
  2712. 2 setlinecap
  2713. N 0 1200 M 0 -1200 D S
  2714. /PSL_A0_y 83 def
  2715. /PSL_A1_y 0 def
  2716. 8 W
  2717. N 0 0 M -83 0 D S
  2718. N 0 300 M -83 0 D S
  2719. N 0 600 M -83 0 D S
  2720. N 0 900 M -83 0 D S
  2721. N 0 1200 M -83 0 D S
  2722. /PSL_AH0 0
  2723. /MM {neg exch M} def
  2724. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2725. 167 F0
  2726. (”1) sw mx
  2727. (0) sw mx
  2728. (1) sw mx
  2729. (2) sw mx
  2730. (3) sw mx
  2731. def
  2732. /PSL_A0_y PSL_A0_y 83 add def
  2733. 0 PSL_A0_y MM
  2734. (”1) mr Z
  2735. 300 PSL_A0_y MM
  2736. (0) mr Z
  2737. 600 PSL_A0_y MM
  2738. (1) mr Z
  2739. 900 PSL_A0_y MM
  2740. (2) mr Z
  2741. 1200 PSL_A0_y MM
  2742. (3) mr Z
  2743. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2744. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2745. 1200 0 T
  2746. 25 W
  2747. N 0 1200 M 0 -1200 D S
  2748. /PSL_A0_y 83 def
  2749. /PSL_A1_y 0 def
  2750. 8 W
  2751. N 0 0 M 83 0 D S
  2752. N 0 300 M 83 0 D S
  2753. N 0 600 M 83 0 D S
  2754. N 0 900 M 83 0 D S
  2755. N 0 1200 M 83 0 D S
  2756. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2757. -1200 0 T
  2758. 25 W
  2759. N 0 0 M 1200 0 D S
  2760. /PSL_A0_y 83 def
  2761. /PSL_A1_y 0 def
  2762. 8 W
  2763. N 0 0 M 0 -83 D S
  2764. N 300 0 M 0 -83 D S
  2765. N 600 0 M 0 -83 D S
  2766. N 900 0 M 0 -83 D S
  2767. N 1200 0 M 0 -83 D S
  2768. /PSL_AH0 0
  2769. /MM {neg M} def
  2770. (”1) sh mx
  2771. (0) sh mx
  2772. (1) sh mx
  2773. (2) sh mx
  2774. (3) sh mx
  2775. def
  2776. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2777. 0 PSL_A0_y MM
  2778. (”1) bc Z
  2779. 300 PSL_A0_y MM
  2780. (0) bc Z
  2781. 600 PSL_A0_y MM
  2782. (1) bc Z
  2783. 900 PSL_A0_y MM
  2784. (2) bc Z
  2785. 1200 PSL_A0_y MM
  2786. (3) bc Z
  2787. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2788. 0 1200 T
  2789. 25 W
  2790. N 0 0 M 1200 0 D S
  2791. /PSL_A0_y 83 def
  2792. /PSL_A1_y 0 def
  2793. 8 W
  2794. N 0 0 M 0 83 D S
  2795. N 300 0 M 0 83 D S
  2796. N 600 0 M 0 83 D S
  2797. N 900 0 M 0 83 D S
  2798. N 1200 0 M 0 83 D S
  2799. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2800. 0 -1200 T
  2801. 0 setlinecap
  2802. %%EndObject
  2803. 0 A
  2804. FQ
  2805. O0
  2806. -5669 -1890 TM
  2807. % PostScript produced by:
  2808. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-0.5/2.5/-0.5/2.5 -X-12c -Y-4c -nl
  2809. %@PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy
  2810. %%BeginObject PSL_Layer_29
  2811. 0 setlinecap
  2812. 0 setlinejoin
  2813. 3.32551 setmiterlimit
  2814. clipsave
  2815. 0 0 M
  2816. 1200 0 D
  2817. 0 1200 D
  2818. -1200 0 D
  2819. P
  2820. PSL_clip N
  2821. V N 0 0 T 1200 1200 scale [/Indexed /DeviceRGB 14 <
  2822. CE00FF6C00FF0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF3100FFFFFF000000>] setcolorspace
  2823. << /ImageType 1 /Decode [0 15] /Width 50 /Height 50 /BitsPerComponent 4
  2824. /ImageMatrix [50 0 0 -50 0 50] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  2825. >> image
  2826. G[?*P;%\CF'STtS!"gmd7Xta]!@+f\0EO^G,%(P4i63OX)<B)Y]';<-oD1WK1FLA(ZE!2emCM-`j63Cd=e=rb'oiW6Kr`'R
  2827. Kc32tTi^_F*#)-T(PS?qiuaKmXhp_bIm=+/Lu8uE%5LgP+gCUSdK<,QXH8%<F;&&nYX/gNh#s)tXH3N7ZiR!2.l;bjg47V*
  2828. 'cK=E+\WJ5]!+L/E+&h:_ts]^?!*d(3*j6+p[fPH.A4Noj#T[0~>
  2829. U
  2830. PSL_cliprestore
  2831. 25 W
  2832. 2 setlinecap
  2833. N 0 1200 M 0 -1200 D S
  2834. /PSL_A0_y 83 def
  2835. /PSL_A1_y 0 def
  2836. 8 W
  2837. N 0 200 M -83 0 D S
  2838. N 0 600 M -83 0 D S
  2839. N 0 1000 M -83 0 D S
  2840. /PSL_AH0 0
  2841. /MM {neg exch M} def
  2842. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2843. 167 F0
  2844. (0) sw mx
  2845. (1) sw mx
  2846. (2) sw mx
  2847. def
  2848. /PSL_A0_y PSL_A0_y 83 add def
  2849. 200 PSL_A0_y MM
  2850. (0) mr Z
  2851. 600 PSL_A0_y MM
  2852. (1) mr Z
  2853. 1000 PSL_A0_y MM
  2854. (2) mr Z
  2855. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2856. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2857. 1200 0 T
  2858. 25 W
  2859. N 0 1200 M 0 -1200 D S
  2860. /PSL_A0_y 83 def
  2861. /PSL_A1_y 0 def
  2862. 8 W
  2863. N 0 200 M 83 0 D S
  2864. N 0 600 M 83 0 D S
  2865. N 0 1000 M 83 0 D S
  2866. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2867. -1200 0 T
  2868. 25 W
  2869. N 0 0 M 1200 0 D S
  2870. /PSL_A0_y 83 def
  2871. /PSL_A1_y 0 def
  2872. 8 W
  2873. N 200 0 M 0 -83 D S
  2874. N 600 0 M 0 -83 D S
  2875. N 1000 0 M 0 -83 D S
  2876. /PSL_AH0 0
  2877. /MM {neg M} def
  2878. (0) sh mx
  2879. (1) sh mx
  2880. (2) sh mx
  2881. def
  2882. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2883. 200 PSL_A0_y MM
  2884. (0) bc Z
  2885. 600 PSL_A0_y MM
  2886. (1) bc Z
  2887. 1000 PSL_A0_y MM
  2888. (2) bc Z
  2889. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2890. 0 1200 T
  2891. 25 W
  2892. N 0 0 M 1200 0 D S
  2893. /PSL_A0_y 83 def
  2894. /PSL_A1_y 0 def
  2895. 8 W
  2896. N 200 0 M 0 83 D S
  2897. N 600 0 M 0 83 D S
  2898. N 1000 0 M 0 83 D S
  2899. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2900. 0 -1200 T
  2901. 0 setlinecap
  2902. %%EndObject
  2903. 0 A
  2904. FQ
  2905. O0
  2906. 0 0 TM
  2907. % PostScript produced by:
  2908. %@GMT: gmt grdcontour t.nc -Ct.cpt -JX1i -R-0.5/2.5/-0.5/2.5 -O -K
  2909. %@PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy
  2910. %%BeginObject PSL_Layer_30
  2911. 0 setlinecap
  2912. 0 setlinejoin
  2913. 3.32551 setmiterlimit
  2914. clipsave
  2915. 0 0 M
  2916. 1200 0 D
  2917. 0 1200 D
  2918. -1200 0 D
  2919. P
  2920. PSL_clip N
  2921. 12 W
  2922. 240 200 M
  2923. -40 200 D
  2924. S
  2925. 320 200 M
  2926. -120 600 D
  2927. S
  2928. 400 200 M
  2929. -160 800 D
  2930. S
  2931. 480 200 M
  2932. -160 800 D
  2933. S
  2934. 560 200 M
  2935. -160 800 D
  2936. S
  2937. 640 200 M
  2938. -160 800 D
  2939. S
  2940. 720 200 M
  2941. -160 800 D
  2942. S
  2943. 800 200 M
  2944. -160 800 D
  2945. S
  2946. 880 200 M
  2947. -160 800 D
  2948. S
  2949. 960 200 M
  2950. -160 800 D
  2951. S
  2952. 1000 400 M
  2953. -120 600 D
  2954. S
  2955. 1000 800 M
  2956. -40 200 D
  2957. S
  2958. PSL_cliprestore
  2959. %%EndObject
  2960. 0 A
  2961. FQ
  2962. O0
  2963. 0 0 TM
  2964. % PostScript produced by:
  2965. %@GMT: gmt pstext -R-0.5/2.5/-0.5/2.5 -JX1i -N -F+f10p+jBR -O -K
  2966. %@PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy
  2967. %%BeginObject PSL_Layer_31
  2968. 0 setlinecap
  2969. 0 setlinejoin
  2970. 3.32551 setmiterlimit
  2971. -360 800 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2972. 167 F0
  2973. (grdmath -r) br Z
  2974. -360 600 M (grdimage -E50 -nl) br Z
  2975. %%EndObject
  2976. 0 A
  2977. FQ
  2978. O0
  2979. 1890 0 TM
  2980. % PostScript produced by:
  2981. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R0/2/0/2 -X4c -nl
  2982. %@PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy
  2983. %%BeginObject PSL_Layer_32
  2984. 0 setlinecap
  2985. 0 setlinejoin
  2986. 3.32551 setmiterlimit
  2987. clipsave
  2988. 0 0 M
  2989. 1200 0 D
  2990. 0 1200 D
  2991. -1200 0 D
  2992. P
  2993. PSL_clip N
  2994. V N -300 -300 T 1800 1800 scale [/Indexed /DeviceRGB 14 <
  2995. CE00FF6C00FF0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF3100FFFFFF000000>] setcolorspace
  2996. << /ImageType 1 /Decode [0 15] /Width 75 /Height 75 /BitsPerComponent 4
  2997. /ImageMatrix [75 0 0 -75 0 75] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  2998. >> image
  2999. G[AY@5nSVi'LblXJ.XI:7_f9H!@(tTN.;Ko!\On3NWjMu?j=XSs"E88T?S+9PY*f:)q.sUgu*Sd;iE.W3L@$YJ#>P36HWI\
  3000. X]o;:m@Eit$mEVNV4?.8ckU%'<S\0u&lu]98R06&`)W=!@)\K9<fBU\78G*XH4jDDPL,2W4J3EHM63^J<4.-21-it~>
  3001. U
  3002. PSL_cliprestore
  3003. 25 W
  3004. 2 setlinecap
  3005. N 0 1200 M 0 -1200 D S
  3006. /PSL_A0_y 83 def
  3007. /PSL_A1_y 0 def
  3008. 8 W
  3009. N 0 0 M -83 0 D S
  3010. N 0 600 M -83 0 D S
  3011. N 0 1200 M -83 0 D S
  3012. /PSL_AH0 0
  3013. /MM {neg exch M} def
  3014. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  3015. 167 F0
  3016. (0) sw mx
  3017. (1) sw mx
  3018. (2) sw mx
  3019. def
  3020. /PSL_A0_y PSL_A0_y 83 add def
  3021. 0 PSL_A0_y MM
  3022. (0) mr Z
  3023. 600 PSL_A0_y MM
  3024. (1) mr Z
  3025. 1200 PSL_A0_y MM
  3026. (2) mr Z
  3027. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  3028. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3029. 1200 0 T
  3030. 25 W
  3031. N 0 1200 M 0 -1200 D S
  3032. /PSL_A0_y 83 def
  3033. /PSL_A1_y 0 def
  3034. 8 W
  3035. N 0 0 M 83 0 D S
  3036. N 0 600 M 83 0 D S
  3037. N 0 1200 M 83 0 D S
  3038. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3039. -1200 0 T
  3040. 25 W
  3041. N 0 0 M 1200 0 D S
  3042. /PSL_A0_y 83 def
  3043. /PSL_A1_y 0 def
  3044. 8 W
  3045. N 0 0 M 0 -83 D S
  3046. N 600 0 M 0 -83 D S
  3047. N 1200 0 M 0 -83 D S
  3048. /PSL_AH0 0
  3049. /MM {neg M} def
  3050. (0) sh mx
  3051. (1) sh mx
  3052. (2) sh mx
  3053. def
  3054. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  3055. 0 PSL_A0_y MM
  3056. (0) bc Z
  3057. 600 PSL_A0_y MM
  3058. (1) bc Z
  3059. 1200 PSL_A0_y MM
  3060. (2) bc Z
  3061. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3062. 0 1200 T
  3063. 25 W
  3064. N 0 0 M 1200 0 D S
  3065. /PSL_A0_y 83 def
  3066. /PSL_A1_y 0 def
  3067. 8 W
  3068. N 0 0 M 0 83 D S
  3069. N 600 0 M 0 83 D S
  3070. N 1200 0 M 0 83 D S
  3071. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3072. 0 -1200 T
  3073. 0 setlinecap
  3074. %%EndObject
  3075. 0 A
  3076. FQ
  3077. O0
  3078. 0 0 TM
  3079. % PostScript produced by:
  3080. %@GMT: gmt grdcontour t.nc -Ct.cpt -JX1i -R0/2/0/2 -O -K
  3081. %@PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy
  3082. %%BeginObject PSL_Layer_33
  3083. 0 setlinecap
  3084. 0 setlinejoin
  3085. 3.32551 setmiterlimit
  3086. clipsave
  3087. 0 0 M
  3088. 1200 0 D
  3089. 0 1200 D
  3090. -1200 0 D
  3091. P
  3092. PSL_clip N
  3093. 12 W
  3094. 60 0 M
  3095. -60 300 D
  3096. S
  3097. 180 0 M
  3098. -180 900 D
  3099. S
  3100. 300 0 M
  3101. -240 1200 D
  3102. S
  3103. 420 0 M
  3104. -240 1200 D
  3105. S
  3106. 540 0 M
  3107. -240 1200 D
  3108. S
  3109. 660 0 M
  3110. -240 1200 D
  3111. S
  3112. 780 0 M
  3113. -240 1200 D
  3114. S
  3115. 900 0 M
  3116. -240 1200 D
  3117. S
  3118. 1020 0 M
  3119. -240 1200 D
  3120. S
  3121. 1140 0 M
  3122. -240 1200 D
  3123. S
  3124. 1200 300 M
  3125. -180 900 D
  3126. S
  3127. 1200 900 M
  3128. -60 300 D
  3129. S
  3130. PSL_cliprestore
  3131. %%EndObject
  3132. 0 A
  3133. FQ
  3134. O0
  3135. 1890 0 TM
  3136. % PostScript produced by:
  3137. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-0.5/1.5/0/2 -X4c -nl
  3138. %@PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy
  3139. %%BeginObject PSL_Layer_34
  3140. 0 setlinecap
  3141. 0 setlinejoin
  3142. 3.32551 setmiterlimit
  3143. clipsave
  3144. 0 0 M
  3145. 1200 0 D
  3146. 0 1200 D
  3147. -1200 0 D
  3148. P
  3149. PSL_clip N
  3150. V N 0 -300 T 1800 1800 scale [/Indexed /DeviceRGB 14 <
  3151. CE00FF6C00FF0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF3100FFFFFF000000>] setcolorspace
  3152. << /ImageType 1 /Decode [0 15] /Width 75 /Height 75 /BitsPerComponent 4
  3153. /ImageMatrix [75 0 0 -75 0 75] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  3154. >> image
  3155. G[AY@5nSVi'LblXJ.XI:7_f9H!@(tTN.;Ko!\On3NWjMu?j=XSs"E88T?S+9PY*f:)q.sUgu*Sd;iE.W3L@$YJ#>P36HWI\
  3156. X]o;:m@Eit$mEVNV4?.8ckU%'<S\0u&lu]98R06&`)W=!@)\K9<fBU\78G*XH4jDDPL,2W4J3EHM63^J<4.-21-it~>
  3157. U
  3158. PSL_cliprestore
  3159. 25 W
  3160. 2 setlinecap
  3161. N 0 1200 M 0 -1200 D S
  3162. /PSL_A0_y 83 def
  3163. /PSL_A1_y 0 def
  3164. 8 W
  3165. N 0 0 M -83 0 D S
  3166. N 0 600 M -83 0 D S
  3167. N 0 1200 M -83 0 D S
  3168. /PSL_AH0 0
  3169. /MM {neg exch M} def
  3170. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  3171. 167 F0
  3172. (0) sw mx
  3173. (1) sw mx
  3174. (2) sw mx
  3175. def
  3176. /PSL_A0_y PSL_A0_y 83 add def
  3177. 0 PSL_A0_y MM
  3178. (0) mr Z
  3179. 600 PSL_A0_y MM
  3180. (1) mr Z
  3181. 1200 PSL_A0_y MM
  3182. (2) mr Z
  3183. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  3184. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3185. 1200 0 T
  3186. 25 W
  3187. N 0 1200 M 0 -1200 D S
  3188. /PSL_A0_y 83 def
  3189. /PSL_A1_y 0 def
  3190. 8 W
  3191. N 0 0 M 83 0 D S
  3192. N 0 600 M 83 0 D S
  3193. N 0 1200 M 83 0 D S
  3194. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3195. -1200 0 T
  3196. 25 W
  3197. N 0 0 M 1200 0 D S
  3198. /PSL_A0_y 83 def
  3199. /PSL_A1_y 0 def
  3200. 8 W
  3201. N 300 0 M 0 -83 D S
  3202. N 900 0 M 0 -83 D S
  3203. /PSL_AH0 0
  3204. /MM {neg M} def
  3205. (0) sh mx
  3206. (1) sh mx
  3207. def
  3208. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  3209. 300 PSL_A0_y MM
  3210. (0) bc Z
  3211. 900 PSL_A0_y MM
  3212. (1) bc Z
  3213. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3214. 0 1200 T
  3215. 25 W
  3216. N 0 0 M 1200 0 D S
  3217. /PSL_A0_y 83 def
  3218. /PSL_A1_y 0 def
  3219. 8 W
  3220. N 300 0 M 0 83 D S
  3221. N 900 0 M 0 83 D S
  3222. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3223. 0 -1200 T
  3224. 0 setlinecap
  3225. %%EndObject
  3226. 0 A
  3227. FQ
  3228. O0
  3229. 0 0 TM
  3230. % PostScript produced by:
  3231. %@GMT: gmt grdcontour t.nc -Ct.cpt -JX1i -R-0.5/1.5/0/2 -O -K
  3232. %@PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy
  3233. %%BeginObject PSL_Layer_35
  3234. 0 setlinecap
  3235. 0 setlinejoin
  3236. 3.32551 setmiterlimit
  3237. clipsave
  3238. 0 0 M
  3239. 1200 0 D
  3240. 0 1200 D
  3241. -1200 0 D
  3242. P
  3243. PSL_clip N
  3244. 12 W
  3245. 360 0 M
  3246. -60 300 D
  3247. S
  3248. 480 0 M
  3249. -180 900 D
  3250. S
  3251. 600 0 M
  3252. -240 1200 D
  3253. S
  3254. 720 0 M
  3255. -240 1200 D
  3256. S
  3257. 840 0 M
  3258. -240 1200 D
  3259. S
  3260. 960 0 M
  3261. -240 1200 D
  3262. S
  3263. 1080 0 M
  3264. -240 1200 D
  3265. S
  3266. 1200 0 M
  3267. -240 1200 D
  3268. S
  3269. 1200 600 M
  3270. -120 600 D
  3271. S
  3272. 1200 1200 M
  3273. 0 0 D
  3274. P S
  3275. PSL_cliprestore
  3276. %%EndObject
  3277. 0 A
  3278. FQ
  3279. O0
  3280. 1890 0 TM
  3281. % PostScript produced by:
  3282. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-1/3/-1/3 -X4c -nl
  3283. %@PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy
  3284. %%BeginObject PSL_Layer_36
  3285. 0 setlinecap
  3286. 0 setlinejoin
  3287. 3.32551 setmiterlimit
  3288. clipsave
  3289. 0 0 M
  3290. 1200 0 D
  3291. 0 1200 D
  3292. -1200 0 D
  3293. P
  3294. PSL_clip N
  3295. V N 150 150 T 900 900 scale [/Indexed /DeviceRGB 14 <
  3296. CE00FF6C00FF0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF3100FFFFFF000000>] setcolorspace
  3297. << /ImageType 1 /Decode [0 15] /Width 38 /Height 38 /BitsPerComponent 4
  3298. /ImageMatrix [38 0 0 -38 0 38] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  3299. >> image
  3300. G[>gD@1@l4!!^dp!_2)lBEX<F&MO8Un02NKN1^cq#](d]1>H^V!Pcmon(/4NeP3*h0M\rYpVV@XP3W!2bIU-B>MTfJUT0u*
  3301. UolY"qCM%[;5jehh6ogg3c44#.0s)'&ZN8EmK`.bmXtBQV(9%dmXtDpI\Q-8mXtDp5.D-kKDXRj\;sko+,c@h_0p8EgrHPc
  3302. 1.kVe+5Hks7<24:~>
  3303. U
  3304. PSL_cliprestore
  3305. 25 W
  3306. 2 setlinecap
  3307. N 0 1200 M 0 -1200 D S
  3308. /PSL_A0_y 83 def
  3309. /PSL_A1_y 0 def
  3310. 8 W
  3311. N 0 0 M -83 0 D S
  3312. N 0 300 M -83 0 D S
  3313. N 0 600 M -83 0 D S
  3314. N 0 900 M -83 0 D S
  3315. N 0 1200 M -83 0 D S
  3316. /PSL_AH0 0
  3317. /MM {neg exch M} def
  3318. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  3319. 167 F0
  3320. (”1) sw mx
  3321. (0) sw mx
  3322. (1) sw mx
  3323. (2) sw mx
  3324. (3) sw mx
  3325. def
  3326. /PSL_A0_y PSL_A0_y 83 add def
  3327. 0 PSL_A0_y MM
  3328. (”1) mr Z
  3329. 300 PSL_A0_y MM
  3330. (0) mr Z
  3331. 600 PSL_A0_y MM
  3332. (1) mr Z
  3333. 900 PSL_A0_y MM
  3334. (2) mr Z
  3335. 1200 PSL_A0_y MM
  3336. (3) mr Z
  3337. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  3338. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3339. 1200 0 T
  3340. 25 W
  3341. N 0 1200 M 0 -1200 D S
  3342. /PSL_A0_y 83 def
  3343. /PSL_A1_y 0 def
  3344. 8 W
  3345. N 0 0 M 83 0 D S
  3346. N 0 300 M 83 0 D S
  3347. N 0 600 M 83 0 D S
  3348. N 0 900 M 83 0 D S
  3349. N 0 1200 M 83 0 D S
  3350. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3351. -1200 0 T
  3352. 25 W
  3353. N 0 0 M 1200 0 D S
  3354. /PSL_A0_y 83 def
  3355. /PSL_A1_y 0 def
  3356. 8 W
  3357. N 0 0 M 0 -83 D S
  3358. N 300 0 M 0 -83 D S
  3359. N 600 0 M 0 -83 D S
  3360. N 900 0 M 0 -83 D S
  3361. N 1200 0 M 0 -83 D S
  3362. /PSL_AH0 0
  3363. /MM {neg M} def
  3364. (”1) sh mx
  3365. (0) sh mx
  3366. (1) sh mx
  3367. (2) sh mx
  3368. (3) sh mx
  3369. def
  3370. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  3371. 0 PSL_A0_y MM
  3372. (”1) bc Z
  3373. 300 PSL_A0_y MM
  3374. (0) bc Z
  3375. 600 PSL_A0_y MM
  3376. (1) bc Z
  3377. 900 PSL_A0_y MM
  3378. (2) bc Z
  3379. 1200 PSL_A0_y MM
  3380. (3) bc Z
  3381. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3382. 0 1200 T
  3383. 25 W
  3384. N 0 0 M 1200 0 D S
  3385. /PSL_A0_y 83 def
  3386. /PSL_A1_y 0 def
  3387. 8 W
  3388. N 0 0 M 0 83 D S
  3389. N 300 0 M 0 83 D S
  3390. N 600 0 M 0 83 D S
  3391. N 900 0 M 0 83 D S
  3392. N 1200 0 M 0 83 D S
  3393. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3394. 0 -1200 T
  3395. 0 setlinecap
  3396. %%EndObject
  3397. 0 A
  3398. FQ
  3399. O0
  3400. 0 0 TM
  3401. % PostScript produced by:
  3402. %@GMT: gmt grdcontour t.nc -Ct.cpt -JX1i -R-1/3/-1/3 -O -K
  3403. %@PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy
  3404. %%BeginObject PSL_Layer_37
  3405. 0 setlinecap
  3406. 0 setlinejoin
  3407. 3.32551 setmiterlimit
  3408. clipsave
  3409. 0 0 M
  3410. 1200 0 D
  3411. 0 1200 D
  3412. -1200 0 D
  3413. P
  3414. PSL_clip N
  3415. 12 W
  3416. 330 300 M
  3417. -30 150 D
  3418. S
  3419. 390 300 M
  3420. -90 450 D
  3421. S
  3422. 450 300 M
  3423. -120 600 D
  3424. S
  3425. 510 300 M
  3426. -120 600 D
  3427. S
  3428. 570 300 M
  3429. -120 600 D
  3430. S
  3431. 630 300 M
  3432. -120 600 D
  3433. S
  3434. 690 300 M
  3435. -120 600 D
  3436. S
  3437. 750 300 M
  3438. -120 600 D
  3439. S
  3440. 810 300 M
  3441. -120 600 D
  3442. S
  3443. 870 300 M
  3444. -120 600 D
  3445. S
  3446. 900 450 M
  3447. -90 450 D
  3448. S
  3449. 900 750 M
  3450. -30 150 D
  3451. S
  3452. PSL_cliprestore
  3453. %%EndObject
  3454. 0 A
  3455. FQ
  3456. O0
  3457. -5669 -1890 TM
  3458. % PostScript produced by:
  3459. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-0.5/2.5/-0.5/2.5 -X-12c -Y-4c
  3460. %@PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy
  3461. %%BeginObject PSL_Layer_38
  3462. 0 setlinecap
  3463. 0 setlinejoin
  3464. 3.32551 setmiterlimit
  3465. clipsave
  3466. 0 0 M
  3467. 1200 0 D
  3468. 0 1200 D
  3469. -1200 0 D
  3470. P
  3471. PSL_clip N
  3472. V N 0 0 T 1200 1200 scale [/Indexed /DeviceRGB 14 <
  3473. CE00FF6C00FF0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF3100FFFFFF000000>] setcolorspace
  3474. << /ImageType 1 /Decode [0 15] /Width 50 /Height 50 /BitsPerComponent 4
  3475. /ImageMatrix [50 0 0 -50 0 50] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  3476. >> image
  3477. G[?*N;%\F7&;4IA!@1JJ<'l[3,u=n9!gQ"sJ:o$g8E^Hh:.)R[-I\(2lb7gDrt]0G2iVO`^)u]$:%R@Fs#sI'E+QO84K!H7
  3478. E%*"?!Z1nrL'PVS@J^9e6cUl9\,]M3bHRehAl.QBhJ9?.l/,8<(]i^i*>Lm`PcfV*:8e^+8ln;P-WGm&($Zp<'.Qr]'^?g:
  3479. DhJI/E"&C9KI&sVmKjVC+;^VX83ocoPcfS%^2=h@'Mdm!r"^@C!FL.Bj8~>
  3480. U
  3481. PSL_cliprestore
  3482. 25 W
  3483. 2 setlinecap
  3484. N 0 1200 M 0 -1200 D S
  3485. /PSL_A0_y 83 def
  3486. /PSL_A1_y 0 def
  3487. 8 W
  3488. N 0 200 M -83 0 D S
  3489. N 0 600 M -83 0 D S
  3490. N 0 1000 M -83 0 D S
  3491. /PSL_AH0 0
  3492. /MM {neg exch M} def
  3493. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  3494. 167 F0
  3495. (0) sw mx
  3496. (1) sw mx
  3497. (2) sw mx
  3498. def
  3499. /PSL_A0_y PSL_A0_y 83 add def
  3500. 200 PSL_A0_y MM
  3501. (0) mr Z
  3502. 600 PSL_A0_y MM
  3503. (1) mr Z
  3504. 1000 PSL_A0_y MM
  3505. (2) mr Z
  3506. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  3507. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3508. 1200 0 T
  3509. 25 W
  3510. N 0 1200 M 0 -1200 D S
  3511. /PSL_A0_y 83 def
  3512. /PSL_A1_y 0 def
  3513. 8 W
  3514. N 0 200 M 83 0 D S
  3515. N 0 600 M 83 0 D S
  3516. N 0 1000 M 83 0 D S
  3517. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3518. -1200 0 T
  3519. 25 W
  3520. N 0 0 M 1200 0 D S
  3521. /PSL_A0_y 83 def
  3522. /PSL_A1_y 0 def
  3523. 8 W
  3524. N 200 0 M 0 -83 D S
  3525. N 600 0 M 0 -83 D S
  3526. N 1000 0 M 0 -83 D S
  3527. /PSL_AH0 0
  3528. /MM {neg M} def
  3529. (0) sh mx
  3530. (1) sh mx
  3531. (2) sh mx
  3532. def
  3533. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  3534. 200 PSL_A0_y MM
  3535. (0) bc Z
  3536. 600 PSL_A0_y MM
  3537. (1) bc Z
  3538. 1000 PSL_A0_y MM
  3539. (2) bc Z
  3540. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3541. 0 1200 T
  3542. 25 W
  3543. N 0 0 M 1200 0 D S
  3544. /PSL_A0_y 83 def
  3545. /PSL_A1_y 0 def
  3546. 8 W
  3547. N 200 0 M 0 83 D S
  3548. N 600 0 M 0 83 D S
  3549. N 1000 0 M 0 83 D S
  3550. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3551. 0 -1200 T
  3552. 0 setlinecap
  3553. %%EndObject
  3554. 0 A
  3555. FQ
  3556. O0
  3557. 0 0 TM
  3558. % PostScript produced by:
  3559. %@GMT: gmt grdcontour t.nc -Ct.cpt -JX1i -R-0.5/2.5/-0.5/2.5 -O -K
  3560. %@PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy
  3561. %%BeginObject PSL_Layer_39
  3562. 0 setlinecap
  3563. 0 setlinejoin
  3564. 3.32551 setmiterlimit
  3565. clipsave
  3566. 0 0 M
  3567. 1200 0 D
  3568. 0 1200 D
  3569. -1200 0 D
  3570. P
  3571. PSL_clip N
  3572. 12 W
  3573. 240 200 M
  3574. -40 200 D
  3575. S
  3576. 320 200 M
  3577. -120 600 D
  3578. S
  3579. 400 200 M
  3580. -160 800 D
  3581. S
  3582. 480 200 M
  3583. -160 800 D
  3584. S
  3585. 560 200 M
  3586. -160 800 D
  3587. S
  3588. 640 200 M
  3589. -160 800 D
  3590. S
  3591. 720 200 M
  3592. -160 800 D
  3593. S
  3594. 800 200 M
  3595. -160 800 D
  3596. S
  3597. 880 200 M
  3598. -160 800 D
  3599. S
  3600. 960 200 M
  3601. -160 800 D
  3602. S
  3603. 1000 400 M
  3604. -120 600 D
  3605. S
  3606. 1000 800 M
  3607. -40 200 D
  3608. S
  3609. PSL_cliprestore
  3610. %%EndObject
  3611. 0 A
  3612. FQ
  3613. O0
  3614. 0 0 TM
  3615. % PostScript produced by:
  3616. %@GMT: gmt pstext -R-0.5/2.5/-0.5/2.5 -JX1i -N -F+f10p+jBR -O -K
  3617. %@PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy
  3618. %%BeginObject PSL_Layer_40
  3619. 0 setlinecap
  3620. 0 setlinejoin
  3621. 3.32551 setmiterlimit
  3622. -360 800 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  3623. 167 F0
  3624. (grdmath -r) br Z
  3625. -360 600 M (grdimage -E50) br Z
  3626. %%EndObject
  3627. 0 A
  3628. FQ
  3629. O0
  3630. 1890 0 TM
  3631. % PostScript produced by:
  3632. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R0/2/0/2 -X4c
  3633. %@PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy
  3634. %%BeginObject PSL_Layer_41
  3635. 0 setlinecap
  3636. 0 setlinejoin
  3637. 3.32551 setmiterlimit
  3638. clipsave
  3639. 0 0 M
  3640. 1200 0 D
  3641. 0 1200 D
  3642. -1200 0 D
  3643. P
  3644. PSL_clip N
  3645. V N -300 -300 T 1800 1800 scale [/Indexed /DeviceRGB 14 <
  3646. CE00FF6C00FF0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF3100FFFFFF000000>] setcolorspace
  3647. << /ImageType 1 /Decode [0 15] /Width 75 /Height 75 /BitsPerComponent 4
  3648. /ImageMatrix [75 0 0 -75 0 75] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  3649. >> image
  3650. G[AYA;%:Ar&B=67_N7S>'F@2pO\d;;#t;^m:aC,qY%.`M:bW>hUQ@$8]6d`MSpq:Fs/NYEK\/qse5:!kcIP%#D-QJt+TTID
  3651. G^WSW:qJsWk'[Nk>R;hi8ni]/`nH>l56^.J9iU<j>ZH)IVVnQFa>EBbO;/h)#0IW+'H.il.mbLk7>U$(?rD4p;\_fV7W,D[
  3652. TXq5OaR.L[=!9)9$JoM\Z@ki.C3kB,efp$N\>6j$+4\+,?26aO~>
  3653. U
  3654. PSL_cliprestore
  3655. 25 W
  3656. 2 setlinecap
  3657. N 0 1200 M 0 -1200 D S
  3658. /PSL_A0_y 83 def
  3659. /PSL_A1_y 0 def
  3660. 8 W
  3661. N 0 0 M -83 0 D S
  3662. N 0 600 M -83 0 D S
  3663. N 0 1200 M -83 0 D S
  3664. /PSL_AH0 0
  3665. /MM {neg exch M} def
  3666. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  3667. 167 F0
  3668. (0) sw mx
  3669. (1) sw mx
  3670. (2) sw mx
  3671. def
  3672. /PSL_A0_y PSL_A0_y 83 add def
  3673. 0 PSL_A0_y MM
  3674. (0) mr Z
  3675. 600 PSL_A0_y MM
  3676. (1) mr Z
  3677. 1200 PSL_A0_y MM
  3678. (2) mr Z
  3679. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  3680. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3681. 1200 0 T
  3682. 25 W
  3683. N 0 1200 M 0 -1200 D S
  3684. /PSL_A0_y 83 def
  3685. /PSL_A1_y 0 def
  3686. 8 W
  3687. N 0 0 M 83 0 D S
  3688. N 0 600 M 83 0 D S
  3689. N 0 1200 M 83 0 D S
  3690. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3691. -1200 0 T
  3692. 25 W
  3693. N 0 0 M 1200 0 D S
  3694. /PSL_A0_y 83 def
  3695. /PSL_A1_y 0 def
  3696. 8 W
  3697. N 0 0 M 0 -83 D S
  3698. N 600 0 M 0 -83 D S
  3699. N 1200 0 M 0 -83 D S
  3700. /PSL_AH0 0
  3701. /MM {neg M} def
  3702. (0) sh mx
  3703. (1) sh mx
  3704. (2) sh mx
  3705. def
  3706. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  3707. 0 PSL_A0_y MM
  3708. (0) bc Z
  3709. 600 PSL_A0_y MM
  3710. (1) bc Z
  3711. 1200 PSL_A0_y MM
  3712. (2) bc Z
  3713. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3714. 0 1200 T
  3715. 25 W
  3716. N 0 0 M 1200 0 D S
  3717. /PSL_A0_y 83 def
  3718. /PSL_A1_y 0 def
  3719. 8 W
  3720. N 0 0 M 0 83 D S
  3721. N 600 0 M 0 83 D S
  3722. N 1200 0 M 0 83 D S
  3723. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3724. 0 -1200 T
  3725. 0 setlinecap
  3726. %%EndObject
  3727. 0 A
  3728. FQ
  3729. O0
  3730. 0 0 TM
  3731. % PostScript produced by:
  3732. %@GMT: gmt grdcontour t.nc -Ct.cpt -JX1i -R0/2/0/2 -O -K
  3733. %@PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy
  3734. %%BeginObject PSL_Layer_42
  3735. 0 setlinecap
  3736. 0 setlinejoin
  3737. 3.32551 setmiterlimit
  3738. clipsave
  3739. 0 0 M
  3740. 1200 0 D
  3741. 0 1200 D
  3742. -1200 0 D
  3743. P
  3744. PSL_clip N
  3745. 12 W
  3746. 60 0 M
  3747. -60 300 D
  3748. S
  3749. 180 0 M
  3750. -180 900 D
  3751. S
  3752. 300 0 M
  3753. -240 1200 D
  3754. S
  3755. 420 0 M
  3756. -240 1200 D
  3757. S
  3758. 540 0 M
  3759. -240 1200 D
  3760. S
  3761. 660 0 M
  3762. -240 1200 D
  3763. S
  3764. 780 0 M
  3765. -240 1200 D
  3766. S
  3767. 900 0 M
  3768. -240 1200 D
  3769. S
  3770. 1020 0 M
  3771. -240 1200 D
  3772. S
  3773. 1140 0 M
  3774. -240 1200 D
  3775. S
  3776. 1200 300 M
  3777. -180 900 D
  3778. S
  3779. 1200 900 M
  3780. -60 300 D
  3781. S
  3782. PSL_cliprestore
  3783. %%EndObject
  3784. 0 A
  3785. FQ
  3786. O0
  3787. 1890 0 TM
  3788. % PostScript produced by:
  3789. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-0.5/1.5/0/2 -X4c
  3790. %@PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy
  3791. %%BeginObject PSL_Layer_43
  3792. 0 setlinecap
  3793. 0 setlinejoin
  3794. 3.32551 setmiterlimit
  3795. clipsave
  3796. 0 0 M
  3797. 1200 0 D
  3798. 0 1200 D
  3799. -1200 0 D
  3800. P
  3801. PSL_clip N
  3802. V N 0 -300 T 1800 1800 scale [/Indexed /DeviceRGB 14 <
  3803. CE00FF6C00FF0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF3100FFFFFF000000>] setcolorspace
  3804. << /ImageType 1 /Decode [0 15] /Width 75 /Height 75 /BitsPerComponent 4
  3805. /ImageMatrix [75 0 0 -75 0 75] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  3806. >> image
  3807. G[AYA;%:Ar&B=67_N7S>'F@2pO\d;;#t;^m:aC,qY%.`M:bW>hUQ@$8]6d`MSpq:Fs/NYEK\/qse5:!kcIP%#D-QJt+TTID
  3808. G^WSW:qJsWk'[Nk>R;hi8ni]/`nH>l56^.J9iU<j>ZH)IVVnQFa>EBbO;/h)#0IW+'H.il.mbLk7>U$(?rD4p;\_fV7W,D[
  3809. TXq5OaR.L[=!9)9$JoM\Z@ki.C3kB,efp$N\>6j$+4\+,?26aO~>
  3810. U
  3811. PSL_cliprestore
  3812. 25 W
  3813. 2 setlinecap
  3814. N 0 1200 M 0 -1200 D S
  3815. /PSL_A0_y 83 def
  3816. /PSL_A1_y 0 def
  3817. 8 W
  3818. N 0 0 M -83 0 D S
  3819. N 0 600 M -83 0 D S
  3820. N 0 1200 M -83 0 D S
  3821. /PSL_AH0 0
  3822. /MM {neg exch M} def
  3823. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  3824. 167 F0
  3825. (0) sw mx
  3826. (1) sw mx
  3827. (2) sw mx
  3828. def
  3829. /PSL_A0_y PSL_A0_y 83 add def
  3830. 0 PSL_A0_y MM
  3831. (0) mr Z
  3832. 600 PSL_A0_y MM
  3833. (1) mr Z
  3834. 1200 PSL_A0_y MM
  3835. (2) mr Z
  3836. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  3837. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3838. 1200 0 T
  3839. 25 W
  3840. N 0 1200 M 0 -1200 D S
  3841. /PSL_A0_y 83 def
  3842. /PSL_A1_y 0 def
  3843. 8 W
  3844. N 0 0 M 83 0 D S
  3845. N 0 600 M 83 0 D S
  3846. N 0 1200 M 83 0 D S
  3847. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3848. -1200 0 T
  3849. 25 W
  3850. N 0 0 M 1200 0 D S
  3851. /PSL_A0_y 83 def
  3852. /PSL_A1_y 0 def
  3853. 8 W
  3854. N 300 0 M 0 -83 D S
  3855. N 900 0 M 0 -83 D S
  3856. /PSL_AH0 0
  3857. /MM {neg M} def
  3858. (0) sh mx
  3859. (1) sh mx
  3860. def
  3861. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  3862. 300 PSL_A0_y MM
  3863. (0) bc Z
  3864. 900 PSL_A0_y MM
  3865. (1) bc Z
  3866. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3867. 0 1200 T
  3868. 25 W
  3869. N 0 0 M 1200 0 D S
  3870. /PSL_A0_y 83 def
  3871. /PSL_A1_y 0 def
  3872. 8 W
  3873. N 300 0 M 0 83 D S
  3874. N 900 0 M 0 83 D S
  3875. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3876. 0 -1200 T
  3877. 0 setlinecap
  3878. %%EndObject
  3879. 0 A
  3880. FQ
  3881. O0
  3882. 0 0 TM
  3883. % PostScript produced by:
  3884. %@GMT: gmt grdcontour t.nc -Ct.cpt -JX1i -R-0.5/1.5/0/2 -O -K
  3885. %@PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy
  3886. %%BeginObject PSL_Layer_44
  3887. 0 setlinecap
  3888. 0 setlinejoin
  3889. 3.32551 setmiterlimit
  3890. clipsave
  3891. 0 0 M
  3892. 1200 0 D
  3893. 0 1200 D
  3894. -1200 0 D
  3895. P
  3896. PSL_clip N
  3897. 12 W
  3898. 360 0 M
  3899. -60 300 D
  3900. S
  3901. 480 0 M
  3902. -180 900 D
  3903. S
  3904. 600 0 M
  3905. -240 1200 D
  3906. S
  3907. 720 0 M
  3908. -240 1200 D
  3909. S
  3910. 840 0 M
  3911. -240 1200 D
  3912. S
  3913. 960 0 M
  3914. -240 1200 D
  3915. S
  3916. 1080 0 M
  3917. -240 1200 D
  3918. S
  3919. 1200 0 M
  3920. -240 1200 D
  3921. S
  3922. 1200 600 M
  3923. -120 600 D
  3924. S
  3925. 1200 1200 M
  3926. 0 0 D
  3927. P S
  3928. PSL_cliprestore
  3929. %%EndObject
  3930. 0 A
  3931. FQ
  3932. O0
  3933. 1890 0 TM
  3934. % PostScript produced by:
  3935. %@GMT: gmt grdimage t.nc -Ct.cpt -JX1i -B1 -BWeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-1/3/-1/3 -X4c
  3936. %@PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy
  3937. %%BeginObject PSL_Layer_45
  3938. 0 setlinecap
  3939. 0 setlinejoin
  3940. 3.32551 setmiterlimit
  3941. clipsave
  3942. 0 0 M
  3943. 1200 0 D
  3944. 0 1200 D
  3945. -1200 0 D
  3946. P
  3947. PSL_clip N
  3948. V N 150 150 T 900 900 scale [/Indexed /DeviceRGB 14 <
  3949. CE00FF6C00FF0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF3100FFFFFF000000>] setcolorspace
  3950. << /ImageType 1 /Decode [0 15] /Width 38 /Height 38 /BitsPerComponent 4
  3951. /ImageMatrix [38 0 0 -38 0 38] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  3952. >> image
  3953. G[>O=>7lKA!(9\G!"skdO:W[6#ugss80t&E5XHY<872W*X._mRR`>oQpZpV/&oH52j)\7I=fpHQ]r4?J8Y8\>-DfT`eP.QL
  3954. a'Dl-gHlf+p%#)`74\8IU_dNh3apM(dns.;E^%U4J#%Ha5O18)I,me%8APYqKDAn=Qljc6$Kd!:?p9qgjs0'D/EnS%<b2+c
  3955. UrWo*a6A2,q-ZBArfn,q8WD.)ZeG^<s%m>~>
  3956. U
  3957. PSL_cliprestore
  3958. 25 W
  3959. 2 setlinecap
  3960. N 0 1200 M 0 -1200 D S
  3961. /PSL_A0_y 83 def
  3962. /PSL_A1_y 0 def
  3963. 8 W
  3964. N 0 0 M -83 0 D S
  3965. N 0 300 M -83 0 D S
  3966. N 0 600 M -83 0 D S
  3967. N 0 900 M -83 0 D S
  3968. N 0 1200 M -83 0 D S
  3969. /PSL_AH0 0
  3970. /MM {neg exch M} def
  3971. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  3972. 167 F0
  3973. (”1) sw mx
  3974. (0) sw mx
  3975. (1) sw mx
  3976. (2) sw mx
  3977. (3) sw mx
  3978. def
  3979. /PSL_A0_y PSL_A0_y 83 add def
  3980. 0 PSL_A0_y MM
  3981. (”1) mr Z
  3982. 300 PSL_A0_y MM
  3983. (0) mr Z
  3984. 600 PSL_A0_y MM
  3985. (1) mr Z
  3986. 900 PSL_A0_y MM
  3987. (2) mr Z
  3988. 1200 PSL_A0_y MM
  3989. (3) mr Z
  3990. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  3991. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3992. 1200 0 T
  3993. 25 W
  3994. N 0 1200 M 0 -1200 D S
  3995. /PSL_A0_y 83 def
  3996. /PSL_A1_y 0 def
  3997. 8 W
  3998. N 0 0 M 83 0 D S
  3999. N 0 300 M 83 0 D S
  4000. N 0 600 M 83 0 D S
  4001. N 0 900 M 83 0 D S
  4002. N 0 1200 M 83 0 D S
  4003. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  4004. -1200 0 T
  4005. 25 W
  4006. N 0 0 M 1200 0 D S
  4007. /PSL_A0_y 83 def
  4008. /PSL_A1_y 0 def
  4009. 8 W
  4010. N 0 0 M 0 -83 D S
  4011. N 300 0 M 0 -83 D S
  4012. N 600 0 M 0 -83 D S
  4013. N 900 0 M 0 -83 D S
  4014. N 1200 0 M 0 -83 D S
  4015. /PSL_AH0 0
  4016. /MM {neg M} def
  4017. (”1) sh mx
  4018. (0) sh mx
  4019. (1) sh mx
  4020. (2) sh mx
  4021. (3) sh mx
  4022. def
  4023. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  4024. 0 PSL_A0_y MM
  4025. (”1) bc Z
  4026. 300 PSL_A0_y MM
  4027. (0) bc Z
  4028. 600 PSL_A0_y MM
  4029. (1) bc Z
  4030. 900 PSL_A0_y MM
  4031. (2) bc Z
  4032. 1200 PSL_A0_y MM
  4033. (3) bc Z
  4034. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  4035. 0 1200 T
  4036. 25 W
  4037. N 0 0 M 1200 0 D S
  4038. /PSL_A0_y 83 def
  4039. /PSL_A1_y 0 def
  4040. 8 W
  4041. N 0 0 M 0 83 D S
  4042. N 300 0 M 0 83 D S
  4043. N 600 0 M 0 83 D S
  4044. N 900 0 M 0 83 D S
  4045. N 1200 0 M 0 83 D S
  4046. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  4047. 0 -1200 T
  4048. 0 setlinecap
  4049. %%EndObject
  4050. 0 A
  4051. FQ
  4052. O0
  4053. 0 0 TM
  4054. % PostScript produced by:
  4055. %@GMT: gmt grdcontour t.nc -Ct.cpt -JX1i -R-1/3/-1/3 -O
  4056. %@PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy
  4057. %%BeginObject PSL_Layer_46
  4058. 0 setlinecap
  4059. 0 setlinejoin
  4060. 3.32551 setmiterlimit
  4061. clipsave
  4062. 0 0 M
  4063. 1200 0 D
  4064. 0 1200 D
  4065. -1200 0 D
  4066. P
  4067. PSL_clip N
  4068. 12 W
  4069. 330 300 M
  4070. -30 150 D
  4071. S
  4072. 390 300 M
  4073. -90 450 D
  4074. S
  4075. 450 300 M
  4076. -120 600 D
  4077. S
  4078. 510 300 M
  4079. -120 600 D
  4080. S
  4081. 570 300 M
  4082. -120 600 D
  4083. S
  4084. 630 300 M
  4085. -120 600 D
  4086. S
  4087. 690 300 M
  4088. -120 600 D
  4089. S
  4090. 750 300 M
  4091. -120 600 D
  4092. S
  4093. 810 300 M
  4094. -120 600 D
  4095. S
  4096. 870 300 M
  4097. -120 600 D
  4098. S
  4099. 900 450 M
  4100. -90 450 D
  4101. S
  4102. 900 750 M
  4103. -30 150 D
  4104. S
  4105. PSL_cliprestore
  4106. %%EndObject
  4107. grestore
  4108. PSL_movie_completion /PSL_movie_completion {} def
  4109. %PSL_Begin_Trailer
  4110. %%PageTrailer
  4111. U
  4112. showpage
  4113. %%Trailer
  4114. end
  4115. %%EOF
Tip!

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

Comments

Loading...