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 84 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
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612 792
  4. %%Title: GMT v5.0.0_r9413 [64-bit] Document from GMT_grdimage
  5. %%Creator: GMT
  6. %%For: remko
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Sun Dec 4 16:36:36 2011
  9. %%LanguageLevel: 2
  10. %%DocumentData: Clean7Bit
  11. %%Orientation: Portrait
  12. %%Pages: 1
  13. %%EndComments
  14. %%BeginProlog
  15. 250 dict begin
  16. /! {bind def} bind def
  17. /# {load def}!
  18. /A /setgray #
  19. /B /setdash #
  20. /C /setrgbcolor #
  21. /D /rlineto #
  22. /E {dup stringwidth pop}!
  23. /F /fill #
  24. /G /rmoveto #
  25. /H /sethsbcolor #
  26. /I /setpattern #
  27. /K /setcmykcolor #
  28. /L /lineto #
  29. /M /moveto #
  30. /N /newpath #
  31. /P /closepath #
  32. /R /rotate #
  33. /S /stroke #
  34. /T /translate #
  35. /U /grestore #
  36. /V /gsave #
  37. /W /setlinewidth #
  38. /Y {findfont exch scalefont setfont}!
  39. /Z /show #
  40. /FP {true charpath flattenpath}!
  41. /MU {matrix setmatrix}!
  42. /MS {/SMat matrix currentmatrix def}!
  43. /MR {SMat setmatrix}!
  44. /edef {exch def}!
  45. /FS {/fc edef /fs {V fc F U} def}!
  46. /FQ {/fs {} def}!
  47. /O0 {/os {N} def}!
  48. /O1 {/os {P S} def}!
  49. /FO {fs os}!
  50. /Sa {M MS dup 0 exch G 0.726542528 mul -72 R dup 0 D 4 {72 R dup 0 D -144 R dup 0 D} repeat pop MR FO}!
  51. /Sb {M dup 0 D exch 0 exch D neg 0 D FO}!
  52. /SB {MS T /BoxR edef /BoxW edef /BoxH edef BoxR 0 M
  53. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  54. /Sc {N 3 -1 roll 0 360 arc FO}!
  55. /Sd {M 4 {dup} repeat 0 G neg dup dup D exch D D FO}!
  56. /Se {N MS T R scale 0 0 1 0 360 arc MR FO}!
  57. /Sg {M MS 22.5 R dup 0 exch G -22.5 R 0.765366865 mul dup 0 D 6 {-45 R dup 0 D} repeat pop MR FO}!
  58. /Sh {M MS dup 0 G -120 R dup 0 D 4 {-60 R dup 0 D} repeat pop MR FO}!
  59. /Si {M MS dup neg 0 exch G 60 R 1.732050808 mul dup 0 D 120 R 0 D MR FO}!
  60. /Sj {M MS R dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D MR FO}!
  61. /Sn {M MS dup 0 exch G -36 R 1.175570505 mul dup 0 D 3 {-72 R dup 0 D} repeat pop MR FO}!
  62. /Sp {N 3 -1 roll 0 360 arc F}!
  63. /SP {M {D} repeat FO}!
  64. /Sr {M dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D FO}!
  65. /SR {MS T /BoxR edef /BoxW edef /BoxH edef BoxR BoxW -2 div BoxH -2 div T BoxR 0 M
  66. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  67. /Ss {M 1.414213562 mul dup dup dup -2 div dup G 0 D 0 exch D neg 0 D FO}!
  68. /St {M MS dup 0 exch G -60 R 1.732050808 mul dup 0 D -120 R 0 D MR FO}!
  69. /SV {0 exch M 0 D D D D D 0 D FO}!
  70. /Sv {0 0 M D D 0 D D D D D 0 D D FO}!
  71. /Sw {2 copy M 5 2 roll arc FO}!
  72. /Sx {M 1.414213562 mul 5 {dup} repeat -2 div dup G D neg 0 G neg D S}!
  73. /Sy {M dup 0 exch G dup -2 mul dup 0 exch D S}!
  74. /S+ {M dup 0 G dup -2 mul dup 0 D exch dup G 0 exch D S}!
  75. /S- {M dup 0 G dup -2 mul dup 0 D S}!
  76. /sw {stringwidth pop}!
  77. /sh {V MU 0 0 M FP pathbbox N 4 1 roll pop pop pop U}!
  78. /sd {V MU 0 0 M FP pathbbox N pop pop exch pop U}!
  79. /sH {V MU 0 0 M FP pathbbox N exch pop exch sub exch pop U}!
  80. /sb {E exch sh}!
  81. /bl {}!
  82. /bc {E -2 div 0 G}!
  83. /br {E neg 0 G}!
  84. /ml {dup 0 exch sh -2 div G}!
  85. /mc {dup E -2 div exch sh -2 div G}!
  86. /mr {dup E neg exch sh -2 div G}!
  87. /tl {dup 0 exch sh neg G}!
  88. /tc {dup E -2 div exch sh neg G}!
  89. /tr {dup E neg exch sh neg G}!
  90. /mx {2 copy lt {exch} if pop}!
  91. /PSL_xorig 0 def /PSL_yorig 0 def
  92. /TM {2 copy T PSL_yorig add /PSL_yorig edef PSL_xorig add /PSL_xorig edef}!
  93. /PSL_reencode {findfont dup length dict begin
  94. {1 index /FID ne {def}{pop pop} ifelse} forall
  95. exch /Encoding edef currentdict end definefont pop
  96. }!
  97. /PSL_eps_begin {
  98. /PSL_eps_state save def
  99. /PSL_dict_count countdictstack def
  100. /PSL_op_count count 1 sub def
  101. userdict begin
  102. /showpage {} def
  103. 0 setgray 0 setlinecap 1 setlinewidth
  104. 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath
  105. /languagelevel where
  106. {pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if
  107. }!
  108. /PSL_eps_end {
  109. count PSL_op_count sub {pop} repeat
  110. countdictstack PSL_dict_count sub {end} repeat
  111. PSL_eps_state restore
  112. }!
  113. /Standard+_Encoding [
  114. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  115. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  116. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  117. /.notdef /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
  118. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  119. /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
  120. /zero /one /two /three /four /five /six /seven
  121. /eight /nine /colon /semicolon /less /equal /greater /question
  122. /at /A /B /C /D /E /F /G
  123. /H /I /J /K /L /M /N /O
  124. /P /Q /R /S /T /U /V /W
  125. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  126. /quoteleft /a /b /c /d /e /f /g
  127. /h /i /j /k /l /m /n /o
  128. /p /q /r /s /t /u /v /w
  129. /x /y /z /braceleft /bar /braceright /asciitilde /florin
  130. /Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
  131. /Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
  132. /divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
  133. /onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
  134. /.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
  135. /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
  136. /Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
  137. /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
  138. /Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
  139. /dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
  140. /emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
  141. /Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
  142. /acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
  143. /egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
  144. /oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
  145. /udieresis /oslash /oe /germandbls /ugrave /Aring /aring /ydieresis
  146. ] def
  147. /PSL_font_encode 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 array astore def
  148. /F0 {/Helvetica Y}!
  149. /F1 {/Helvetica-Bold Y}!
  150. /F2 {/Helvetica-Oblique Y}!
  151. /F3 {/Helvetica-BoldOblique Y}!
  152. /F4 {/Times-Roman Y}!
  153. /F5 {/Times-Bold Y}!
  154. /F6 {/Times-Italic Y}!
  155. /F7 {/Times-BoldItalic Y}!
  156. /F8 {/Courier Y}!
  157. /F9 {/Courier-Bold Y}!
  158. /F10 {/Courier-Oblique Y}!
  159. /F11 {/Courier-BoldOblique Y}!
  160. /F12 {/Symbol Y}!
  161. /F13 {/AvantGarde-Book Y}!
  162. /F14 {/AvantGarde-BookOblique Y}!
  163. /F15 {/AvantGarde-Demi Y}!
  164. /F16 {/AvantGarde-DemiOblique Y}!
  165. /F17 {/Bookman-Demi Y}!
  166. /F18 {/Bookman-DemiItalic Y}!
  167. /F19 {/Bookman-Light Y}!
  168. /F20 {/Bookman-LightItalic Y}!
  169. /F21 {/Helvetica-Narrow Y}!
  170. /F22 {/Helvetica-Narrow-Bold Y}!
  171. /F23 {/Helvetica-Narrow-Oblique Y}!
  172. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  173. /F25 {/NewCenturySchlbk-Roman Y}!
  174. /F26 {/NewCenturySchlbk-Italic Y}!
  175. /F27 {/NewCenturySchlbk-Bold Y}!
  176. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  177. /F29 {/Palatino-Roman Y}!
  178. /F30 {/Palatino-Italic Y}!
  179. /F31 {/Palatino-Bold Y}!
  180. /F32 {/Palatino-BoldItalic Y}!
  181. /F33 {/ZapfChancery-MediumItalic Y}!
  182. /F34 {/ZapfDingbats Y}!
  183. /F35 {/Ryumin-Light-EUC-H Y}!
  184. /F36 {/Ryumin-Light-EUC-V Y}!
  185. /F37 {/GothicBBB-Medium-EUC-H Y}!
  186. /F38 {/GothicBBB-Medium-EUC-V Y}!
  187. /PSL_pathtextdict 26 dict def
  188. /PSL_pathtext
  189. {PSL_pathtextdict begin
  190. /textheight exch def
  191. /just exch def
  192. /offset exch def
  193. /str exch def
  194. /pathdist 0 def
  195. /setdist offset def
  196. /charcount 0 def
  197. /justy just 4 idiv textheight mul 2 div neg def
  198. V flattenpath
  199. {movetoproc} {linetoproc}
  200. {curvetoproc} {closepathproc}
  201. pathforall
  202. U N
  203. end
  204. } def
  205. PSL_pathtextdict begin
  206. /movetoproc
  207. { /newy exch def /newx exch def
  208. /firstx newx def /firsty newy def
  209. /ovr 0 def
  210. newx newy transform
  211. /cpy exch def /cpx exch def
  212. } def
  213. /linetoproc
  214. { /oldx newx def /oldy newy def
  215. /newy exch def /newx exch def
  216. /dx newx oldx sub def
  217. /dy newy oldy sub def
  218. /dist dx dup mul dy dup mul add sqrt def
  219. dist 0 ne
  220. { /dsx dx dist div ovr mul def
  221. /dsy dy dist div ovr mul def
  222. oldx dsx add oldy dsy add transform
  223. /cpy exch def /cpx exch def
  224. /pathdist pathdist dist add def
  225. {setdist pathdist le
  226. {charcount str length lt
  227. {setchar} {exit} ifelse}
  228. { /ovr setdist pathdist sub def
  229. exit}
  230. ifelse
  231. } loop
  232. } if
  233. } def
  234. /curvetoproc
  235. { (ERROR: No curveto's after flattenpath!)
  236. print
  237. } def
  238. /closepathproc
  239. {firstx firsty linetoproc
  240. firstx firsty movetoproc
  241. } def
  242. /setchar
  243. { /char str charcount 1 getinterval def
  244. /charcount charcount 1 add def
  245. /charwidth char stringwidth pop def
  246. V cpx cpy itransform T
  247. dy dx atan R
  248. 0 justy M
  249. char show
  250. 0 justy neg G
  251. currentpoint transform
  252. /cpy exch def /cpx exch def
  253. U /setdist setdist charwidth add def
  254. } def
  255. end
  256. /PSL_curved_text_labels
  257. { /bits exch def
  258. /PSL_clippath bits 1 and 1 eq def
  259. /PSL_placetext bits 2 and 0 eq def
  260. /PSL_strokeline bits 4 and 4 eq def
  261. /PSL_firstcall bits 32 and 32 eq def
  262. /PSL_lastcall bits 64 and 64 eq def
  263. /PSL_fillbox bits 128 and 128 eq def
  264. /PSL_drawbox bits 256 and 256 eq def
  265. /PSL_n1 PSL_n 1 sub def
  266. /PSL_m1 PSL_m 1 sub def
  267. /PSL_usebox PSL_fillbox PSL_drawbox or def
  268. PSL_CT_calcstringwidth
  269. PSL_CT_calclinedist
  270. PSL_CT_addcutpoints
  271. PSL_clippath PSL_firstcall and
  272. {clipsave N clippath} if
  273. PSL_setlinepen
  274. /PSL_nn1 PSL_nn 1 sub def
  275. /n 0 def
  276. /k 0 def
  277. /j 0 def
  278. /PSL_seg 0 def
  279. /PSL_xp PSL_nn array def
  280. /PSL_yp PSL_nn array def
  281. PSL_xp 0 PSL_xx 0 get put
  282. PSL_yp 0 PSL_yy 0 get put
  283. 1 1 PSL_nn1
  284. { /i exch def
  285. /node_type PSL_kind i get def
  286. /j j 1 add def
  287. PSL_xp j PSL_xx i get put
  288. PSL_yp j PSL_yy i get put
  289. node_type 1 eq
  290. {n 0 eq
  291. {PSL_CT_drawline}
  292. { PSL_CT_reversepath
  293. PSL_CT_textline} ifelse
  294. /j 0 def
  295. PSL_xp j PSL_xx i get put
  296. PSL_yp j PSL_yy i get put
  297. } if
  298. } for
  299. n 0 eq {PSL_CT_drawline} if
  300. PSL_lastcall
  301. {PSL_clippath
  302. {PSL_clip} if N
  303. } if
  304. } def
  305. /PSL_CT_textline
  306. {PSL_placetext
  307. {PSL_clippath
  308. {PSL_CT_clippath} {PSL_CT_placelabel} ifelse
  309. } if
  310. /n 0 def /k k 1 add def PSL_setlinepen
  311. } def
  312. /PSL_CT_calcstringwidth
  313. { /PSL_width PSL_m array def
  314. 0 1 PSL_m1
  315. { /i exch def
  316. PSL_width i PSL_str i get stringwidth pop put
  317. } for
  318. } def
  319. /PSL_CT_calclinedist
  320. { /PSL_newx PSL_x 0 get def
  321. /PSL_newy PSL_y 0 get def
  322. /dist 0.0 def
  323. /PSL_dist PSL_n array def
  324. PSL_dist 0 0.0 put
  325. 1 1 PSL_n1
  326. { /i exch def
  327. /PSL_oldx PSL_newx def
  328. /PSL_oldy PSL_newy def
  329. /PSL_newx PSL_x i get def
  330. /PSL_newy PSL_y i get def
  331. /dx PSL_newx PSL_oldx sub def
  332. /dy PSL_newy PSL_oldy sub def
  333. /dist dist dx dx mul dy dy mul add sqrt add def
  334. PSL_dist i dist put
  335. } for
  336. } def
  337. /PSL_CT_addcutpoints
  338. { /k 0 def
  339. /PSL_nc PSL_m 2 mul 1 add def
  340. /PSL_cuts PSL_nc array def
  341. /PSL_nc1 PSL_nc 1 sub def
  342. 0 1 PSL_m1
  343. { /i exch def
  344. /dist PSL_dist PSL_node i get get def
  345. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  346. PSL_cuts k dist halfwidth sub put
  347. /k k 1 add def
  348. PSL_cuts k dist halfwidth add put
  349. /k k 1 add def
  350. } for
  351. PSL_cuts k 100000.0 put
  352. /PSL_nn PSL_n PSL_m 2 mul add def
  353. /PSL_xx PSL_nn array def
  354. /PSL_yy PSL_nn array def
  355. /PSL_kind PSL_nn array def
  356. /j 0 def
  357. /k 0 def
  358. /dist 0.0 def
  359. 0 1 PSL_n1
  360. { /i exch def
  361. /last_dist dist def
  362. /dist PSL_dist i get def
  363. k 1 PSL_nc1
  364. { /kk exch def
  365. /this_cut PSL_cuts kk get def
  366. dist this_cut gt
  367. { /ds dist last_dist sub def
  368. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  369. /i1 i 0 eq {0} {i 1 sub} ifelse def
  370. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  371. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  372. PSL_kind j 1 put
  373. /j j 1 add def
  374. /k k 1 add def
  375. } if
  376. } for
  377. dist PSL_cuts k get le
  378. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  379. PSL_kind j 0 put
  380. /j j 1 add def
  381. } if
  382. } for
  383. } def
  384. /PSL_CT_reversepath
  385. {PSL_xp j get PSL_xp 0 get lt
  386. {0 1 j 2 idiv
  387. { /left exch def
  388. /right j left sub def
  389. /tmp PSL_xp left get def
  390. PSL_xp left PSL_xp right get put
  391. PSL_xp right tmp put
  392. /tmp PSL_yp left get def
  393. PSL_yp left PSL_yp right get put
  394. PSL_yp right tmp put
  395. } for
  396. } if
  397. } def
  398. /PSL_CT_placelabel
  399. {
  400. PSL_usebox
  401. {PSL_CT_clippath
  402. PSL_fillbox
  403. {V PSL_setboxrgb fill U} if
  404. PSL_drawbox
  405. {PSL_setboxpen S} if N
  406. } if
  407. PSL_settxtrgb PSL_CT_placeline PSL_str k get PSL_gap_x PSL_just PSL_height PSL_pathtext
  408. } def
  409. /PSL_CT_clippath
  410. {
  411. /H PSL_height 2 div PSL_gap_y add def
  412. /xoff j 1 add array def
  413. /yoff j 1 add array def
  414. /angle 0 def
  415. 0 1 j {
  416. /ii exch def
  417. /x PSL_xp ii get def
  418. /y PSL_yp ii get def
  419. ii 0 eq {
  420. /x1 PSL_xp 1 get def
  421. /y1 PSL_yp 1 get def
  422. /dx x1 x sub def
  423. /dy y1 y sub def
  424. }
  425. { /i1 ii 1 sub def
  426. /x1 PSL_xp i1 get def
  427. /y1 PSL_yp i1 get def
  428. /dx x x1 sub def
  429. /dy y y1 sub def
  430. } ifelse
  431. dx 0.0 ne dy 0.0 ne and
  432. { /angle dy dx atan 90 add def} if
  433. /sina angle sin def
  434. /cosa angle cos def
  435. xoff ii H cosa mul put
  436. yoff ii H sina mul put
  437. } for
  438. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  439. 1 1 j {
  440. /ii exch def
  441. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  442. } for
  443. j -1 0 {
  444. /ii exch def
  445. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  446. } for P
  447. } def
  448. /PSL_CT_drawline
  449. {
  450. /str 20 string def
  451. PSL_strokeline
  452. {PSL_CT_placeline PSL_setlinepen S} if
  453. /PSL_seg PSL_seg 1 add def
  454. /n 1 def
  455. } def
  456. /PSL_CT_placeline
  457. {PSL_xp 0 get PSL_yp 0 get M
  458. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  459. } def
  460. /PSL_straight_text_labels
  461. {
  462. /bits exch def
  463. /PSL_clippath bits 1 and 0 eq def
  464. /PSL_rounded bits 16 and 16 eq def
  465. /PSL_fillbox bits 128 and 128 eq def
  466. /PSL_drawbox bits 256 and 256 eq def
  467. /PSL_m1 PSL_m 1 sub def
  468. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  469. /PSL_justy PSL_just 4 idiv PSL_height mul 2 div neg def
  470. /PSL_usebox PSL_fillbox PSL_drawbox or def
  471. PSL_clippath
  472. {PSL_ST_clippath}
  473. {PSL_usebox {PSL_ST_clippath} if
  474. PSL_ST_placelabel
  475. } ifelse
  476. } def
  477. /PSL_ST_placelabel
  478. {PSL_settxtrgb
  479. 0 1 PSL_m1
  480. { /k exch def
  481. /xp PSL_txt_x k get def
  482. /yp PSL_txt_y k get def
  483. V PSL_txt_x k get PSL_txt_y k get T
  484. PSL_angle k get R
  485. /BoxW PSL_str k get stringwidth pop def
  486. BoxW PSL_justx mul PSL_justy M
  487. PSL_str k get show
  488. U
  489. } for
  490. } def
  491. /PSL_ST_clippath
  492. {N
  493. PSL_usebox not {clipsave clippath} if
  494. PSL_rounded {PSL_ST_clippath_round} {PSL_ST_clippath_rect} ifelse
  495. PSL_usebox
  496. {PSL_fillbox
  497. {V PSL_setboxrgb fill U} if
  498. PSL_drawbox
  499. {PSL_setboxpen S} if N
  500. }
  501. {PSL_clip
  502. } ifelse
  503. N
  504. } def
  505. /PSL_ST_clippath_rect
  506. {
  507. /BoxH PSL_height PSL_gap_y 2 mul add def
  508. /DelY BoxH BoxH 0 3 array astore def
  509. 0 1 PSL_m1
  510. { /k exch def
  511. /xp PSL_txt_x k get def
  512. /yp PSL_txt_y k get def
  513. /MAT PSL_angle k get matrix R def
  514. /BoxW PSL_str k get stringwidth pop PSL_gap_x 2 mul add def
  515. /x0 0 BoxW PSL_justx mul add def
  516. /y0 0 PSL_justy add PSL_gap_y sub def
  517. /DelX 0 BoxW BoxW 3 array astore def
  518. x0 y0 MAT transform
  519. /dy exch def /dx exch def
  520. xp dx add yp dy add M
  521. 0 1 2
  522. {
  523. /ii exch def
  524. x0 DelX ii get add y0 DelY ii get add MAT transform
  525. /dy exch def /dx exch def
  526. xp dx add yp dy add L
  527. } for P
  528. } for
  529. } def
  530. /PSL_ST_clippath_round
  531. {
  532. /PSL_justy2 PSL_just 4 idiv 2 div neg def
  533. /BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  534. /BoxH PSL_height PSL_gap_y 2 mul add def
  535. /y0 PSL_height PSL_gap_y 2 mul add PSL_justy2 mul def
  536. 0 1 PSL_m1
  537. { /k exch def
  538. /xp PSL_txt_x k get def
  539. /yp PSL_txt_y k get def
  540. /BoxW PSL_str k get stringwidth pop PSL_gap_x 2 mul add def
  541. /x0 BoxW PSL_justx mul def
  542. xp yp T PSL_angle k get R x0 y0 T
  543. BoxR 0 M
  544. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct P
  545. x0 neg y0 neg T PSL_angle k get neg R xp neg yp neg T
  546. } for
  547. } def
  548. /PSL_nclip 0 def
  549. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  550. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  551. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  552. %%EndProlog
  553. %%BeginSetup
  554. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  555. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  556. %%EndSetup
  557. %%Page: 1 1
  558. %%BeginPageSetup
  559. V 0.06 0.06 scale
  560. %%EndPageSetup
  561. /PSL_page_xsize 10200 def
  562. /PSL_page_ysize 13200 def
  563. 0 A
  564. FQ
  565. O0
  566. 1890 11339 TM
  567. % PostScript produced by:
  568. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -K -R-0.5/2.5/-0.5/2.5 -P -X4c -Y24c
  569. %%PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy +a=6378137.000 +b=6356752.314245
  570. 0 setlinecap
  571. 0 setlinejoin
  572. 3.32551 setmiterlimit
  573. clipsave
  574. 0 0 M
  575. 1200 0 D
  576. 0 1200 D
  577. -1200 0 D
  578. PSL_eoclip N
  579. V N 0 0 T 1200 1200 scale /DeviceRGB setcolorspace
  580. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 3 /Height 3 /BitsPerComponent 8
  581. /ImageMatrix [3 0 0 -3 0 3] /DataSource currentfile /ASCII85Decode filter
  582. >> image
  583. $3:)+ruM+o!,MZ8!<7TLP5rl.rrE)Ys7H?~>
  584. U
  585. PSL_cliprestore
  586. 2 setlinecap
  587. /MM {neg exch M} def
  588. /PSL_A0_y 83 def
  589. /PSL_A1_y 0 def
  590. 25 W
  591. 0 1200 M 0 -1200 D S
  592. 8 W
  593. 0 200 M -83 0 D S
  594. 0 600 M -83 0 D S
  595. 0 1000 M -83 0 D S
  596. /PSL_AH0 0
  597. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  598. 167 F0
  599. (0) sw mx
  600. (1) sw mx
  601. (2) sw mx
  602. def
  603. /PSL_A0_y PSL_A0_y 83 add def
  604. 200 PSL_A0_y MM
  605. (0) mr Z
  606. 600 PSL_A0_y MM
  607. (1) mr Z
  608. 1000 PSL_A0_y MM
  609. (2) mr Z
  610. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  611. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  612. 1200 0 T
  613. /MM {exch M} def
  614. /PSL_A0_y 83 def
  615. /PSL_A1_y 0 def
  616. 25 W
  617. 0 1200 M 0 -1200 D S
  618. 8 W
  619. 0 200 M 83 0 D S
  620. 0 600 M 83 0 D S
  621. 0 1000 M 83 0 D S
  622. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  623. -1200 0 T
  624. /MM {neg M} def
  625. /PSL_A0_y 83 def
  626. /PSL_A1_y 0 def
  627. 25 W
  628. 0 0 M 1200 0 D S
  629. 8 W
  630. 200 0 M 0 -83 D S
  631. 600 0 M 0 -83 D S
  632. 1000 0 M 0 -83 D S
  633. /PSL_AH0 0
  634. (0) sh mx
  635. (1) sh mx
  636. (2) sh mx
  637. def
  638. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  639. 200 PSL_A0_y MM
  640. (0) bc Z
  641. 600 PSL_A0_y MM
  642. (1) bc Z
  643. 1000 PSL_A0_y MM
  644. (2) bc Z
  645. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  646. 0 1200 T
  647. /MM {M} def
  648. /PSL_A0_y 83 def
  649. /PSL_A1_y 0 def
  650. 25 W
  651. 0 0 M 1200 0 D S
  652. 8 W
  653. 200 0 M 0 83 D S
  654. 600 0 M 0 83 D S
  655. 1000 0 M 0 83 D S
  656. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  657. 0 -1200 T
  658. 0 setlinecap
  659. 0 A
  660. FQ
  661. O0
  662. 0 0 TM
  663. % PostScript produced by:
  664. %%GMT: pstext -R-0.5/2.5/-0.5/2.5 -JX1i -N -F+f10p+jBR -O -K
  665. %%PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy +a=6378137.000 +b=6356752.314245
  666. 0 setlinecap
  667. 0 setlinejoin
  668. 3.32551 setmiterlimit
  669. -360 800 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  670. 167 F0
  671. (grdmath) br Z
  672. -360 600 M (grdimage) br Z
  673. 0 A
  674. FQ
  675. O0
  676. 1890 0 TM
  677. % PostScript produced by:
  678. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -O -K -R0/2/0/2 -X4c
  679. %%PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  680. 0 setlinecap
  681. 0 setlinejoin
  682. 3.32551 setmiterlimit
  683. clipsave
  684. 0 0 M
  685. 1200 0 D
  686. 0 1200 D
  687. -1200 0 D
  688. PSL_eoclip N
  689. V N -300 -300 T 1800 1800 scale /DeviceRGB setcolorspace
  690. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 3 /Height 3 /BitsPerComponent 8
  691. /ImageMatrix [3 0 0 -3 0 3] /DataSource currentfile /ASCII85Decode filter
  692. >> image
  693. $3:)+ruM+o!,MZ8!<7TLP5rl.rrE)Ys7H?~>
  694. U
  695. PSL_cliprestore
  696. 2 setlinecap
  697. /MM {neg exch M} def
  698. /PSL_A0_y 83 def
  699. /PSL_A1_y 0 def
  700. 25 W
  701. 0 1200 M 0 -1200 D S
  702. 8 W
  703. 0 0 M -83 0 D S
  704. 0 600 M -83 0 D S
  705. 0 1200 M -83 0 D S
  706. /PSL_AH0 0
  707. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  708. 167 F0
  709. (0) sw mx
  710. (1) sw mx
  711. (2) sw mx
  712. def
  713. /PSL_A0_y PSL_A0_y 83 add def
  714. 0 PSL_A0_y MM
  715. (0) mr Z
  716. 600 PSL_A0_y MM
  717. (1) mr Z
  718. 1200 PSL_A0_y MM
  719. (2) mr Z
  720. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  721. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  722. 1200 0 T
  723. /MM {exch M} def
  724. /PSL_A0_y 83 def
  725. /PSL_A1_y 0 def
  726. 25 W
  727. 0 1200 M 0 -1200 D S
  728. 8 W
  729. 0 0 M 83 0 D S
  730. 0 600 M 83 0 D S
  731. 0 1200 M 83 0 D S
  732. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  733. -1200 0 T
  734. /MM {neg M} def
  735. /PSL_A0_y 83 def
  736. /PSL_A1_y 0 def
  737. 25 W
  738. 0 0 M 1200 0 D S
  739. 8 W
  740. 0 0 M 0 -83 D S
  741. 600 0 M 0 -83 D S
  742. 1200 0 M 0 -83 D S
  743. /PSL_AH0 0
  744. (0) sh mx
  745. (1) sh mx
  746. (2) sh mx
  747. def
  748. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  749. 0 PSL_A0_y MM
  750. (0) bc Z
  751. 600 PSL_A0_y MM
  752. (1) bc Z
  753. 1200 PSL_A0_y MM
  754. (2) bc Z
  755. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  756. 0 1200 T
  757. /MM {M} def
  758. /PSL_A0_y 83 def
  759. /PSL_A1_y 0 def
  760. 25 W
  761. 0 0 M 1200 0 D S
  762. 8 W
  763. 0 0 M 0 83 D S
  764. 600 0 M 0 83 D S
  765. 1200 0 M 0 83 D S
  766. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  767. 0 -1200 T
  768. 0 setlinecap
  769. 0 A
  770. FQ
  771. O0
  772. 1890 0 TM
  773. % PostScript produced by:
  774. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -O -K -R-0.5/1.5/0/2 -X4c
  775. %%PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  776. 0 setlinecap
  777. 0 setlinejoin
  778. 3.32551 setmiterlimit
  779. clipsave
  780. 0 0 M
  781. 1200 0 D
  782. 0 1200 D
  783. -1200 0 D
  784. PSL_eoclip N
  785. V N 0 -300 T 1200 1800 scale /DeviceRGB setcolorspace
  786. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 2 /Height 3 /BitsPerComponent 8
  787. /ImageMatrix [2 0 0 -3 0 3] /DataSource currentfile /ASCII85Decode filter /LZWDecode filter
  788. >> image
  789. J-(63p_\,+"+d*_d"hLU!W~>
  790. U
  791. PSL_cliprestore
  792. 2 setlinecap
  793. /MM {neg exch M} def
  794. /PSL_A0_y 83 def
  795. /PSL_A1_y 0 def
  796. 25 W
  797. 0 1200 M 0 -1200 D S
  798. 8 W
  799. 0 0 M -83 0 D S
  800. 0 600 M -83 0 D S
  801. 0 1200 M -83 0 D S
  802. /PSL_AH0 0
  803. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  804. 167 F0
  805. (0) sw mx
  806. (1) sw mx
  807. (2) sw mx
  808. def
  809. /PSL_A0_y PSL_A0_y 83 add def
  810. 0 PSL_A0_y MM
  811. (0) mr Z
  812. 600 PSL_A0_y MM
  813. (1) mr Z
  814. 1200 PSL_A0_y MM
  815. (2) mr Z
  816. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  817. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  818. 1200 0 T
  819. /MM {exch M} def
  820. /PSL_A0_y 83 def
  821. /PSL_A1_y 0 def
  822. 25 W
  823. 0 1200 M 0 -1200 D S
  824. 8 W
  825. 0 0 M 83 0 D S
  826. 0 600 M 83 0 D S
  827. 0 1200 M 83 0 D S
  828. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  829. -1200 0 T
  830. /MM {neg M} def
  831. /PSL_A0_y 83 def
  832. /PSL_A1_y 0 def
  833. 25 W
  834. 0 0 M 1200 0 D S
  835. 8 W
  836. 300 0 M 0 -83 D S
  837. 900 0 M 0 -83 D S
  838. /PSL_AH0 0
  839. (0) sh mx
  840. (1) sh mx
  841. def
  842. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  843. 300 PSL_A0_y MM
  844. (0) bc Z
  845. 900 PSL_A0_y MM
  846. (1) bc Z
  847. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  848. 0 1200 T
  849. /MM {M} def
  850. /PSL_A0_y 83 def
  851. /PSL_A1_y 0 def
  852. 25 W
  853. 0 0 M 1200 0 D S
  854. 8 W
  855. 300 0 M 0 83 D S
  856. 900 0 M 0 83 D S
  857. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  858. 0 -1200 T
  859. 0 setlinecap
  860. 0 A
  861. FQ
  862. O0
  863. 1890 0 TM
  864. % PostScript produced by:
  865. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -O -K -R-1/3/-1/3 -X4c
  866. %%PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy +a=6378137.000 +b=6356752.314245
  867. 0 setlinecap
  868. 0 setlinejoin
  869. 3.32551 setmiterlimit
  870. clipsave
  871. 0 0 M
  872. 1200 0 D
  873. 0 1200 D
  874. -1200 0 D
  875. PSL_eoclip N
  876. V N 150 150 T 900 900 scale /DeviceRGB setcolorspace
  877. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 3 /Height 3 /BitsPerComponent 8
  878. /ImageMatrix [3 0 0 -3 0 3] /DataSource currentfile /ASCII85Decode filter
  879. >> image
  880. $3:)+ruM+o!,MZ8!<7TLP5rl.rrE)Ys7H?~>
  881. U
  882. PSL_cliprestore
  883. 2 setlinecap
  884. /MM {neg exch M} def
  885. /PSL_A0_y 83 def
  886. /PSL_A1_y 0 def
  887. 25 W
  888. 0 1200 M 0 -1200 D S
  889. 8 W
  890. 0 0 M -83 0 D S
  891. 0 300 M -83 0 D S
  892. 0 600 M -83 0 D S
  893. 0 900 M -83 0 D S
  894. 0 1200 M -83 0 D S
  895. /PSL_AH0 0
  896. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  897. 167 F0
  898. (-1) sw mx
  899. (0) sw mx
  900. (1) sw mx
  901. (2) sw mx
  902. (3) sw mx
  903. def
  904. /PSL_A0_y PSL_A0_y 83 add def
  905. 0 PSL_A0_y MM
  906. (-1) mr Z
  907. 300 PSL_A0_y MM
  908. (0) mr Z
  909. 600 PSL_A0_y MM
  910. (1) mr Z
  911. 900 PSL_A0_y MM
  912. (2) mr Z
  913. 1200 PSL_A0_y MM
  914. (3) mr Z
  915. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  916. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  917. 1200 0 T
  918. /MM {exch M} def
  919. /PSL_A0_y 83 def
  920. /PSL_A1_y 0 def
  921. 25 W
  922. 0 1200 M 0 -1200 D S
  923. 8 W
  924. 0 0 M 83 0 D S
  925. 0 300 M 83 0 D S
  926. 0 600 M 83 0 D S
  927. 0 900 M 83 0 D S
  928. 0 1200 M 83 0 D S
  929. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  930. -1200 0 T
  931. /MM {neg M} def
  932. /PSL_A0_y 83 def
  933. /PSL_A1_y 0 def
  934. 25 W
  935. 0 0 M 1200 0 D S
  936. 8 W
  937. 0 0 M 0 -83 D S
  938. 300 0 M 0 -83 D S
  939. 600 0 M 0 -83 D S
  940. 900 0 M 0 -83 D S
  941. 1200 0 M 0 -83 D S
  942. /PSL_AH0 0
  943. (-1) sh mx
  944. (0) sh mx
  945. (1) sh mx
  946. (2) sh mx
  947. (3) sh mx
  948. def
  949. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  950. 0 PSL_A0_y MM
  951. (-1) bc Z
  952. 300 PSL_A0_y MM
  953. (0) bc Z
  954. 600 PSL_A0_y MM
  955. (1) bc Z
  956. 900 PSL_A0_y MM
  957. (2) bc Z
  958. 1200 PSL_A0_y MM
  959. (3) bc Z
  960. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  961. 0 1200 T
  962. /MM {M} def
  963. /PSL_A0_y 83 def
  964. /PSL_A1_y 0 def
  965. 25 W
  966. 0 0 M 1200 0 D S
  967. 8 W
  968. 0 0 M 0 83 D S
  969. 300 0 M 0 83 D S
  970. 600 0 M 0 83 D S
  971. 900 0 M 0 83 D S
  972. 1200 0 M 0 83 D S
  973. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  974. 0 -1200 T
  975. 0 setlinecap
  976. 0 A
  977. FQ
  978. O0
  979. -5669 -1890 TM
  980. % PostScript produced by:
  981. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-0.5/2.5/-0.5/2.5 -X-12c -Y-4c -nl
  982. %%PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy +a=6378137.000 +b=6356752.314245
  983. 0 setlinecap
  984. 0 setlinejoin
  985. 3.32551 setmiterlimit
  986. clipsave
  987. 0 0 M
  988. 1200 0 D
  989. 0 1200 D
  990. -1200 0 D
  991. PSL_eoclip N
  992. V N 200 200 T 800 800 scale [/Indexed /DeviceRGB 12 <
  993. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFCE00FF>] setcolorspace
  994. << /ImageType 1 /Decode [0 15] /Width 33 /Height 33 /BitsPerComponent 4
  995. /ImageMatrix [33 0 0 -33 0 33] /DataSource currentfile /ASCII85Decode filter /LZWDecode filter
  996. >> image
  997. J,fWo+V;k06m@mi`acR<&=H6@+Ab?D*YSp9_p^=g(lBgL.[?]hj@jFo&W]6!Or5/^9+h6I,P&AWh!ZkZ9P#G?TpX.bQ[gG[=
  998. lcl<3(QlB'M2OZNt8&1@"UK#?CmR\`9EP#c!UQUK1I3ujN;=J>*$Ya[Tbk;dk$HPCsmT#&pnW/cDGdm"m0AqT$ct!\kn9P7_
  999. [h0GQP!.DMV$HUUUZj,9_`E<H6CPNIN;kKhHGEfVX8@QdT/J1K\ZLGAY+NXr?,F(AB\Ul`Bi^A;ZGNa^MZbl+/U9_8G;q*,L
  1000. m928nVHoA&XGr:/"q_0"*hAu=Hq7Pcs2m09fr!<<~>
  1001. U
  1002. PSL_cliprestore
  1003. 2 setlinecap
  1004. /MM {neg exch M} def
  1005. /PSL_A0_y 83 def
  1006. /PSL_A1_y 0 def
  1007. 25 W
  1008. 0 1200 M 0 -1200 D S
  1009. 8 W
  1010. 0 200 M -83 0 D S
  1011. 0 600 M -83 0 D S
  1012. 0 1000 M -83 0 D S
  1013. /PSL_AH0 0
  1014. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1015. 167 F0
  1016. (0) sw mx
  1017. (1) sw mx
  1018. (2) sw mx
  1019. def
  1020. /PSL_A0_y PSL_A0_y 83 add def
  1021. 200 PSL_A0_y MM
  1022. (0) mr Z
  1023. 600 PSL_A0_y MM
  1024. (1) mr Z
  1025. 1000 PSL_A0_y MM
  1026. (2) mr Z
  1027. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1028. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1029. 1200 0 T
  1030. /MM {exch M} def
  1031. /PSL_A0_y 83 def
  1032. /PSL_A1_y 0 def
  1033. 25 W
  1034. 0 1200 M 0 -1200 D S
  1035. 8 W
  1036. 0 200 M 83 0 D S
  1037. 0 600 M 83 0 D S
  1038. 0 1000 M 83 0 D S
  1039. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1040. -1200 0 T
  1041. /MM {neg M} def
  1042. /PSL_A0_y 83 def
  1043. /PSL_A1_y 0 def
  1044. 25 W
  1045. 0 0 M 1200 0 D S
  1046. 8 W
  1047. 200 0 M 0 -83 D S
  1048. 600 0 M 0 -83 D S
  1049. 1000 0 M 0 -83 D S
  1050. /PSL_AH0 0
  1051. (0) sh mx
  1052. (1) sh mx
  1053. (2) sh mx
  1054. def
  1055. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1056. 200 PSL_A0_y MM
  1057. (0) bc Z
  1058. 600 PSL_A0_y MM
  1059. (1) bc Z
  1060. 1000 PSL_A0_y MM
  1061. (2) bc Z
  1062. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1063. 0 1200 T
  1064. /MM {M} def
  1065. /PSL_A0_y 83 def
  1066. /PSL_A1_y 0 def
  1067. 25 W
  1068. 0 0 M 1200 0 D S
  1069. 8 W
  1070. 200 0 M 0 83 D S
  1071. 600 0 M 0 83 D S
  1072. 1000 0 M 0 83 D S
  1073. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1074. 0 -1200 T
  1075. 0 setlinecap
  1076. 0 A
  1077. FQ
  1078. O0
  1079. 0 0 TM
  1080. % PostScript produced by:
  1081. %%GMT: grdcontour t.nc -Ct.cpt -JX1i -R-0.5/2.5/-0.5/2.5 -O -K
  1082. %%PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy +a=6378137.000 +b=6356752.314245
  1083. 0 setlinecap
  1084. 0 setlinejoin
  1085. 3.32551 setmiterlimit
  1086. clipsave
  1087. 0 0 M
  1088. 1200 0 D
  1089. 0 1200 D
  1090. -1200 0 D
  1091. PSL_eoclip N
  1092. 12 W
  1093. 240 200 M
  1094. -40 200 D
  1095. S
  1096. 320 200 M
  1097. -120 600 D
  1098. S
  1099. 400 200 M
  1100. -160 800 D
  1101. S
  1102. 480 200 M
  1103. -160 800 D
  1104. S
  1105. 560 200 M
  1106. -160 800 D
  1107. S
  1108. 640 200 M
  1109. -160 800 D
  1110. S
  1111. 720 200 M
  1112. -160 800 D
  1113. S
  1114. 800 200 M
  1115. -160 800 D
  1116. S
  1117. 880 200 M
  1118. -160 800 D
  1119. S
  1120. 960 200 M
  1121. -160 800 D
  1122. S
  1123. 1000 400 M
  1124. -120 600 D
  1125. S
  1126. 1000 800 M
  1127. -40 200 D
  1128. S
  1129. PSL_cliprestore
  1130. 0 A
  1131. FQ
  1132. O0
  1133. 0 0 TM
  1134. % PostScript produced by:
  1135. %%GMT: pstext -R-0.5/2.5/-0.5/2.5 -JX1i -N -F+f10p+jBR -O -K
  1136. %%PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy +a=6378137.000 +b=6356752.314245
  1137. 0 setlinecap
  1138. 0 setlinejoin
  1139. 3.32551 setmiterlimit
  1140. -360 800 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1141. 167 F0
  1142. (grdmath) br Z
  1143. -360 600 M (grdimage -E50 -nl) br Z
  1144. 0 A
  1145. FQ
  1146. O0
  1147. 1890 0 TM
  1148. % PostScript produced by:
  1149. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R0/2/0/2 -X4c -nl
  1150. %%PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  1151. 0 setlinecap
  1152. 0 setlinejoin
  1153. 3.32551 setmiterlimit
  1154. clipsave
  1155. 0 0 M
  1156. 1200 0 D
  1157. 0 1200 D
  1158. -1200 0 D
  1159. PSL_eoclip N
  1160. V N 0 0 T 1200 1200 scale [/Indexed /DeviceRGB 12 <
  1161. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFCE00FF>] setcolorspace
  1162. << /ImageType 1 /Decode [0 15] /Width 50 /Height 50 /BitsPerComponent 4
  1163. /ImageMatrix [50 0 0 -50 0 50] /DataSource currentfile /ASCII85Decode filter /LZWDecode filter
  1164. >> image
  1165. J,fQm&;Z-1,8lH]KL.+eWb+%)cKB:9+VL2:Wh<0Z1a3YCLI<=`8@2h`"+nAJ0Xtp_,85sRj"\)<H<DDXaX0o1jJkErO\@%,0
  1166. E_q5#)%sZE8n5k-?tEf'0lmQ7ZJ[gd`SrG2*Rb&WRYbVOsMlRGGl]8<D#+kB1fJ\m.QoSMVW6X=)A]L%&,g6O@uBj(r]DO5+
  1167. CK/;_0d!D1SA*Yd7"#rc*Raj(>e."Qp&Y=Bd9,HI[&LC=$XqG5X#<^S/8?24#=@mnp<tm&q3Ue^II%Z<hYCL#-SqM9+X8\P,
  1168. I[4XK4KnbLtY?_`Y,AasK+^2GT\aY*<+4k@)h;=SD.Rn\%+e%jZ+[b]7NYBRCcHhTWCk7)V&\F+F<s1$?iW5ZQ4A#AW@:eRV
  1169. N]EsN:loXW-/H<Gf>NE0/%o^XE4QJmkpce._7fC%SlYR<JO5o_eR;eY.j>lah!<YWMKOk/!kp1*I_/P5C+2Ld,/7q>3ZcoUE
  1170. &(Fet`U[h$&&VpGV%6#>FKZ<KCYAg~>
  1171. U
  1172. PSL_cliprestore
  1173. 2 setlinecap
  1174. /MM {neg exch M} def
  1175. /PSL_A0_y 83 def
  1176. /PSL_A1_y 0 def
  1177. 25 W
  1178. 0 1200 M 0 -1200 D S
  1179. 8 W
  1180. 0 0 M -83 0 D S
  1181. 0 600 M -83 0 D S
  1182. 0 1200 M -83 0 D S
  1183. /PSL_AH0 0
  1184. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1185. 167 F0
  1186. (0) sw mx
  1187. (1) sw mx
  1188. (2) sw mx
  1189. def
  1190. /PSL_A0_y PSL_A0_y 83 add def
  1191. 0 PSL_A0_y MM
  1192. (0) mr Z
  1193. 600 PSL_A0_y MM
  1194. (1) mr Z
  1195. 1200 PSL_A0_y MM
  1196. (2) mr Z
  1197. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1198. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1199. 1200 0 T
  1200. /MM {exch M} def
  1201. /PSL_A0_y 83 def
  1202. /PSL_A1_y 0 def
  1203. 25 W
  1204. 0 1200 M 0 -1200 D S
  1205. 8 W
  1206. 0 0 M 83 0 D S
  1207. 0 600 M 83 0 D S
  1208. 0 1200 M 83 0 D S
  1209. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1210. -1200 0 T
  1211. /MM {neg M} def
  1212. /PSL_A0_y 83 def
  1213. /PSL_A1_y 0 def
  1214. 25 W
  1215. 0 0 M 1200 0 D S
  1216. 8 W
  1217. 0 0 M 0 -83 D S
  1218. 600 0 M 0 -83 D S
  1219. 1200 0 M 0 -83 D S
  1220. /PSL_AH0 0
  1221. (0) sh mx
  1222. (1) sh mx
  1223. (2) sh mx
  1224. def
  1225. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1226. 0 PSL_A0_y MM
  1227. (0) bc Z
  1228. 600 PSL_A0_y MM
  1229. (1) bc Z
  1230. 1200 PSL_A0_y MM
  1231. (2) bc Z
  1232. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1233. 0 1200 T
  1234. /MM {M} def
  1235. /PSL_A0_y 83 def
  1236. /PSL_A1_y 0 def
  1237. 25 W
  1238. 0 0 M 1200 0 D S
  1239. 8 W
  1240. 0 0 M 0 83 D S
  1241. 600 0 M 0 83 D S
  1242. 1200 0 M 0 83 D S
  1243. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1244. 0 -1200 T
  1245. 0 setlinecap
  1246. 0 A
  1247. FQ
  1248. O0
  1249. 0 0 TM
  1250. % PostScript produced by:
  1251. %%GMT: grdcontour t.nc -Ct.cpt -JX1i -R0/2/0/2 -O -K
  1252. %%PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  1253. 0 setlinecap
  1254. 0 setlinejoin
  1255. 3.32551 setmiterlimit
  1256. clipsave
  1257. 0 0 M
  1258. 1200 0 D
  1259. 0 1200 D
  1260. -1200 0 D
  1261. PSL_eoclip N
  1262. 12 W
  1263. 60 0 M
  1264. -60 300 D
  1265. S
  1266. 180 0 M
  1267. -180 900 D
  1268. S
  1269. 300 0 M
  1270. -240 1200 D
  1271. S
  1272. 420 0 M
  1273. -240 1200 D
  1274. S
  1275. 540 0 M
  1276. -240 1200 D
  1277. S
  1278. 660 0 M
  1279. -240 1200 D
  1280. S
  1281. 780 0 M
  1282. -240 1200 D
  1283. S
  1284. 900 0 M
  1285. -240 1200 D
  1286. S
  1287. 1020 0 M
  1288. -240 1200 D
  1289. S
  1290. 1140 0 M
  1291. -240 1200 D
  1292. S
  1293. 1200 300 M
  1294. -180 900 D
  1295. S
  1296. 1200 900 M
  1297. -60 300 D
  1298. S
  1299. PSL_cliprestore
  1300. 0 A
  1301. FQ
  1302. O0
  1303. 1890 0 TM
  1304. % PostScript produced by:
  1305. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-0.5/1.5/0/2 -X4c -nl
  1306. %%PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  1307. 0 setlinecap
  1308. 0 setlinejoin
  1309. 3.32551 setmiterlimit
  1310. clipsave
  1311. 0 0 M
  1312. 1200 0 D
  1313. 0 1200 D
  1314. -1200 0 D
  1315. PSL_eoclip N
  1316. V N 300 0 T 1200 1200 scale [/Indexed /DeviceRGB 12 <
  1317. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFCE00FF>] setcolorspace
  1318. << /ImageType 1 /Decode [0 15] /Width 50 /Height 50 /BitsPerComponent 4
  1319. /ImageMatrix [50 0 0 -50 0 50] /DataSource currentfile /ASCII85Decode filter /LZWDecode filter
  1320. >> image
  1321. J,fQm&;Z-1,8lH]KL.+eWb+%)cKB:9+VL2:Wh<0Z1a3YCLI<=`8@2h`"+nAJ0Xtp_,85sRj"\)<H<DDXaX0o1jJkErO\@%,0
  1322. E_q5#)%sZE8n5k-?tEf'0lmQ7ZJ[gd`SrG2*Rb&WRYbVOsMlRGGl]8<D#+kB1fJ\m.QoSMVW6X=)A]L%&,g6O@uBj(r]DO5+
  1323. CK/;_0d!D1SA*Yd7"#rc*Raj(>e."Qp&Y=Bd9,HI[&LC=$XqG5X#<^S/8?24#=@mnp<tm&q3Ue^II%Z<hYCL#-SqM9+X8\P,
  1324. I[4XK4KnbLtY?_`Y,AasK+^2GT\aY*<+4k@)h;=SD.Rn\%+e%jZ+[b]7NYBRCcHhTWCk7)V&\F+F<s1$?iW5ZQ4A#AW@:eRV
  1325. N]EsN:loXW-/H<Gf>NE0/%o^XE4QJmkpce._7fC%SlYR<JO5o_eR;eY.j>lah!<YWMKOk/!kp1*I_/P5C+2Ld,/7q>3ZcoUE
  1326. &(Fet`U[h$&&VpGV%6#>FKZ<KCYAg~>
  1327. U
  1328. PSL_cliprestore
  1329. 2 setlinecap
  1330. /MM {neg exch M} def
  1331. /PSL_A0_y 83 def
  1332. /PSL_A1_y 0 def
  1333. 25 W
  1334. 0 1200 M 0 -1200 D S
  1335. 8 W
  1336. 0 0 M -83 0 D S
  1337. 0 600 M -83 0 D S
  1338. 0 1200 M -83 0 D S
  1339. /PSL_AH0 0
  1340. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1341. 167 F0
  1342. (0) sw mx
  1343. (1) sw mx
  1344. (2) sw mx
  1345. def
  1346. /PSL_A0_y PSL_A0_y 83 add def
  1347. 0 PSL_A0_y MM
  1348. (0) mr Z
  1349. 600 PSL_A0_y MM
  1350. (1) mr Z
  1351. 1200 PSL_A0_y MM
  1352. (2) mr Z
  1353. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1354. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1355. 1200 0 T
  1356. /MM {exch M} def
  1357. /PSL_A0_y 83 def
  1358. /PSL_A1_y 0 def
  1359. 25 W
  1360. 0 1200 M 0 -1200 D S
  1361. 8 W
  1362. 0 0 M 83 0 D S
  1363. 0 600 M 83 0 D S
  1364. 0 1200 M 83 0 D S
  1365. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1366. -1200 0 T
  1367. /MM {neg M} def
  1368. /PSL_A0_y 83 def
  1369. /PSL_A1_y 0 def
  1370. 25 W
  1371. 0 0 M 1200 0 D S
  1372. 8 W
  1373. 300 0 M 0 -83 D S
  1374. 900 0 M 0 -83 D S
  1375. /PSL_AH0 0
  1376. (0) sh mx
  1377. (1) sh mx
  1378. def
  1379. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1380. 300 PSL_A0_y MM
  1381. (0) bc Z
  1382. 900 PSL_A0_y MM
  1383. (1) bc Z
  1384. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1385. 0 1200 T
  1386. /MM {M} def
  1387. /PSL_A0_y 83 def
  1388. /PSL_A1_y 0 def
  1389. 25 W
  1390. 0 0 M 1200 0 D S
  1391. 8 W
  1392. 300 0 M 0 83 D S
  1393. 900 0 M 0 83 D S
  1394. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1395. 0 -1200 T
  1396. 0 setlinecap
  1397. 0 A
  1398. FQ
  1399. O0
  1400. 0 0 TM
  1401. % PostScript produced by:
  1402. %%GMT: grdcontour t.nc -Ct.cpt -JX1i -R-0.5/1.5/0/2 -O -K
  1403. %%PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  1404. 0 setlinecap
  1405. 0 setlinejoin
  1406. 3.32551 setmiterlimit
  1407. clipsave
  1408. 0 0 M
  1409. 1200 0 D
  1410. 0 1200 D
  1411. -1200 0 D
  1412. PSL_eoclip N
  1413. 12 W
  1414. 360 0 M
  1415. -60 300 D
  1416. S
  1417. 480 0 M
  1418. -180 900 D
  1419. S
  1420. 600 0 M
  1421. -240 1200 D
  1422. S
  1423. 720 0 M
  1424. -240 1200 D
  1425. S
  1426. 840 0 M
  1427. -240 1200 D
  1428. S
  1429. 960 0 M
  1430. -240 1200 D
  1431. S
  1432. 1080 0 M
  1433. -240 1200 D
  1434. S
  1435. 1200 0 M
  1436. -240 1200 D
  1437. S
  1438. 1200 600 M
  1439. -120 600 D
  1440. S
  1441. 1200 1200 M
  1442. 0 0 D
  1443. P S
  1444. PSL_cliprestore
  1445. 0 A
  1446. FQ
  1447. O0
  1448. 1890 0 TM
  1449. % PostScript produced by:
  1450. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-1/3/-1/3 -X4c -nl
  1451. %%PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy +a=6378137.000 +b=6356752.314245
  1452. 0 setlinecap
  1453. 0 setlinejoin
  1454. 3.32551 setmiterlimit
  1455. clipsave
  1456. 0 0 M
  1457. 1200 0 D
  1458. 0 1200 D
  1459. -1200 0 D
  1460. PSL_eoclip N
  1461. V N 300 300 T 600 600 scale [/Indexed /DeviceRGB 12 <
  1462. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFCE00FF>] setcolorspace
  1463. << /ImageType 1 /Decode [0 15] /Width 25 /Height 25 /BitsPerComponent 4
  1464. /ImageMatrix [25 0 0 -25 0 25] /DataSource currentfile /ASCII85Decode filter /LZWDecode filter
  1465. >> image
  1466. J,hn[+dgW6<APZA#aEJ^!<Wpn#`s[!i=QNSLnZU[1fc7>Ld[u"BY["],8nGB`cJdu+V0dZ9!Z!BAmPKE5mW-AZm?9?S'GS$a
  1467. n5W731WnmW0H#Q"U'HE+]QU+%LWMp_We=mgl2nMON/Ts#h4_n(/:so&rBSn^M8s:-?e]L*ec\Ib>EG_71SmE^"oYHqqY;H=G
  1468. :0tom2bZ(s?#_/C@^O7`-InjK)JG?,C)g4.m]=~>
  1469. U
  1470. PSL_cliprestore
  1471. 2 setlinecap
  1472. /MM {neg exch M} def
  1473. /PSL_A0_y 83 def
  1474. /PSL_A1_y 0 def
  1475. 25 W
  1476. 0 1200 M 0 -1200 D S
  1477. 8 W
  1478. 0 0 M -83 0 D S
  1479. 0 300 M -83 0 D S
  1480. 0 600 M -83 0 D S
  1481. 0 900 M -83 0 D S
  1482. 0 1200 M -83 0 D S
  1483. /PSL_AH0 0
  1484. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1485. 167 F0
  1486. (-1) sw mx
  1487. (0) sw mx
  1488. (1) sw mx
  1489. (2) sw mx
  1490. (3) sw mx
  1491. def
  1492. /PSL_A0_y PSL_A0_y 83 add def
  1493. 0 PSL_A0_y MM
  1494. (-1) mr Z
  1495. 300 PSL_A0_y MM
  1496. (0) mr Z
  1497. 600 PSL_A0_y MM
  1498. (1) mr Z
  1499. 900 PSL_A0_y MM
  1500. (2) mr Z
  1501. 1200 PSL_A0_y MM
  1502. (3) mr Z
  1503. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1504. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1505. 1200 0 T
  1506. /MM {exch M} def
  1507. /PSL_A0_y 83 def
  1508. /PSL_A1_y 0 def
  1509. 25 W
  1510. 0 1200 M 0 -1200 D S
  1511. 8 W
  1512. 0 0 M 83 0 D S
  1513. 0 300 M 83 0 D S
  1514. 0 600 M 83 0 D S
  1515. 0 900 M 83 0 D S
  1516. 0 1200 M 83 0 D S
  1517. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1518. -1200 0 T
  1519. /MM {neg M} def
  1520. /PSL_A0_y 83 def
  1521. /PSL_A1_y 0 def
  1522. 25 W
  1523. 0 0 M 1200 0 D S
  1524. 8 W
  1525. 0 0 M 0 -83 D S
  1526. 300 0 M 0 -83 D S
  1527. 600 0 M 0 -83 D S
  1528. 900 0 M 0 -83 D S
  1529. 1200 0 M 0 -83 D S
  1530. /PSL_AH0 0
  1531. (-1) sh mx
  1532. (0) sh mx
  1533. (1) sh mx
  1534. (2) sh mx
  1535. (3) sh mx
  1536. def
  1537. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1538. 0 PSL_A0_y MM
  1539. (-1) bc Z
  1540. 300 PSL_A0_y MM
  1541. (0) bc Z
  1542. 600 PSL_A0_y MM
  1543. (1) bc Z
  1544. 900 PSL_A0_y MM
  1545. (2) bc Z
  1546. 1200 PSL_A0_y MM
  1547. (3) bc Z
  1548. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1549. 0 1200 T
  1550. /MM {M} def
  1551. /PSL_A0_y 83 def
  1552. /PSL_A1_y 0 def
  1553. 25 W
  1554. 0 0 M 1200 0 D S
  1555. 8 W
  1556. 0 0 M 0 83 D S
  1557. 300 0 M 0 83 D S
  1558. 600 0 M 0 83 D S
  1559. 900 0 M 0 83 D S
  1560. 1200 0 M 0 83 D S
  1561. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1562. 0 -1200 T
  1563. 0 setlinecap
  1564. 0 A
  1565. FQ
  1566. O0
  1567. 0 0 TM
  1568. % PostScript produced by:
  1569. %%GMT: grdcontour t.nc -Ct.cpt -JX1i -R-1/3/-1/3 -O -K
  1570. %%PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy +a=6378137.000 +b=6356752.314245
  1571. 0 setlinecap
  1572. 0 setlinejoin
  1573. 3.32551 setmiterlimit
  1574. clipsave
  1575. 0 0 M
  1576. 1200 0 D
  1577. 0 1200 D
  1578. -1200 0 D
  1579. PSL_eoclip N
  1580. 12 W
  1581. 330 300 M
  1582. -30 150 D
  1583. S
  1584. 390 300 M
  1585. -90 450 D
  1586. S
  1587. 450 300 M
  1588. -120 600 D
  1589. S
  1590. 510 300 M
  1591. -120 600 D
  1592. S
  1593. 570 300 M
  1594. -120 600 D
  1595. S
  1596. 630 300 M
  1597. -120 600 D
  1598. S
  1599. 690 300 M
  1600. -120 600 D
  1601. S
  1602. 750 300 M
  1603. -120 600 D
  1604. S
  1605. 810 300 M
  1606. -120 600 D
  1607. S
  1608. 870 300 M
  1609. -120 600 D
  1610. S
  1611. 900 450 M
  1612. -90 450 D
  1613. S
  1614. 900 750 M
  1615. -30 150 D
  1616. S
  1617. PSL_cliprestore
  1618. 0 A
  1619. FQ
  1620. O0
  1621. -5669 -1890 TM
  1622. % PostScript produced by:
  1623. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-0.5/2.5/-0.5/2.5 -X-12c -Y-4c
  1624. %%PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy +a=6378137.000 +b=6356752.314245
  1625. 0 setlinecap
  1626. 0 setlinejoin
  1627. 3.32551 setmiterlimit
  1628. clipsave
  1629. 0 0 M
  1630. 1200 0 D
  1631. 0 1200 D
  1632. -1200 0 D
  1633. PSL_eoclip N
  1634. V N 200 200 T 800 800 scale [/Indexed /DeviceRGB 12 <
  1635. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFCE00FF>] setcolorspace
  1636. << /ImageType 1 /Decode [0 15] /Width 33 /Height 33 /BitsPerComponent 4
  1637. /ImageMatrix [33 0 0 -33 0 33] /DataSource currentfile /ASCII85Decode filter /LZWDecode filter
  1638. >> image
  1639. J,fWo+V;k06m@mi`acR<&=H6@+AbTc+r(NA-;uWI(l1ZeKU&;<KM67d&W]6!Kio#Cmj+)"AJ+JYY$3QB`.0WuR*oe_1X78p\
  1640. P2j&5aTC:!"'teN=)>Q.9+CTp+8godcYUAoHphAM8<^7G\fN$YcuA&dPT4?dpn]]OZ)HgVJA]-h!GeIV#FXF[pLW7HB$0n<"
  1641. W',pf-)kRtIY;EOAF#?D<7tfP8t%$p-7FZ,5k;gI-58ABun#YY@:"&<#(1map]P_b3,(c1UrR'cKM<gL;m+>`'[AbK!47HsT
  1642. #b/"D@cEgX"\j/&3k`]:WB["l$4f]fONKEMD~>
  1643. U
  1644. PSL_cliprestore
  1645. 2 setlinecap
  1646. /MM {neg exch M} def
  1647. /PSL_A0_y 83 def
  1648. /PSL_A1_y 0 def
  1649. 25 W
  1650. 0 1200 M 0 -1200 D S
  1651. 8 W
  1652. 0 200 M -83 0 D S
  1653. 0 600 M -83 0 D S
  1654. 0 1000 M -83 0 D S
  1655. /PSL_AH0 0
  1656. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1657. 167 F0
  1658. (0) sw mx
  1659. (1) sw mx
  1660. (2) sw mx
  1661. def
  1662. /PSL_A0_y PSL_A0_y 83 add def
  1663. 200 PSL_A0_y MM
  1664. (0) mr Z
  1665. 600 PSL_A0_y MM
  1666. (1) mr Z
  1667. 1000 PSL_A0_y MM
  1668. (2) mr Z
  1669. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1670. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1671. 1200 0 T
  1672. /MM {exch M} def
  1673. /PSL_A0_y 83 def
  1674. /PSL_A1_y 0 def
  1675. 25 W
  1676. 0 1200 M 0 -1200 D S
  1677. 8 W
  1678. 0 200 M 83 0 D S
  1679. 0 600 M 83 0 D S
  1680. 0 1000 M 83 0 D S
  1681. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1682. -1200 0 T
  1683. /MM {neg M} def
  1684. /PSL_A0_y 83 def
  1685. /PSL_A1_y 0 def
  1686. 25 W
  1687. 0 0 M 1200 0 D S
  1688. 8 W
  1689. 200 0 M 0 -83 D S
  1690. 600 0 M 0 -83 D S
  1691. 1000 0 M 0 -83 D S
  1692. /PSL_AH0 0
  1693. (0) sh mx
  1694. (1) sh mx
  1695. (2) sh mx
  1696. def
  1697. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1698. 200 PSL_A0_y MM
  1699. (0) bc Z
  1700. 600 PSL_A0_y MM
  1701. (1) bc Z
  1702. 1000 PSL_A0_y MM
  1703. (2) bc Z
  1704. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1705. 0 1200 T
  1706. /MM {M} def
  1707. /PSL_A0_y 83 def
  1708. /PSL_A1_y 0 def
  1709. 25 W
  1710. 0 0 M 1200 0 D S
  1711. 8 W
  1712. 200 0 M 0 83 D S
  1713. 600 0 M 0 83 D S
  1714. 1000 0 M 0 83 D S
  1715. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1716. 0 -1200 T
  1717. 0 setlinecap
  1718. 0 A
  1719. FQ
  1720. O0
  1721. 0 0 TM
  1722. % PostScript produced by:
  1723. %%GMT: grdcontour t.nc -Ct.cpt -JX1i -R-0.5/2.5/-0.5/2.5 -O -K
  1724. %%PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy +a=6378137.000 +b=6356752.314245
  1725. 0 setlinecap
  1726. 0 setlinejoin
  1727. 3.32551 setmiterlimit
  1728. clipsave
  1729. 0 0 M
  1730. 1200 0 D
  1731. 0 1200 D
  1732. -1200 0 D
  1733. PSL_eoclip N
  1734. 12 W
  1735. 240 200 M
  1736. -40 200 D
  1737. S
  1738. 320 200 M
  1739. -120 600 D
  1740. S
  1741. 400 200 M
  1742. -160 800 D
  1743. S
  1744. 480 200 M
  1745. -160 800 D
  1746. S
  1747. 560 200 M
  1748. -160 800 D
  1749. S
  1750. 640 200 M
  1751. -160 800 D
  1752. S
  1753. 720 200 M
  1754. -160 800 D
  1755. S
  1756. 800 200 M
  1757. -160 800 D
  1758. S
  1759. 880 200 M
  1760. -160 800 D
  1761. S
  1762. 960 200 M
  1763. -160 800 D
  1764. S
  1765. 1000 400 M
  1766. -120 600 D
  1767. S
  1768. 1000 800 M
  1769. -40 200 D
  1770. S
  1771. PSL_cliprestore
  1772. 0 A
  1773. FQ
  1774. O0
  1775. 0 0 TM
  1776. % PostScript produced by:
  1777. %%GMT: pstext -R-0.5/2.5/-0.5/2.5 -JX1i -N -F+f10p+jBR -O -K
  1778. %%PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy +a=6378137.000 +b=6356752.314245
  1779. 0 setlinecap
  1780. 0 setlinejoin
  1781. 3.32551 setmiterlimit
  1782. -360 800 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1783. 167 F0
  1784. (grdmath) br Z
  1785. -360 600 M (grdimage -E50) br Z
  1786. 0 A
  1787. FQ
  1788. O0
  1789. 1890 0 TM
  1790. % PostScript produced by:
  1791. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R0/2/0/2 -X4c
  1792. %%PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  1793. 0 setlinecap
  1794. 0 setlinejoin
  1795. 3.32551 setmiterlimit
  1796. clipsave
  1797. 0 0 M
  1798. 1200 0 D
  1799. 0 1200 D
  1800. -1200 0 D
  1801. PSL_eoclip N
  1802. V N 0 0 T 1200 1200 scale [/Indexed /DeviceRGB 12 <
  1803. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFCE00FF>] setcolorspace
  1804. << /ImageType 1 /Decode [0 15] /Width 50 /Height 50 /BitsPerComponent 4
  1805. /ImageMatrix [50 0 0 -50 0 50] /DataSource currentfile /ASCII85Decode filter /LZWDecode filter
  1806. >> image
  1807. J,fQm&;Z-1,8lH]KL.+eWb+%)cKB:9+VL2:Wh<0Z1a3YCLI<=`8@2h`"+nAJ0Xtp_,85sRj"\)<H<DDXaX0o1jJkErL`)q"L
  1808. od%Z*JBCqE8n5kLIFn6J,fit8e"@gQ"dTM]b(hnWDs!W@231,9W(s,()j;[B1fM]XYNNQ:>9?hen]:dNCN;F[nl0'aXUo#.&
  1809. :7IfL_AMHT$spjqq?FelRurAF[$Po\NkYY=99FbJh?GTVuPj<_G?BT3k:WY56n=ULCIDBl@%C%`\OM]\I:KpqlJMM9fdH8Y.
  1810. h]+[DRTH+8h$A"t@7j7<-WB/>V!mUj#!NWttg`*N0jhJO@6^ZjYPpNpg#a*#8U;19FuQfI:8].C9&jX)Y`^?;_:e-tM%E(Y6
  1811. V\r]9*#J_rZXOIh9JpR=%cZB0[6]X>lrO-SP3j1p>ZY9'O&L2>M6>3?b(G(Z4#Xh."C'ao$0"c6-_6Jr=%7cGb#p7!B<*2O+
  1812. Os1>Ha`;32rl"A<;Z99!bbYk>En%9*]oU;;~>
  1813. U
  1814. PSL_cliprestore
  1815. 2 setlinecap
  1816. /MM {neg exch M} def
  1817. /PSL_A0_y 83 def
  1818. /PSL_A1_y 0 def
  1819. 25 W
  1820. 0 1200 M 0 -1200 D S
  1821. 8 W
  1822. 0 0 M -83 0 D S
  1823. 0 600 M -83 0 D S
  1824. 0 1200 M -83 0 D S
  1825. /PSL_AH0 0
  1826. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1827. 167 F0
  1828. (0) sw mx
  1829. (1) sw mx
  1830. (2) sw mx
  1831. def
  1832. /PSL_A0_y PSL_A0_y 83 add def
  1833. 0 PSL_A0_y MM
  1834. (0) mr Z
  1835. 600 PSL_A0_y MM
  1836. (1) mr Z
  1837. 1200 PSL_A0_y MM
  1838. (2) mr Z
  1839. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1840. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1841. 1200 0 T
  1842. /MM {exch M} def
  1843. /PSL_A0_y 83 def
  1844. /PSL_A1_y 0 def
  1845. 25 W
  1846. 0 1200 M 0 -1200 D S
  1847. 8 W
  1848. 0 0 M 83 0 D S
  1849. 0 600 M 83 0 D S
  1850. 0 1200 M 83 0 D S
  1851. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1852. -1200 0 T
  1853. /MM {neg M} def
  1854. /PSL_A0_y 83 def
  1855. /PSL_A1_y 0 def
  1856. 25 W
  1857. 0 0 M 1200 0 D S
  1858. 8 W
  1859. 0 0 M 0 -83 D S
  1860. 600 0 M 0 -83 D S
  1861. 1200 0 M 0 -83 D S
  1862. /PSL_AH0 0
  1863. (0) sh mx
  1864. (1) sh mx
  1865. (2) sh mx
  1866. def
  1867. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1868. 0 PSL_A0_y MM
  1869. (0) bc Z
  1870. 600 PSL_A0_y MM
  1871. (1) bc Z
  1872. 1200 PSL_A0_y MM
  1873. (2) bc Z
  1874. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1875. 0 1200 T
  1876. /MM {M} def
  1877. /PSL_A0_y 83 def
  1878. /PSL_A1_y 0 def
  1879. 25 W
  1880. 0 0 M 1200 0 D S
  1881. 8 W
  1882. 0 0 M 0 83 D S
  1883. 600 0 M 0 83 D S
  1884. 1200 0 M 0 83 D S
  1885. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1886. 0 -1200 T
  1887. 0 setlinecap
  1888. 0 A
  1889. FQ
  1890. O0
  1891. 0 0 TM
  1892. % PostScript produced by:
  1893. %%GMT: grdcontour t.nc -Ct.cpt -JX1i -R0/2/0/2 -O -K
  1894. %%PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  1895. 0 setlinecap
  1896. 0 setlinejoin
  1897. 3.32551 setmiterlimit
  1898. clipsave
  1899. 0 0 M
  1900. 1200 0 D
  1901. 0 1200 D
  1902. -1200 0 D
  1903. PSL_eoclip N
  1904. 12 W
  1905. 60 0 M
  1906. -60 300 D
  1907. S
  1908. 180 0 M
  1909. -180 900 D
  1910. S
  1911. 300 0 M
  1912. -240 1200 D
  1913. S
  1914. 420 0 M
  1915. -240 1200 D
  1916. S
  1917. 540 0 M
  1918. -240 1200 D
  1919. S
  1920. 660 0 M
  1921. -240 1200 D
  1922. S
  1923. 780 0 M
  1924. -240 1200 D
  1925. S
  1926. 900 0 M
  1927. -240 1200 D
  1928. S
  1929. 1020 0 M
  1930. -240 1200 D
  1931. S
  1932. 1140 0 M
  1933. -240 1200 D
  1934. S
  1935. 1200 300 M
  1936. -180 900 D
  1937. S
  1938. 1200 900 M
  1939. -60 300 D
  1940. S
  1941. PSL_cliprestore
  1942. 0 A
  1943. FQ
  1944. O0
  1945. 1890 0 TM
  1946. % PostScript produced by:
  1947. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-0.5/1.5/0/2 -X4c
  1948. %%PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  1949. 0 setlinecap
  1950. 0 setlinejoin
  1951. 3.32551 setmiterlimit
  1952. clipsave
  1953. 0 0 M
  1954. 1200 0 D
  1955. 0 1200 D
  1956. -1200 0 D
  1957. PSL_eoclip N
  1958. V N 300 0 T 1200 1200 scale [/Indexed /DeviceRGB 12 <
  1959. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFCE00FF>] setcolorspace
  1960. << /ImageType 1 /Decode [0 15] /Width 50 /Height 50 /BitsPerComponent 4
  1961. /ImageMatrix [50 0 0 -50 0 50] /DataSource currentfile /ASCII85Decode filter /LZWDecode filter
  1962. >> image
  1963. J,fQm&;Z-1,8lH]KL.+eWb+%)cKB:9+VL2:Wh<0Z1a3YCLI<=`8@2h`"+nAJ0Xtp_,85sRj"\)<H<DDXaX0o1jJkErL`)q"L
  1964. od%Z*JBCqE8n5kLIFn6J,fit8e"@gQ"dTM]b(hnWDs!W@231,9W(s,()j;[B1fM]XYNNQ:>9?hen]:dNCN;F[nl0'aXUo#.&
  1965. :7IfL_AMHT$spjqq?FelRurAF[$Po\NkYY=99FbJh?GTVuPj<_G?BT3k:WY56n=ULCIDBl@%C%`\OM]\I:KpqlJMM9fdH8Y.
  1966. h]+[DRTH+8h$A"t@7j7<-WB/>V!mUj#!NWttg`*N0jhJO@6^ZjYPpNpg#a*#8U;19FuQfI:8].C9&jX)Y`^?;_:e-tM%E(Y6
  1967. V\r]9*#J_rZXOIh9JpR=%cZB0[6]X>lrO-SP3j1p>ZY9'O&L2>M6>3?b(G(Z4#Xh."C'ao$0"c6-_6Jr=%7cGb#p7!B<*2O+
  1968. Os1>Ha`;32rl"A<;Z99!bbYk>En%9*]oU;;~>
  1969. U
  1970. PSL_cliprestore
  1971. 2 setlinecap
  1972. /MM {neg exch M} def
  1973. /PSL_A0_y 83 def
  1974. /PSL_A1_y 0 def
  1975. 25 W
  1976. 0 1200 M 0 -1200 D S
  1977. 8 W
  1978. 0 0 M -83 0 D S
  1979. 0 600 M -83 0 D S
  1980. 0 1200 M -83 0 D S
  1981. /PSL_AH0 0
  1982. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1983. 167 F0
  1984. (0) sw mx
  1985. (1) sw mx
  1986. (2) sw mx
  1987. def
  1988. /PSL_A0_y PSL_A0_y 83 add def
  1989. 0 PSL_A0_y MM
  1990. (0) mr Z
  1991. 600 PSL_A0_y MM
  1992. (1) mr Z
  1993. 1200 PSL_A0_y MM
  1994. (2) mr Z
  1995. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1996. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1997. 1200 0 T
  1998. /MM {exch M} def
  1999. /PSL_A0_y 83 def
  2000. /PSL_A1_y 0 def
  2001. 25 W
  2002. 0 1200 M 0 -1200 D S
  2003. 8 W
  2004. 0 0 M 83 0 D S
  2005. 0 600 M 83 0 D S
  2006. 0 1200 M 83 0 D S
  2007. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2008. -1200 0 T
  2009. /MM {neg M} def
  2010. /PSL_A0_y 83 def
  2011. /PSL_A1_y 0 def
  2012. 25 W
  2013. 0 0 M 1200 0 D S
  2014. 8 W
  2015. 300 0 M 0 -83 D S
  2016. 900 0 M 0 -83 D S
  2017. /PSL_AH0 0
  2018. (0) sh mx
  2019. (1) sh mx
  2020. def
  2021. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2022. 300 PSL_A0_y MM
  2023. (0) bc Z
  2024. 900 PSL_A0_y MM
  2025. (1) bc Z
  2026. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2027. 0 1200 T
  2028. /MM {M} def
  2029. /PSL_A0_y 83 def
  2030. /PSL_A1_y 0 def
  2031. 25 W
  2032. 0 0 M 1200 0 D S
  2033. 8 W
  2034. 300 0 M 0 83 D S
  2035. 900 0 M 0 83 D S
  2036. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2037. 0 -1200 T
  2038. 0 setlinecap
  2039. 0 A
  2040. FQ
  2041. O0
  2042. 0 0 TM
  2043. % PostScript produced by:
  2044. %%GMT: grdcontour t.nc -Ct.cpt -JX1i -R-0.5/1.5/0/2 -O -K
  2045. %%PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  2046. 0 setlinecap
  2047. 0 setlinejoin
  2048. 3.32551 setmiterlimit
  2049. clipsave
  2050. 0 0 M
  2051. 1200 0 D
  2052. 0 1200 D
  2053. -1200 0 D
  2054. PSL_eoclip N
  2055. 12 W
  2056. 360 0 M
  2057. -60 300 D
  2058. S
  2059. 480 0 M
  2060. -180 900 D
  2061. S
  2062. 600 0 M
  2063. -240 1200 D
  2064. S
  2065. 720 0 M
  2066. -240 1200 D
  2067. S
  2068. 840 0 M
  2069. -240 1200 D
  2070. S
  2071. 960 0 M
  2072. -240 1200 D
  2073. S
  2074. 1080 0 M
  2075. -240 1200 D
  2076. S
  2077. 1200 0 M
  2078. -240 1200 D
  2079. S
  2080. 1200 600 M
  2081. -120 600 D
  2082. S
  2083. 1200 1200 M
  2084. 0 0 D
  2085. P S
  2086. PSL_cliprestore
  2087. 0 A
  2088. FQ
  2089. O0
  2090. 1890 0 TM
  2091. % PostScript produced by:
  2092. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-1/3/-1/3 -X4c
  2093. %%PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy +a=6378137.000 +b=6356752.314245
  2094. 0 setlinecap
  2095. 0 setlinejoin
  2096. 3.32551 setmiterlimit
  2097. clipsave
  2098. 0 0 M
  2099. 1200 0 D
  2100. 0 1200 D
  2101. -1200 0 D
  2102. PSL_eoclip N
  2103. V N 300 300 T 600 600 scale [/Indexed /DeviceRGB 12 <
  2104. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFCE00FF>] setcolorspace
  2105. << /ImageType 1 /Decode [0 15] /Width 25 /Height 25 /BitsPerComponent 4
  2106. /ImageMatrix [25 0 0 -25 0 25] /DataSource currentfile /ASCII85Decode filter /LZWDecode filter
  2107. >> image
  2108. J,hn[+dgW6<APZA#aEJ^!<[q9+U3#)+r_%)#f_uO1f>n8J]=I>F1crC&eU)^7;4#M+X`Msjf+Ym7StWZQ(]UZ9Y:E>Je9@d\
  2109. `a*E6(u/X.CFg9#mQ&\WKcTt*YSpY7O1hjX_'p>Xs,CDRfmoG]9l3JZH4S6d5IBGjgOD:,'>2#g*lQN\g$`8TM?saMp4.':o
  2110. iPiR#"WpQ\Me:cPYbtC<I=6AYrTg?+t544.m]=~>
  2111. U
  2112. PSL_cliprestore
  2113. 2 setlinecap
  2114. /MM {neg exch M} def
  2115. /PSL_A0_y 83 def
  2116. /PSL_A1_y 0 def
  2117. 25 W
  2118. 0 1200 M 0 -1200 D S
  2119. 8 W
  2120. 0 0 M -83 0 D S
  2121. 0 300 M -83 0 D S
  2122. 0 600 M -83 0 D S
  2123. 0 900 M -83 0 D S
  2124. 0 1200 M -83 0 D S
  2125. /PSL_AH0 0
  2126. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2127. 167 F0
  2128. (-1) sw mx
  2129. (0) sw mx
  2130. (1) sw mx
  2131. (2) sw mx
  2132. (3) sw mx
  2133. def
  2134. /PSL_A0_y PSL_A0_y 83 add def
  2135. 0 PSL_A0_y MM
  2136. (-1) mr Z
  2137. 300 PSL_A0_y MM
  2138. (0) mr Z
  2139. 600 PSL_A0_y MM
  2140. (1) mr Z
  2141. 900 PSL_A0_y MM
  2142. (2) mr Z
  2143. 1200 PSL_A0_y MM
  2144. (3) mr Z
  2145. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2146. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2147. 1200 0 T
  2148. /MM {exch M} def
  2149. /PSL_A0_y 83 def
  2150. /PSL_A1_y 0 def
  2151. 25 W
  2152. 0 1200 M 0 -1200 D S
  2153. 8 W
  2154. 0 0 M 83 0 D S
  2155. 0 300 M 83 0 D S
  2156. 0 600 M 83 0 D S
  2157. 0 900 M 83 0 D S
  2158. 0 1200 M 83 0 D S
  2159. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2160. -1200 0 T
  2161. /MM {neg M} def
  2162. /PSL_A0_y 83 def
  2163. /PSL_A1_y 0 def
  2164. 25 W
  2165. 0 0 M 1200 0 D S
  2166. 8 W
  2167. 0 0 M 0 -83 D S
  2168. 300 0 M 0 -83 D S
  2169. 600 0 M 0 -83 D S
  2170. 900 0 M 0 -83 D S
  2171. 1200 0 M 0 -83 D S
  2172. /PSL_AH0 0
  2173. (-1) sh mx
  2174. (0) sh mx
  2175. (1) sh mx
  2176. (2) sh mx
  2177. (3) sh mx
  2178. def
  2179. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2180. 0 PSL_A0_y MM
  2181. (-1) bc Z
  2182. 300 PSL_A0_y MM
  2183. (0) bc Z
  2184. 600 PSL_A0_y MM
  2185. (1) bc Z
  2186. 900 PSL_A0_y MM
  2187. (2) bc Z
  2188. 1200 PSL_A0_y MM
  2189. (3) bc Z
  2190. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2191. 0 1200 T
  2192. /MM {M} def
  2193. /PSL_A0_y 83 def
  2194. /PSL_A1_y 0 def
  2195. 25 W
  2196. 0 0 M 1200 0 D S
  2197. 8 W
  2198. 0 0 M 0 83 D S
  2199. 300 0 M 0 83 D S
  2200. 600 0 M 0 83 D S
  2201. 900 0 M 0 83 D S
  2202. 1200 0 M 0 83 D S
  2203. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2204. 0 -1200 T
  2205. 0 setlinecap
  2206. 0 A
  2207. FQ
  2208. O0
  2209. 0 0 TM
  2210. % PostScript produced by:
  2211. %%GMT: grdcontour t.nc -Ct.cpt -JX1i -R-1/3/-1/3 -O -K
  2212. %%PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy +a=6378137.000 +b=6356752.314245
  2213. 0 setlinecap
  2214. 0 setlinejoin
  2215. 3.32551 setmiterlimit
  2216. clipsave
  2217. 0 0 M
  2218. 1200 0 D
  2219. 0 1200 D
  2220. -1200 0 D
  2221. PSL_eoclip N
  2222. 12 W
  2223. 330 300 M
  2224. -30 150 D
  2225. S
  2226. 390 300 M
  2227. -90 450 D
  2228. S
  2229. 450 300 M
  2230. -120 600 D
  2231. S
  2232. 510 300 M
  2233. -120 600 D
  2234. S
  2235. 570 300 M
  2236. -120 600 D
  2237. S
  2238. 630 300 M
  2239. -120 600 D
  2240. S
  2241. 690 300 M
  2242. -120 600 D
  2243. S
  2244. 750 300 M
  2245. -120 600 D
  2246. S
  2247. 810 300 M
  2248. -120 600 D
  2249. S
  2250. 870 300 M
  2251. -120 600 D
  2252. S
  2253. 900 450 M
  2254. -90 450 D
  2255. S
  2256. 900 750 M
  2257. -30 150 D
  2258. S
  2259. PSL_cliprestore
  2260. 0 A
  2261. FQ
  2262. O0
  2263. -5669 -1890 TM
  2264. % PostScript produced by:
  2265. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -K -R-0.5/2.5/-0.5/2.5 -O -X-12c -Y-4c
  2266. %%PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy +a=6378137.000 +b=6356752.314245
  2267. 0 setlinecap
  2268. 0 setlinejoin
  2269. 3.32551 setmiterlimit
  2270. clipsave
  2271. 0 0 M
  2272. 1200 0 D
  2273. 0 1200 D
  2274. -1200 0 D
  2275. PSL_eoclip N
  2276. V N 0 0 T 1200 1200 scale /DeviceRGB setcolorspace
  2277. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 3 /Height 3 /BitsPerComponent 8
  2278. /ImageMatrix [3 0 0 -3 0 3] /DataSource currentfile /ASCII85Decode filter
  2279. >> image
  2280. $3:)+ruM+o!,MZ8!<7TLP5rl.rrE)Ys7H?~>
  2281. U
  2282. PSL_cliprestore
  2283. 2 setlinecap
  2284. /MM {neg exch M} def
  2285. /PSL_A0_y 83 def
  2286. /PSL_A1_y 0 def
  2287. 25 W
  2288. 0 1200 M 0 -1200 D S
  2289. 8 W
  2290. 0 200 M -83 0 D S
  2291. 0 600 M -83 0 D S
  2292. 0 1000 M -83 0 D S
  2293. /PSL_AH0 0
  2294. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2295. 167 F0
  2296. (0) sw mx
  2297. (1) sw mx
  2298. (2) sw mx
  2299. def
  2300. /PSL_A0_y PSL_A0_y 83 add def
  2301. 200 PSL_A0_y MM
  2302. (0) mr Z
  2303. 600 PSL_A0_y MM
  2304. (1) mr Z
  2305. 1000 PSL_A0_y MM
  2306. (2) mr Z
  2307. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2308. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2309. 1200 0 T
  2310. /MM {exch M} def
  2311. /PSL_A0_y 83 def
  2312. /PSL_A1_y 0 def
  2313. 25 W
  2314. 0 1200 M 0 -1200 D S
  2315. 8 W
  2316. 0 200 M 83 0 D S
  2317. 0 600 M 83 0 D S
  2318. 0 1000 M 83 0 D S
  2319. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2320. -1200 0 T
  2321. /MM {neg M} def
  2322. /PSL_A0_y 83 def
  2323. /PSL_A1_y 0 def
  2324. 25 W
  2325. 0 0 M 1200 0 D S
  2326. 8 W
  2327. 200 0 M 0 -83 D S
  2328. 600 0 M 0 -83 D S
  2329. 1000 0 M 0 -83 D S
  2330. /PSL_AH0 0
  2331. (0) sh mx
  2332. (1) sh mx
  2333. (2) sh mx
  2334. def
  2335. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2336. 200 PSL_A0_y MM
  2337. (0) bc Z
  2338. 600 PSL_A0_y MM
  2339. (1) bc Z
  2340. 1000 PSL_A0_y MM
  2341. (2) bc Z
  2342. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2343. 0 1200 T
  2344. /MM {M} def
  2345. /PSL_A0_y 83 def
  2346. /PSL_A1_y 0 def
  2347. 25 W
  2348. 0 0 M 1200 0 D S
  2349. 8 W
  2350. 200 0 M 0 83 D S
  2351. 600 0 M 0 83 D S
  2352. 1000 0 M 0 83 D S
  2353. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2354. 0 -1200 T
  2355. 0 setlinecap
  2356. 0 A
  2357. FQ
  2358. O0
  2359. 0 0 TM
  2360. % PostScript produced by:
  2361. %%GMT: pstext -R-0.5/2.5/-0.5/2.5 -JX1i -N -F+f10p+jBR -O -K
  2362. %%PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy +a=6378137.000 +b=6356752.314245
  2363. 0 setlinecap
  2364. 0 setlinejoin
  2365. 3.32551 setmiterlimit
  2366. -360 800 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2367. 167 F0
  2368. (grdmath -r) br Z
  2369. -360 600 M (grdimage) br Z
  2370. 0 A
  2371. FQ
  2372. O0
  2373. 1890 0 TM
  2374. % PostScript produced by:
  2375. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -O -K -R0/2/0/2 -X4c
  2376. %%PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  2377. 0 setlinecap
  2378. 0 setlinejoin
  2379. 3.32551 setmiterlimit
  2380. clipsave
  2381. 0 0 M
  2382. 1200 0 D
  2383. 0 1200 D
  2384. -1200 0 D
  2385. PSL_eoclip N
  2386. V N -300 -300 T 1800 1800 scale /DeviceRGB setcolorspace
  2387. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 3 /Height 3 /BitsPerComponent 8
  2388. /ImageMatrix [3 0 0 -3 0 3] /DataSource currentfile /ASCII85Decode filter
  2389. >> image
  2390. $3:)+ruM+o!,MZ8!<7TLP5rl.rrE)Ys7H?~>
  2391. U
  2392. PSL_cliprestore
  2393. 2 setlinecap
  2394. /MM {neg exch M} def
  2395. /PSL_A0_y 83 def
  2396. /PSL_A1_y 0 def
  2397. 25 W
  2398. 0 1200 M 0 -1200 D S
  2399. 8 W
  2400. 0 0 M -83 0 D S
  2401. 0 600 M -83 0 D S
  2402. 0 1200 M -83 0 D S
  2403. /PSL_AH0 0
  2404. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2405. 167 F0
  2406. (0) sw mx
  2407. (1) sw mx
  2408. (2) sw mx
  2409. def
  2410. /PSL_A0_y PSL_A0_y 83 add def
  2411. 0 PSL_A0_y MM
  2412. (0) mr Z
  2413. 600 PSL_A0_y MM
  2414. (1) mr Z
  2415. 1200 PSL_A0_y MM
  2416. (2) mr Z
  2417. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2418. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2419. 1200 0 T
  2420. /MM {exch M} def
  2421. /PSL_A0_y 83 def
  2422. /PSL_A1_y 0 def
  2423. 25 W
  2424. 0 1200 M 0 -1200 D S
  2425. 8 W
  2426. 0 0 M 83 0 D S
  2427. 0 600 M 83 0 D S
  2428. 0 1200 M 83 0 D S
  2429. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2430. -1200 0 T
  2431. /MM {neg M} def
  2432. /PSL_A0_y 83 def
  2433. /PSL_A1_y 0 def
  2434. 25 W
  2435. 0 0 M 1200 0 D S
  2436. 8 W
  2437. 0 0 M 0 -83 D S
  2438. 600 0 M 0 -83 D S
  2439. 1200 0 M 0 -83 D S
  2440. /PSL_AH0 0
  2441. (0) sh mx
  2442. (1) sh mx
  2443. (2) sh mx
  2444. def
  2445. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2446. 0 PSL_A0_y MM
  2447. (0) bc Z
  2448. 600 PSL_A0_y MM
  2449. (1) bc Z
  2450. 1200 PSL_A0_y MM
  2451. (2) bc Z
  2452. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2453. 0 1200 T
  2454. /MM {M} def
  2455. /PSL_A0_y 83 def
  2456. /PSL_A1_y 0 def
  2457. 25 W
  2458. 0 0 M 1200 0 D S
  2459. 8 W
  2460. 0 0 M 0 83 D S
  2461. 600 0 M 0 83 D S
  2462. 1200 0 M 0 83 D S
  2463. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2464. 0 -1200 T
  2465. 0 setlinecap
  2466. 0 A
  2467. FQ
  2468. O0
  2469. 1890 0 TM
  2470. % PostScript produced by:
  2471. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -O -K -R-0.5/1.5/0/2 -X4c
  2472. %%PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  2473. 0 setlinecap
  2474. 0 setlinejoin
  2475. 3.32551 setmiterlimit
  2476. clipsave
  2477. 0 0 M
  2478. 1200 0 D
  2479. 0 1200 D
  2480. -1200 0 D
  2481. PSL_eoclip N
  2482. V N 0 -300 T 1200 1800 scale /DeviceRGB setcolorspace
  2483. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 2 /Height 3 /BitsPerComponent 8
  2484. /ImageMatrix [2 0 0 -3 0 3] /DataSource currentfile /ASCII85Decode filter /LZWDecode filter
  2485. >> image
  2486. J-(63p_\,+"+d*_d"hLU!W~>
  2487. U
  2488. PSL_cliprestore
  2489. 2 setlinecap
  2490. /MM {neg exch M} def
  2491. /PSL_A0_y 83 def
  2492. /PSL_A1_y 0 def
  2493. 25 W
  2494. 0 1200 M 0 -1200 D S
  2495. 8 W
  2496. 0 0 M -83 0 D S
  2497. 0 600 M -83 0 D S
  2498. 0 1200 M -83 0 D S
  2499. /PSL_AH0 0
  2500. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2501. 167 F0
  2502. (0) sw mx
  2503. (1) sw mx
  2504. (2) sw mx
  2505. def
  2506. /PSL_A0_y PSL_A0_y 83 add def
  2507. 0 PSL_A0_y MM
  2508. (0) mr Z
  2509. 600 PSL_A0_y MM
  2510. (1) mr Z
  2511. 1200 PSL_A0_y MM
  2512. (2) mr Z
  2513. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2514. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2515. 1200 0 T
  2516. /MM {exch M} def
  2517. /PSL_A0_y 83 def
  2518. /PSL_A1_y 0 def
  2519. 25 W
  2520. 0 1200 M 0 -1200 D S
  2521. 8 W
  2522. 0 0 M 83 0 D S
  2523. 0 600 M 83 0 D S
  2524. 0 1200 M 83 0 D S
  2525. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2526. -1200 0 T
  2527. /MM {neg M} def
  2528. /PSL_A0_y 83 def
  2529. /PSL_A1_y 0 def
  2530. 25 W
  2531. 0 0 M 1200 0 D S
  2532. 8 W
  2533. 300 0 M 0 -83 D S
  2534. 900 0 M 0 -83 D S
  2535. /PSL_AH0 0
  2536. (0) sh mx
  2537. (1) sh mx
  2538. def
  2539. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2540. 300 PSL_A0_y MM
  2541. (0) bc Z
  2542. 900 PSL_A0_y MM
  2543. (1) bc Z
  2544. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2545. 0 1200 T
  2546. /MM {M} def
  2547. /PSL_A0_y 83 def
  2548. /PSL_A1_y 0 def
  2549. 25 W
  2550. 0 0 M 1200 0 D S
  2551. 8 W
  2552. 300 0 M 0 83 D S
  2553. 900 0 M 0 83 D S
  2554. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2555. 0 -1200 T
  2556. 0 setlinecap
  2557. 0 A
  2558. FQ
  2559. O0
  2560. 1890 0 TM
  2561. % PostScript produced by:
  2562. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -O -K -R-1/3/-1/3 -X4c
  2563. %%PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy +a=6378137.000 +b=6356752.314245
  2564. 0 setlinecap
  2565. 0 setlinejoin
  2566. 3.32551 setmiterlimit
  2567. clipsave
  2568. 0 0 M
  2569. 1200 0 D
  2570. 0 1200 D
  2571. -1200 0 D
  2572. PSL_eoclip N
  2573. V N 150 150 T 900 900 scale /DeviceRGB setcolorspace
  2574. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 3 /Height 3 /BitsPerComponent 8
  2575. /ImageMatrix [3 0 0 -3 0 3] /DataSource currentfile /ASCII85Decode filter
  2576. >> image
  2577. $3:)+ruM+o!,MZ8!<7TLP5rl.rrE)Ys7H?~>
  2578. U
  2579. PSL_cliprestore
  2580. 2 setlinecap
  2581. /MM {neg exch M} def
  2582. /PSL_A0_y 83 def
  2583. /PSL_A1_y 0 def
  2584. 25 W
  2585. 0 1200 M 0 -1200 D S
  2586. 8 W
  2587. 0 0 M -83 0 D S
  2588. 0 300 M -83 0 D S
  2589. 0 600 M -83 0 D S
  2590. 0 900 M -83 0 D S
  2591. 0 1200 M -83 0 D S
  2592. /PSL_AH0 0
  2593. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2594. 167 F0
  2595. (-1) sw mx
  2596. (0) sw mx
  2597. (1) sw mx
  2598. (2) sw mx
  2599. (3) sw mx
  2600. def
  2601. /PSL_A0_y PSL_A0_y 83 add def
  2602. 0 PSL_A0_y MM
  2603. (-1) mr Z
  2604. 300 PSL_A0_y MM
  2605. (0) mr Z
  2606. 600 PSL_A0_y MM
  2607. (1) mr Z
  2608. 900 PSL_A0_y MM
  2609. (2) mr Z
  2610. 1200 PSL_A0_y MM
  2611. (3) mr Z
  2612. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2613. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2614. 1200 0 T
  2615. /MM {exch M} def
  2616. /PSL_A0_y 83 def
  2617. /PSL_A1_y 0 def
  2618. 25 W
  2619. 0 1200 M 0 -1200 D S
  2620. 8 W
  2621. 0 0 M 83 0 D S
  2622. 0 300 M 83 0 D S
  2623. 0 600 M 83 0 D S
  2624. 0 900 M 83 0 D S
  2625. 0 1200 M 83 0 D S
  2626. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2627. -1200 0 T
  2628. /MM {neg M} def
  2629. /PSL_A0_y 83 def
  2630. /PSL_A1_y 0 def
  2631. 25 W
  2632. 0 0 M 1200 0 D S
  2633. 8 W
  2634. 0 0 M 0 -83 D S
  2635. 300 0 M 0 -83 D S
  2636. 600 0 M 0 -83 D S
  2637. 900 0 M 0 -83 D S
  2638. 1200 0 M 0 -83 D S
  2639. /PSL_AH0 0
  2640. (-1) sh mx
  2641. (0) sh mx
  2642. (1) sh mx
  2643. (2) sh mx
  2644. (3) sh mx
  2645. def
  2646. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2647. 0 PSL_A0_y MM
  2648. (-1) bc Z
  2649. 300 PSL_A0_y MM
  2650. (0) bc Z
  2651. 600 PSL_A0_y MM
  2652. (1) bc Z
  2653. 900 PSL_A0_y MM
  2654. (2) bc Z
  2655. 1200 PSL_A0_y MM
  2656. (3) bc Z
  2657. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2658. 0 1200 T
  2659. /MM {M} def
  2660. /PSL_A0_y 83 def
  2661. /PSL_A1_y 0 def
  2662. 25 W
  2663. 0 0 M 1200 0 D S
  2664. 8 W
  2665. 0 0 M 0 83 D S
  2666. 300 0 M 0 83 D S
  2667. 600 0 M 0 83 D S
  2668. 900 0 M 0 83 D S
  2669. 1200 0 M 0 83 D S
  2670. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2671. 0 -1200 T
  2672. 0 setlinecap
  2673. 0 A
  2674. FQ
  2675. O0
  2676. -5669 -1890 TM
  2677. % PostScript produced by:
  2678. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-0.5/2.5/-0.5/2.5 -X-12c -Y-4c -nl
  2679. %%PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy +a=6378137.000 +b=6356752.314245
  2680. 0 setlinecap
  2681. 0 setlinejoin
  2682. 3.32551 setmiterlimit
  2683. clipsave
  2684. 0 0 M
  2685. 1200 0 D
  2686. 0 1200 D
  2687. -1200 0 D
  2688. PSL_eoclip N
  2689. V N 0 0 T 1200 1200 scale [/Indexed /DeviceRGB 14 <
  2690. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFFFFFFFCE00FF000000>] setcolorspace
  2691. << /ImageType 1 /Decode [0 15] /Width 50 /Height 50 /BitsPerComponent 4
  2692. /ImageMatrix [50 0 0 -50 0 50] /DataSource currentfile /ASCII85Decode filter /LZWDecode filter
  2693. >> image
  2694. J,g]W!/O$2,8lULKi51CmWV&C;_"`A<X&O(_4^s%>Vsb<M'et%7GJA.+qY7DOM`o(,+4QCQ&N^lm9p'[b%5-eCdAXeMG5G'=
  2695. MR<N3[,/KOn6Nj@mY%WW3ghM-C/kQckTM,lL'KuPeq-(BQ[o71R^7;0Im8MX^nM/m.JM[hV2M*>[gV]j`^#0KZ@NL#b>k^IY
  2696. (rN=.CQ@B^N`0j*3"pLCDDJ<2VTVAlaILbfOpI\`tB0QcN@j2+ZhhRA[E,FB/aO]&Q&_40;NZV;gHG^,%]K\0gq,A[uc)FXt
  2697. ./)g]'aS%+8**s7Igj0r;f<XKr%_`P1\I$Se9KTStk=W@RJcS+q[ZntoTEj)@dr3pf07bY/1-?!*fg,5nBrk9Du>1hjdDF$%
  2698. g_(XQ#Ydj)5+Q]cK3o$Pll>$%n]5D,iln<,/,47M9>FrjQcW`7"ZB%CWn\0sO3uL"TF(Y9UM/uH4[SPq!"#^]aK%7WA,B3k&
  2699. :mbkP6-DBY#r[s!TUADfX="I\0_D1T`)01@(.rR5h(cPTA8(PIbptA'4d"f7r$53m]_X&YX7#&mYT$]R[HS+rg!B-Yn4_2J>
  2700. U]l[.=@*=b>)mkVS<V3/P*cP`&c@(e?pk^bjNG0J:I~>
  2701. U
  2702. PSL_cliprestore
  2703. 2 setlinecap
  2704. /MM {neg exch M} def
  2705. /PSL_A0_y 83 def
  2706. /PSL_A1_y 0 def
  2707. 25 W
  2708. 0 1200 M 0 -1200 D S
  2709. 8 W
  2710. 0 200 M -83 0 D S
  2711. 0 600 M -83 0 D S
  2712. 0 1000 M -83 0 D S
  2713. /PSL_AH0 0
  2714. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2715. 167 F0
  2716. (0) sw mx
  2717. (1) sw mx
  2718. (2) sw mx
  2719. def
  2720. /PSL_A0_y PSL_A0_y 83 add def
  2721. 200 PSL_A0_y MM
  2722. (0) mr Z
  2723. 600 PSL_A0_y MM
  2724. (1) mr Z
  2725. 1000 PSL_A0_y MM
  2726. (2) mr Z
  2727. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2728. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2729. 1200 0 T
  2730. /MM {exch M} def
  2731. /PSL_A0_y 83 def
  2732. /PSL_A1_y 0 def
  2733. 25 W
  2734. 0 1200 M 0 -1200 D S
  2735. 8 W
  2736. 0 200 M 83 0 D S
  2737. 0 600 M 83 0 D S
  2738. 0 1000 M 83 0 D S
  2739. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2740. -1200 0 T
  2741. /MM {neg M} def
  2742. /PSL_A0_y 83 def
  2743. /PSL_A1_y 0 def
  2744. 25 W
  2745. 0 0 M 1200 0 D S
  2746. 8 W
  2747. 200 0 M 0 -83 D S
  2748. 600 0 M 0 -83 D S
  2749. 1000 0 M 0 -83 D S
  2750. /PSL_AH0 0
  2751. (0) sh mx
  2752. (1) sh mx
  2753. (2) sh mx
  2754. def
  2755. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2756. 200 PSL_A0_y MM
  2757. (0) bc Z
  2758. 600 PSL_A0_y MM
  2759. (1) bc Z
  2760. 1000 PSL_A0_y MM
  2761. (2) bc Z
  2762. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2763. 0 1200 T
  2764. /MM {M} def
  2765. /PSL_A0_y 83 def
  2766. /PSL_A1_y 0 def
  2767. 25 W
  2768. 0 0 M 1200 0 D S
  2769. 8 W
  2770. 200 0 M 0 83 D S
  2771. 600 0 M 0 83 D S
  2772. 1000 0 M 0 83 D S
  2773. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2774. 0 -1200 T
  2775. 0 setlinecap
  2776. 0 A
  2777. FQ
  2778. O0
  2779. 0 0 TM
  2780. % PostScript produced by:
  2781. %%GMT: grdcontour t.nc -Ct.cpt -JX1i -R-0.5/2.5/-0.5/2.5 -O -K
  2782. %%PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy +a=6378137.000 +b=6356752.314245
  2783. 0 setlinecap
  2784. 0 setlinejoin
  2785. 3.32551 setmiterlimit
  2786. clipsave
  2787. 0 0 M
  2788. 1200 0 D
  2789. 0 1200 D
  2790. -1200 0 D
  2791. PSL_eoclip N
  2792. 12 W
  2793. 240 200 M
  2794. -40 200 D
  2795. S
  2796. 320 200 M
  2797. -120 600 D
  2798. S
  2799. 400 200 M
  2800. -160 800 D
  2801. S
  2802. 480 200 M
  2803. -160 800 D
  2804. S
  2805. 560 200 M
  2806. -160 800 D
  2807. S
  2808. 640 200 M
  2809. -160 800 D
  2810. S
  2811. 720 200 M
  2812. -160 800 D
  2813. S
  2814. 800 200 M
  2815. -160 800 D
  2816. S
  2817. 880 200 M
  2818. -160 800 D
  2819. S
  2820. 960 200 M
  2821. -160 800 D
  2822. S
  2823. 1000 400 M
  2824. -120 600 D
  2825. S
  2826. 1000 800 M
  2827. -40 200 D
  2828. S
  2829. PSL_cliprestore
  2830. 0 A
  2831. FQ
  2832. O0
  2833. 0 0 TM
  2834. % PostScript produced by:
  2835. %%GMT: pstext -R-0.5/2.5/-0.5/2.5 -JX1i -N -F+f10p+jBR -O -K
  2836. %%PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy +a=6378137.000 +b=6356752.314245
  2837. 0 setlinecap
  2838. 0 setlinejoin
  2839. 3.32551 setmiterlimit
  2840. -360 800 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2841. 167 F0
  2842. (grdmath -r) br Z
  2843. -360 600 M (grdimage -E50 -nl) br Z
  2844. 0 A
  2845. FQ
  2846. O0
  2847. 1890 0 TM
  2848. % PostScript produced by:
  2849. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R0/2/0/2 -X4c -nl
  2850. %%PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  2851. 0 setlinecap
  2852. 0 setlinejoin
  2853. 3.32551 setmiterlimit
  2854. clipsave
  2855. 0 0 M
  2856. 1200 0 D
  2857. 0 1200 D
  2858. -1200 0 D
  2859. PSL_eoclip N
  2860. V N -300 -300 T 1800 1800 scale [/Indexed /DeviceRGB 14 <
  2861. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFFFFFFFCE00FF000000>] setcolorspace
  2862. << /ImageType 1 /Decode [0 15] /Width 75 /Height 75 /BitsPerComponent 4
  2863. /ImageMatrix [75 0 0 -75 0 75] /DataSource currentfile /ASCII85Decode filter /LZWDecode filter
  2864. >> image
  2865. J,g]g0F1&j+qY+#@ko2=MH)-oN5fqLh%5B1VGetCjE<MUJ\`JULf?,M&;`h"d>6:u4Woi:+L$)a/fP=W`8\%Hb\g]+<NbI?3
  2866. @*<S3L*AdZ0#UTQFih]VNP)pU3.uXdj_B@HL5,aK*7kZZ(s9#<f'7@&U;`=4'Sje.PN@^N+Z]G=m[S`=sD^>Xk.@84/e%YAh
  2867. )LCeuN7lgo=C[)6LN:&0kZ%?1Ac5Ac!JfaO]%HgQd-eKu;be2nSJW+d-a)0QSZ_ekJ,gcK18W%6$eQW'I;NC98_'=kDl,],h
  2868. I1VafHAl!)Df18Dae;>2r*?M0`$fl4C5SrG+ATXZeK]Xiie;4?$J0::OEVq8`YAa\0.eh?135-!Aep,6i9psm.(CHb`^cm/,
  2869. *2)"8Vf0QUWkl!:k466W2.VYDs3H#:qU:0?nbiC^er'KPX%YRO9]<Du7lT@pi9&i!nUcfU6;/C.;\o0u\'tWiR>oZBf8XU+'
  2870. mqaW_4qNqX$:f,Q$Of?U6mi/X;R@MDZYa49N_?TuT.iGb'EKs]ZSPB.8i"no/k9pB=X-H)PKr7,o<aDp33i\\d*K!CCD'H"e
  2871. 589Rd2Ro/;,N:<G>H^O*qI;_eGCmmnBAcQb]%,?G>j]QTaa^oV)L=ueGQcUeSqoj1eLU*fiZAHSNSgZ'4"$jd^4);(WS0tJO
  2872. []09MZMXnYLpacr=;?*mYU%1Lj=K%?j=cDP_n^e[=LG10aE^iD`m_V9<"H26B5Ce<`$g=&*\9f3I.<Q#-_-(=fI'>3pt?A7+
  2873. uJMh,(ko`9SNj^na1>BhugLLE.h(Ptt4mD3l#QejTF<gV?(O562b`Hn;I-1R1)eb2unhK_:JK],m")'kL#VCe9I%RtMsiYX8
  2874. (S7c"80;5jjG(4>kFM<j_,C3WDjlEt4>)b8jP\7#W0\`HulWU/eX(4n<1/D=3^:@P2XkqHAm9:XD2)2^k.CE?J4HPJtS$pkB
  2875. B:=-k:?n?&!N0j_i=JKJg8=JWnN5nO`pi[D,)_Ng#Q~>
  2876. U
  2877. PSL_cliprestore
  2878. 2 setlinecap
  2879. /MM {neg exch M} def
  2880. /PSL_A0_y 83 def
  2881. /PSL_A1_y 0 def
  2882. 25 W
  2883. 0 1200 M 0 -1200 D S
  2884. 8 W
  2885. 0 0 M -83 0 D S
  2886. 0 600 M -83 0 D S
  2887. 0 1200 M -83 0 D S
  2888. /PSL_AH0 0
  2889. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2890. 167 F0
  2891. (0) sw mx
  2892. (1) sw mx
  2893. (2) sw mx
  2894. def
  2895. /PSL_A0_y PSL_A0_y 83 add def
  2896. 0 PSL_A0_y MM
  2897. (0) mr Z
  2898. 600 PSL_A0_y MM
  2899. (1) mr Z
  2900. 1200 PSL_A0_y MM
  2901. (2) mr Z
  2902. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2903. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2904. 1200 0 T
  2905. /MM {exch M} def
  2906. /PSL_A0_y 83 def
  2907. /PSL_A1_y 0 def
  2908. 25 W
  2909. 0 1200 M 0 -1200 D S
  2910. 8 W
  2911. 0 0 M 83 0 D S
  2912. 0 600 M 83 0 D S
  2913. 0 1200 M 83 0 D S
  2914. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2915. -1200 0 T
  2916. /MM {neg M} def
  2917. /PSL_A0_y 83 def
  2918. /PSL_A1_y 0 def
  2919. 25 W
  2920. 0 0 M 1200 0 D S
  2921. 8 W
  2922. 0 0 M 0 -83 D S
  2923. 600 0 M 0 -83 D S
  2924. 1200 0 M 0 -83 D S
  2925. /PSL_AH0 0
  2926. (0) sh mx
  2927. (1) sh mx
  2928. (2) sh mx
  2929. def
  2930. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2931. 0 PSL_A0_y MM
  2932. (0) bc Z
  2933. 600 PSL_A0_y MM
  2934. (1) bc Z
  2935. 1200 PSL_A0_y MM
  2936. (2) bc Z
  2937. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2938. 0 1200 T
  2939. /MM {M} def
  2940. /PSL_A0_y 83 def
  2941. /PSL_A1_y 0 def
  2942. 25 W
  2943. 0 0 M 1200 0 D S
  2944. 8 W
  2945. 0 0 M 0 83 D S
  2946. 600 0 M 0 83 D S
  2947. 1200 0 M 0 83 D S
  2948. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2949. 0 -1200 T
  2950. 0 setlinecap
  2951. 0 A
  2952. FQ
  2953. O0
  2954. 0 0 TM
  2955. % PostScript produced by:
  2956. %%GMT: grdcontour t.nc -Ct.cpt -JX1i -R0/2/0/2 -O -K
  2957. %%PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  2958. 0 setlinecap
  2959. 0 setlinejoin
  2960. 3.32551 setmiterlimit
  2961. clipsave
  2962. 0 0 M
  2963. 1200 0 D
  2964. 0 1200 D
  2965. -1200 0 D
  2966. PSL_eoclip N
  2967. 12 W
  2968. 60 0 M
  2969. -60 300 D
  2970. S
  2971. 180 0 M
  2972. -180 900 D
  2973. S
  2974. 300 0 M
  2975. -240 1200 D
  2976. S
  2977. 420 0 M
  2978. -240 1200 D
  2979. S
  2980. 540 0 M
  2981. -240 1200 D
  2982. S
  2983. 660 0 M
  2984. -240 1200 D
  2985. S
  2986. 780 0 M
  2987. -240 1200 D
  2988. S
  2989. 900 0 M
  2990. -240 1200 D
  2991. S
  2992. 1020 0 M
  2993. -240 1200 D
  2994. S
  2995. 1140 0 M
  2996. -240 1200 D
  2997. S
  2998. 1200 300 M
  2999. -180 900 D
  3000. S
  3001. 1200 900 M
  3002. -60 300 D
  3003. S
  3004. PSL_cliprestore
  3005. 0 A
  3006. FQ
  3007. O0
  3008. 1890 0 TM
  3009. % PostScript produced by:
  3010. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-0.5/1.5/0/2 -X4c -nl
  3011. %%PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  3012. 0 setlinecap
  3013. 0 setlinejoin
  3014. 3.32551 setmiterlimit
  3015. clipsave
  3016. 0 0 M
  3017. 1200 0 D
  3018. 0 1200 D
  3019. -1200 0 D
  3020. PSL_eoclip N
  3021. V N 0 -300 T 1800 1800 scale [/Indexed /DeviceRGB 14 <
  3022. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFFFFFFFCE00FF000000>] setcolorspace
  3023. << /ImageType 1 /Decode [0 15] /Width 75 /Height 75 /BitsPerComponent 4
  3024. /ImageMatrix [75 0 0 -75 0 75] /DataSource currentfile /ASCII85Decode filter /LZWDecode filter
  3025. >> image
  3026. J,g]g0F1&j+qY+#@ko2=MH)-oN5fqLh%5B1VGetCjE<MUJ\`JULf?,M&;`h"d>6:u4Woi:+L$)a/fP=W`8\%Hb\g]+<NbI?3
  3027. @*<S3L*AdZ0#UTQFih]VNP)pU3.uXdj_B@HL5,aK*7kZZ(s9#<f'7@&U;`=4'Sje.PN@^N+Z]G=m[S`=sD^>Xk.@84/e%YAh
  3028. )LCeuN7lgo=C[)6LN:&0kZ%?1Ac5Ac!JfaO]%HgQd-eKu;be2nSJW+d-a)0QSZ_ekJ,gcK18W%6$eQW'I;NC98_'=kDl,],h
  3029. I1VafHAl!)Df18Dae;>2r*?M0`$fl4C5SrG+ATXZeK]Xiie;4?$J0::OEVq8`YAa\0.eh?135-!Aep,6i9psm.(CHb`^cm/,
  3030. *2)"8Vf0QUWkl!:k466W2.VYDs3H#:qU:0?nbiC^er'KPX%YRO9]<Du7lT@pi9&i!nUcfU6;/C.;\o0u\'tWiR>oZBf8XU+'
  3031. mqaW_4qNqX$:f,Q$Of?U6mi/X;R@MDZYa49N_?TuT.iGb'EKs]ZSPB.8i"no/k9pB=X-H)PKr7,o<aDp33i\\d*K!CCD'H"e
  3032. 589Rd2Ro/;,N:<G>H^O*qI;_eGCmmnBAcQb]%,?G>j]QTaa^oV)L=ueGQcUeSqoj1eLU*fiZAHSNSgZ'4"$jd^4);(WS0tJO
  3033. []09MZMXnYLpacr=;?*mYU%1Lj=K%?j=cDP_n^e[=LG10aE^iD`m_V9<"H26B5Ce<`$g=&*\9f3I.<Q#-_-(=fI'>3pt?A7+
  3034. uJMh,(ko`9SNj^na1>BhugLLE.h(Ptt4mD3l#QejTF<gV?(O562b`Hn;I-1R1)eb2unhK_:JK],m")'kL#VCe9I%RtMsiYX8
  3035. (S7c"80;5jjG(4>kFM<j_,C3WDjlEt4>)b8jP\7#W0\`HulWU/eX(4n<1/D=3^:@P2XkqHAm9:XD2)2^k.CE?J4HPJtS$pkB
  3036. B:=-k:?n?&!N0j_i=JKJg8=JWnN5nO`pi[D,)_Ng#Q~>
  3037. U
  3038. PSL_cliprestore
  3039. 2 setlinecap
  3040. /MM {neg exch M} def
  3041. /PSL_A0_y 83 def
  3042. /PSL_A1_y 0 def
  3043. 25 W
  3044. 0 1200 M 0 -1200 D S
  3045. 8 W
  3046. 0 0 M -83 0 D S
  3047. 0 600 M -83 0 D S
  3048. 0 1200 M -83 0 D S
  3049. /PSL_AH0 0
  3050. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  3051. 167 F0
  3052. (0) sw mx
  3053. (1) sw mx
  3054. (2) sw mx
  3055. def
  3056. /PSL_A0_y PSL_A0_y 83 add def
  3057. 0 PSL_A0_y MM
  3058. (0) mr Z
  3059. 600 PSL_A0_y MM
  3060. (1) mr Z
  3061. 1200 PSL_A0_y MM
  3062. (2) mr Z
  3063. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  3064. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3065. 1200 0 T
  3066. /MM {exch M} def
  3067. /PSL_A0_y 83 def
  3068. /PSL_A1_y 0 def
  3069. 25 W
  3070. 0 1200 M 0 -1200 D S
  3071. 8 W
  3072. 0 0 M 83 0 D S
  3073. 0 600 M 83 0 D S
  3074. 0 1200 M 83 0 D S
  3075. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3076. -1200 0 T
  3077. /MM {neg M} def
  3078. /PSL_A0_y 83 def
  3079. /PSL_A1_y 0 def
  3080. 25 W
  3081. 0 0 M 1200 0 D S
  3082. 8 W
  3083. 300 0 M 0 -83 D S
  3084. 900 0 M 0 -83 D S
  3085. /PSL_AH0 0
  3086. (0) sh mx
  3087. (1) sh mx
  3088. def
  3089. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  3090. 300 PSL_A0_y MM
  3091. (0) bc Z
  3092. 900 PSL_A0_y MM
  3093. (1) bc Z
  3094. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3095. 0 1200 T
  3096. /MM {M} def
  3097. /PSL_A0_y 83 def
  3098. /PSL_A1_y 0 def
  3099. 25 W
  3100. 0 0 M 1200 0 D S
  3101. 8 W
  3102. 300 0 M 0 83 D S
  3103. 900 0 M 0 83 D S
  3104. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3105. 0 -1200 T
  3106. 0 setlinecap
  3107. 0 A
  3108. FQ
  3109. O0
  3110. 0 0 TM
  3111. % PostScript produced by:
  3112. %%GMT: grdcontour t.nc -Ct.cpt -JX1i -R-0.5/1.5/0/2 -O -K
  3113. %%PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  3114. 0 setlinecap
  3115. 0 setlinejoin
  3116. 3.32551 setmiterlimit
  3117. clipsave
  3118. 0 0 M
  3119. 1200 0 D
  3120. 0 1200 D
  3121. -1200 0 D
  3122. PSL_eoclip N
  3123. 12 W
  3124. 360 0 M
  3125. -60 300 D
  3126. S
  3127. 480 0 M
  3128. -180 900 D
  3129. S
  3130. 600 0 M
  3131. -240 1200 D
  3132. S
  3133. 720 0 M
  3134. -240 1200 D
  3135. S
  3136. 840 0 M
  3137. -240 1200 D
  3138. S
  3139. 960 0 M
  3140. -240 1200 D
  3141. S
  3142. 1080 0 M
  3143. -240 1200 D
  3144. S
  3145. 1200 0 M
  3146. -240 1200 D
  3147. S
  3148. 1200 600 M
  3149. -120 600 D
  3150. S
  3151. 1200 1200 M
  3152. 0 0 D
  3153. P S
  3154. PSL_cliprestore
  3155. 0 A
  3156. FQ
  3157. O0
  3158. 1890 0 TM
  3159. % PostScript produced by:
  3160. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-1/3/-1/3 -X4c -nl
  3161. %%PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy +a=6378137.000 +b=6356752.314245
  3162. 0 setlinecap
  3163. 0 setlinejoin
  3164. 3.32551 setmiterlimit
  3165. clipsave
  3166. 0 0 M
  3167. 1200 0 D
  3168. 0 1200 D
  3169. -1200 0 D
  3170. PSL_eoclip N
  3171. V N 150 150 T 900 900 scale [/Indexed /DeviceRGB 14 <
  3172. 0A00FF0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31006C00FFFFFFFFCE00FF000000>] setcolorspace
  3173. << /ImageType 1 /Decode [0 15] /Width 38 /Height 38 /BitsPerComponent 4
  3174. /ImageMatrix [38 0 0 -38 0 38] /DataSource currentfile /ASCII85Decode filter /LZWDecode filter
  3175. >> image
  3176. J,g]X&<M][6m@nTa)jWo1oc?]Q4P/I((U_*_dVi,@ki0AMaARWF2B4Z*+h^8?kA86BLODfjKa$r0t/6j9;W@O1ng;m?*#Ct0
  3177. qf4hB07@bP*YEO-S;&iN7<_aqO:7m<+td>b%b]n!'pa,EiE0e>d$b*Z[2sMa%!C='iqAG&e-%D_ldgrD#aSO]>c"\X&]#t(Q
  3178. lr1GM0pAB.oXo-aK(]!elZU:FUQm%-J^1Wb1T4$8!<_U8M+/3a/)K4-e=JXHsi*V;5pJm&h+PXj:p.[ph!Ep1E1k+i-XWfZX
  3179. :>'9hHdB3?3U(HIiHk+dt)^3a"VmHc><Wh,j#UXeQch9@#HGO+/SIF_]claaO6i+.5=^E<+,Pu$[ak;uKQrlca(,AR<A%"&\
  3180. `UsNS*n#7d8N:]5iU)IpeOMeee&HkE%~>
  3181. U
  3182. PSL_cliprestore
  3183. 2 setlinecap
  3184. /MM {neg exch M} def
  3185. /PSL_A0_y 83 def
  3186. /PSL_A1_y 0 def
  3187. 25 W
  3188. 0 1200 M 0 -1200 D S
  3189. 8 W
  3190. 0 0 M -83 0 D S
  3191. 0 300 M -83 0 D S
  3192. 0 600 M -83 0 D S
  3193. 0 900 M -83 0 D S
  3194. 0 1200 M -83 0 D S
  3195. /PSL_AH0 0
  3196. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  3197. 167 F0
  3198. (-1) sw mx
  3199. (0) sw mx
  3200. (1) sw mx
  3201. (2) sw mx
  3202. (3) sw mx
  3203. def
  3204. /PSL_A0_y PSL_A0_y 83 add def
  3205. 0 PSL_A0_y MM
  3206. (-1) mr Z
  3207. 300 PSL_A0_y MM
  3208. (0) mr Z
  3209. 600 PSL_A0_y MM
  3210. (1) mr Z
  3211. 900 PSL_A0_y MM
  3212. (2) mr Z
  3213. 1200 PSL_A0_y MM
  3214. (3) mr Z
  3215. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  3216. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3217. 1200 0 T
  3218. /MM {exch M} def
  3219. /PSL_A0_y 83 def
  3220. /PSL_A1_y 0 def
  3221. 25 W
  3222. 0 1200 M 0 -1200 D S
  3223. 8 W
  3224. 0 0 M 83 0 D S
  3225. 0 300 M 83 0 D S
  3226. 0 600 M 83 0 D S
  3227. 0 900 M 83 0 D S
  3228. 0 1200 M 83 0 D S
  3229. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3230. -1200 0 T
  3231. /MM {neg M} def
  3232. /PSL_A0_y 83 def
  3233. /PSL_A1_y 0 def
  3234. 25 W
  3235. 0 0 M 1200 0 D S
  3236. 8 W
  3237. 0 0 M 0 -83 D S
  3238. 300 0 M 0 -83 D S
  3239. 600 0 M 0 -83 D S
  3240. 900 0 M 0 -83 D S
  3241. 1200 0 M 0 -83 D S
  3242. /PSL_AH0 0
  3243. (-1) sh mx
  3244. (0) sh mx
  3245. (1) sh mx
  3246. (2) sh mx
  3247. (3) sh mx
  3248. def
  3249. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  3250. 0 PSL_A0_y MM
  3251. (-1) bc Z
  3252. 300 PSL_A0_y MM
  3253. (0) bc Z
  3254. 600 PSL_A0_y MM
  3255. (1) bc Z
  3256. 900 PSL_A0_y MM
  3257. (2) bc Z
  3258. 1200 PSL_A0_y MM
  3259. (3) bc Z
  3260. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3261. 0 1200 T
  3262. /MM {M} def
  3263. /PSL_A0_y 83 def
  3264. /PSL_A1_y 0 def
  3265. 25 W
  3266. 0 0 M 1200 0 D S
  3267. 8 W
  3268. 0 0 M 0 83 D S
  3269. 300 0 M 0 83 D S
  3270. 600 0 M 0 83 D S
  3271. 900 0 M 0 83 D S
  3272. 1200 0 M 0 83 D S
  3273. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3274. 0 -1200 T
  3275. 0 setlinecap
  3276. 0 A
  3277. FQ
  3278. O0
  3279. 0 0 TM
  3280. % PostScript produced by:
  3281. %%GMT: grdcontour t.nc -Ct.cpt -JX1i -R-1/3/-1/3 -O -K
  3282. %%PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy +a=6378137.000 +b=6356752.314245
  3283. 0 setlinecap
  3284. 0 setlinejoin
  3285. 3.32551 setmiterlimit
  3286. clipsave
  3287. 0 0 M
  3288. 1200 0 D
  3289. 0 1200 D
  3290. -1200 0 D
  3291. PSL_eoclip N
  3292. 12 W
  3293. 330 300 M
  3294. -30 150 D
  3295. S
  3296. 390 300 M
  3297. -90 450 D
  3298. S
  3299. 450 300 M
  3300. -120 600 D
  3301. S
  3302. 510 300 M
  3303. -120 600 D
  3304. S
  3305. 570 300 M
  3306. -120 600 D
  3307. S
  3308. 630 300 M
  3309. -120 600 D
  3310. S
  3311. 690 300 M
  3312. -120 600 D
  3313. S
  3314. 750 300 M
  3315. -120 600 D
  3316. S
  3317. 810 300 M
  3318. -120 600 D
  3319. S
  3320. 870 300 M
  3321. -120 600 D
  3322. S
  3323. 900 450 M
  3324. -90 450 D
  3325. S
  3326. 900 750 M
  3327. -30 150 D
  3328. S
  3329. PSL_cliprestore
  3330. 0 A
  3331. FQ
  3332. O0
  3333. -5669 -1890 TM
  3334. % PostScript produced by:
  3335. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-0.5/2.5/-0.5/2.5 -X-12c -Y-4c
  3336. %%PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy +a=6378137.000 +b=6356752.314245
  3337. 0 setlinecap
  3338. 0 setlinejoin
  3339. 3.32551 setmiterlimit
  3340. clipsave
  3341. 0 0 M
  3342. 1200 0 D
  3343. 0 1200 D
  3344. -1200 0 D
  3345. PSL_eoclip N
  3346. V N 0 0 T 1200 1200 scale [/Indexed /DeviceRGB 14 <
  3347. 0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31000A00FFFFFFFF6C00FFCE00FF000000>] setcolorspace
  3348. << /ImageType 1 /Decode [0 15] /Width 50 /Height 50 /BitsPerComponent 4
  3349. /ImageMatrix [50 0 0 -50 0 50] /DataSource currentfile /ASCII85Decode filter /LZWDecode filter
  3350. >> image
  3351. J,g]g+:(@\+rQ?\KMndOb]c.C&IFi#;,nEa6(njgA3(kHMT)=T#S^rB$6hiGnJIdN0,OZl66[j=&lTj;79=95@k'u'RE<I4F
  3352. "s8,R8(u[PLWWq$T&aJj]#pqAp6A6`[UD7O]IB1X1)joTEH#@;3]\4P1pEuI:\CA+dMZ<Z?G&A;^Aerja&"kMHFdTq2Oq].Q
  3353. cQ<f6\5.8LD0lY,IjomCQh>;fK,N[NZr\X1NEjWKqR]<7"D4=.LWAd8SB>2-5a]4'c-qU,%sugUh0'RFa#PR%EntXKkmp<if
  3354. (4GK7C"\5tcl4+!=Xgi''-Xp9<J]k64_IciZ&mdO_mF'.m4;s;6c+S/b^J)B2<cnsGCeh>t42TgWILG]O)rqrb\'2I2Z-Zbs
  3355. ="ATN.js1LS*osg`>3P-8c(a(Z6V9-8$TebA[.6;YZo[ucB\O$=/Wb&%Z9<#^h%`*\@ikHB&*#qn1i.MDcDM3=HNU[['Gg\3
  3356. EWcBP8Pkmsh8.Hc!sq;S/?7UF&<&rNbA8.PZ`%Z07$c#9A3fP%o1Qt7\rLPT2a'if?L"8+F7RbmO6#mIX"k@_,.CM"2$C>V,
  3357. FV"k&e(H;8kLj@bL2:gTe&=/D(+a,1@(gP+q.1(dEHTOgIVn;AN%"sY8c2\Np$`~>
  3358. U
  3359. PSL_cliprestore
  3360. 2 setlinecap
  3361. /MM {neg exch M} def
  3362. /PSL_A0_y 83 def
  3363. /PSL_A1_y 0 def
  3364. 25 W
  3365. 0 1200 M 0 -1200 D S
  3366. 8 W
  3367. 0 200 M -83 0 D S
  3368. 0 600 M -83 0 D S
  3369. 0 1000 M -83 0 D S
  3370. /PSL_AH0 0
  3371. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  3372. 167 F0
  3373. (0) sw mx
  3374. (1) sw mx
  3375. (2) sw mx
  3376. def
  3377. /PSL_A0_y PSL_A0_y 83 add def
  3378. 200 PSL_A0_y MM
  3379. (0) mr Z
  3380. 600 PSL_A0_y MM
  3381. (1) mr Z
  3382. 1000 PSL_A0_y MM
  3383. (2) mr Z
  3384. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  3385. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3386. 1200 0 T
  3387. /MM {exch M} def
  3388. /PSL_A0_y 83 def
  3389. /PSL_A1_y 0 def
  3390. 25 W
  3391. 0 1200 M 0 -1200 D S
  3392. 8 W
  3393. 0 200 M 83 0 D S
  3394. 0 600 M 83 0 D S
  3395. 0 1000 M 83 0 D S
  3396. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3397. -1200 0 T
  3398. /MM {neg M} def
  3399. /PSL_A0_y 83 def
  3400. /PSL_A1_y 0 def
  3401. 25 W
  3402. 0 0 M 1200 0 D S
  3403. 8 W
  3404. 200 0 M 0 -83 D S
  3405. 600 0 M 0 -83 D S
  3406. 1000 0 M 0 -83 D S
  3407. /PSL_AH0 0
  3408. (0) sh mx
  3409. (1) sh mx
  3410. (2) sh mx
  3411. def
  3412. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  3413. 200 PSL_A0_y MM
  3414. (0) bc Z
  3415. 600 PSL_A0_y MM
  3416. (1) bc Z
  3417. 1000 PSL_A0_y MM
  3418. (2) bc Z
  3419. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3420. 0 1200 T
  3421. /MM {M} def
  3422. /PSL_A0_y 83 def
  3423. /PSL_A1_y 0 def
  3424. 25 W
  3425. 0 0 M 1200 0 D S
  3426. 8 W
  3427. 200 0 M 0 83 D S
  3428. 600 0 M 0 83 D S
  3429. 1000 0 M 0 83 D S
  3430. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3431. 0 -1200 T
  3432. 0 setlinecap
  3433. 0 A
  3434. FQ
  3435. O0
  3436. 0 0 TM
  3437. % PostScript produced by:
  3438. %%GMT: grdcontour t.nc -Ct.cpt -JX1i -R-0.5/2.5/-0.5/2.5 -O -K
  3439. %%PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy +a=6378137.000 +b=6356752.314245
  3440. 0 setlinecap
  3441. 0 setlinejoin
  3442. 3.32551 setmiterlimit
  3443. clipsave
  3444. 0 0 M
  3445. 1200 0 D
  3446. 0 1200 D
  3447. -1200 0 D
  3448. PSL_eoclip N
  3449. 12 W
  3450. 240 200 M
  3451. -40 200 D
  3452. S
  3453. 320 200 M
  3454. -120 600 D
  3455. S
  3456. 400 200 M
  3457. -160 800 D
  3458. S
  3459. 480 200 M
  3460. -160 800 D
  3461. S
  3462. 560 200 M
  3463. -160 800 D
  3464. S
  3465. 640 200 M
  3466. -160 800 D
  3467. S
  3468. 720 200 M
  3469. -160 800 D
  3470. S
  3471. 800 200 M
  3472. -160 800 D
  3473. S
  3474. 880 200 M
  3475. -160 800 D
  3476. S
  3477. 960 200 M
  3478. -160 800 D
  3479. S
  3480. 1000 400 M
  3481. -120 600 D
  3482. S
  3483. 1000 800 M
  3484. -40 200 D
  3485. S
  3486. PSL_cliprestore
  3487. 0 A
  3488. FQ
  3489. O0
  3490. 0 0 TM
  3491. % PostScript produced by:
  3492. %%GMT: pstext -R-0.5/2.5/-0.5/2.5 -JX1i -N -F+f10p+jBR -O -K
  3493. %%PROJ: xy -0.50000000 2.50000000 -0.50000000 2.50000000 -0.500 2.500 -0.500 2.500 +xy +a=6378137.000 +b=6356752.314245
  3494. 0 setlinecap
  3495. 0 setlinejoin
  3496. 3.32551 setmiterlimit
  3497. -360 800 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  3498. 167 F0
  3499. (grdmath -r) br Z
  3500. -360 600 M (grdimage -E50) br Z
  3501. 0 A
  3502. FQ
  3503. O0
  3504. 1890 0 TM
  3505. % PostScript produced by:
  3506. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R0/2/0/2 -X4c
  3507. %%PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  3508. 0 setlinecap
  3509. 0 setlinejoin
  3510. 3.32551 setmiterlimit
  3511. clipsave
  3512. 0 0 M
  3513. 1200 0 D
  3514. 0 1200 D
  3515. -1200 0 D
  3516. PSL_eoclip N
  3517. V N -300 -300 T 1800 1800 scale [/Indexed /DeviceRGB 14 <
  3518. 0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31000A00FFFFFFFF6C00FFCE00FF000000>] setcolorspace
  3519. << /ImageType 1 /Decode [0 15] /Width 75 /Height 75 /BitsPerComponent 4
  3520. /ImageMatrix [75 0 0 -75 0 75] /DataSource currentfile /ASCII85Decode filter /LZWDecode filter
  3521. >> image
  3522. J,g]g3"SOf+qY+#@ko;dW`:PeN5p"Mi=Ql"`a_T)d],F&JcK3JLfi(G&;`gcnT70:2'%`JTQ2028k:b%&L$Z]S5NKBN6EV(#
  3523. V=PF3M"*IoB=-pKe\.pVSXc5S?#8Z94M\Dg@:RcR8I^A;BZet=I%?F/%]A=^I*QH+V:S`QHj*=g1s9KjgCM+\,\-XQs;Po=1
  3524. hRD<m117Pu,:fm[.e'k'q0d>Hek_*_u*Yb>W>f`TqRDbf?`^Pq"nfGnc0;Ztm)8G>5#sfX8&b7/(1/g$NtVrEU>@37gc3\h%
  3525. I@]%tj'5T7p2,C?ZW@lD"/h\O8RhG5sf^=PSfWSLu8\9gVL':@3nZ.[?e(I.:THdb+6hfI/cJh*>Wp+\'jo]DL\CS(?e98i*
  3526. .ZDqFF`^):_E<a2i'Hl_PE15Ge[`mMI!4Q]9I-d22n_Eq"O%RM-3t7E''uVhBVW1,7j*n^3EFYg07kK(S)+3qhD]d"1!Zo];
  3527. NW`tu5L!-TcTmHu4V^R#A4I(aP%5!r9+\H/cG4CX^AZ-YbV(Q];X<j'S^F7@%*bmOKSrS<1V4Gp;:Did:JnKM50ictiu^lj]
  3528. >!T-Z6]N>44,VX7o8`WO[Zf84XbMK;]Hl<5d,5`5Z=k^8LdEa'[]fP<A_5_e1]':37P1NaUQMfSN0a%eGWf+=&]V^8Pud9!F
  3529. \h^*>mm.C?:LI:R59D@nnpN,3mW3NN#Okp.UZa>>aLC2+\NFb:cjm9rhIBPss)'5Be,nG22c8j)s4"V;6K(<Mf:kTs"ihFP-
  3530. 384`B(1)hEUp'NL!%1g"<@Dc7JfVS6M?mB7Yl$f3[&iRYtt+hq,2a_tG7`FG(b[G7N`jY[3l9U".HfmR2;=u2W))1Cb71b.(
  3531. %IqRHOl[`_0hJE!Pq$oDZ4o-20OBG[YA#SLt[A0cMqNeOe:l\HHRVOm#X,A8q@2#V4%m=2Zb-?d8[Q41:!KkH65ol9Z]=!%g
  3532. -`bhmU.2XU?Gji^)&p<X]67S8A5P,Q[./NV$WCNIP#R_;]Or7Ec`BV<MK?DqLLKa(]F'N,L1`*eig`55dIk1s9^)13KMC!W#
  3533. RC~>
  3534. U
  3535. PSL_cliprestore
  3536. 2 setlinecap
  3537. /MM {neg exch M} def
  3538. /PSL_A0_y 83 def
  3539. /PSL_A1_y 0 def
  3540. 25 W
  3541. 0 1200 M 0 -1200 D S
  3542. 8 W
  3543. 0 0 M -83 0 D S
  3544. 0 600 M -83 0 D S
  3545. 0 1200 M -83 0 D S
  3546. /PSL_AH0 0
  3547. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  3548. 167 F0
  3549. (0) sw mx
  3550. (1) sw mx
  3551. (2) sw mx
  3552. def
  3553. /PSL_A0_y PSL_A0_y 83 add def
  3554. 0 PSL_A0_y MM
  3555. (0) mr Z
  3556. 600 PSL_A0_y MM
  3557. (1) mr Z
  3558. 1200 PSL_A0_y MM
  3559. (2) mr Z
  3560. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  3561. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3562. 1200 0 T
  3563. /MM {exch M} def
  3564. /PSL_A0_y 83 def
  3565. /PSL_A1_y 0 def
  3566. 25 W
  3567. 0 1200 M 0 -1200 D S
  3568. 8 W
  3569. 0 0 M 83 0 D S
  3570. 0 600 M 83 0 D S
  3571. 0 1200 M 83 0 D S
  3572. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3573. -1200 0 T
  3574. /MM {neg M} def
  3575. /PSL_A0_y 83 def
  3576. /PSL_A1_y 0 def
  3577. 25 W
  3578. 0 0 M 1200 0 D S
  3579. 8 W
  3580. 0 0 M 0 -83 D S
  3581. 600 0 M 0 -83 D S
  3582. 1200 0 M 0 -83 D S
  3583. /PSL_AH0 0
  3584. (0) sh mx
  3585. (1) sh mx
  3586. (2) sh mx
  3587. def
  3588. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  3589. 0 PSL_A0_y MM
  3590. (0) bc Z
  3591. 600 PSL_A0_y MM
  3592. (1) bc Z
  3593. 1200 PSL_A0_y MM
  3594. (2) bc Z
  3595. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3596. 0 1200 T
  3597. /MM {M} def
  3598. /PSL_A0_y 83 def
  3599. /PSL_A1_y 0 def
  3600. 25 W
  3601. 0 0 M 1200 0 D S
  3602. 8 W
  3603. 0 0 M 0 83 D S
  3604. 600 0 M 0 83 D S
  3605. 1200 0 M 0 83 D S
  3606. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3607. 0 -1200 T
  3608. 0 setlinecap
  3609. 0 A
  3610. FQ
  3611. O0
  3612. 0 0 TM
  3613. % PostScript produced by:
  3614. %%GMT: grdcontour t.nc -Ct.cpt -JX1i -R0/2/0/2 -O -K
  3615. %%PROJ: xy 0.00000000 2.00000000 0.00000000 2.00000000 0.000 2.000 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  3616. 0 setlinecap
  3617. 0 setlinejoin
  3618. 3.32551 setmiterlimit
  3619. clipsave
  3620. 0 0 M
  3621. 1200 0 D
  3622. 0 1200 D
  3623. -1200 0 D
  3624. PSL_eoclip N
  3625. 12 W
  3626. 60 0 M
  3627. -60 300 D
  3628. S
  3629. 180 0 M
  3630. -180 900 D
  3631. S
  3632. 300 0 M
  3633. -240 1200 D
  3634. S
  3635. 420 0 M
  3636. -240 1200 D
  3637. S
  3638. 540 0 M
  3639. -240 1200 D
  3640. S
  3641. 660 0 M
  3642. -240 1200 D
  3643. S
  3644. 780 0 M
  3645. -240 1200 D
  3646. S
  3647. 900 0 M
  3648. -240 1200 D
  3649. S
  3650. 1020 0 M
  3651. -240 1200 D
  3652. S
  3653. 1140 0 M
  3654. -240 1200 D
  3655. S
  3656. 1200 300 M
  3657. -180 900 D
  3658. S
  3659. 1200 900 M
  3660. -60 300 D
  3661. S
  3662. PSL_cliprestore
  3663. 0 A
  3664. FQ
  3665. O0
  3666. 1890 0 TM
  3667. % PostScript produced by:
  3668. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-0.5/1.5/0/2 -X4c
  3669. %%PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  3670. 0 setlinecap
  3671. 0 setlinejoin
  3672. 3.32551 setmiterlimit
  3673. clipsave
  3674. 0 0 M
  3675. 1200 0 D
  3676. 0 1200 D
  3677. -1200 0 D
  3678. PSL_eoclip N
  3679. V N 0 -300 T 1800 1800 scale [/Indexed /DeviceRGB 14 <
  3680. 0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31000A00FFFFFFFF6C00FFCE00FF000000>] setcolorspace
  3681. << /ImageType 1 /Decode [0 15] /Width 75 /Height 75 /BitsPerComponent 4
  3682. /ImageMatrix [75 0 0 -75 0 75] /DataSource currentfile /ASCII85Decode filter /LZWDecode filter
  3683. >> image
  3684. J,g]g3"SOf+qY+#@ko;dW`:PeN5p"Mi=Ql"`a_T)d],F&JcK3JLfi(G&;`gcnT70:2'%`JTQ2028k:b%&L$Z]S5NKBN6EV(#
  3685. V=PF3M"*IoB=-pKe\.pVSXc5S?#8Z94M\Dg@:RcR8I^A;BZet=I%?F/%]A=^I*QH+V:S`QHj*=g1s9KjgCM+\,\-XQs;Po=1
  3686. hRD<m117Pu,:fm[.e'k'q0d>Hek_*_u*Yb>W>f`TqRDbf?`^Pq"nfGnc0;Ztm)8G>5#sfX8&b7/(1/g$NtVrEU>@37gc3\h%
  3687. I@]%tj'5T7p2,C?ZW@lD"/h\O8RhG5sf^=PSfWSLu8\9gVL':@3nZ.[?e(I.:THdb+6hfI/cJh*>Wp+\'jo]DL\CS(?e98i*
  3688. .ZDqFF`^):_E<a2i'Hl_PE15Ge[`mMI!4Q]9I-d22n_Eq"O%RM-3t7E''uVhBVW1,7j*n^3EFYg07kK(S)+3qhD]d"1!Zo];
  3689. NW`tu5L!-TcTmHu4V^R#A4I(aP%5!r9+\H/cG4CX^AZ-YbV(Q];X<j'S^F7@%*bmOKSrS<1V4Gp;:Did:JnKM50ictiu^lj]
  3690. >!T-Z6]N>44,VX7o8`WO[Zf84XbMK;]Hl<5d,5`5Z=k^8LdEa'[]fP<A_5_e1]':37P1NaUQMfSN0a%eGWf+=&]V^8Pud9!F
  3691. \h^*>mm.C?:LI:R59D@nnpN,3mW3NN#Okp.UZa>>aLC2+\NFb:cjm9rhIBPss)'5Be,nG22c8j)s4"V;6K(<Mf:kTs"ihFP-
  3692. 384`B(1)hEUp'NL!%1g"<@Dc7JfVS6M?mB7Yl$f3[&iRYtt+hq,2a_tG7`FG(b[G7N`jY[3l9U".HfmR2;=u2W))1Cb71b.(
  3693. %IqRHOl[`_0hJE!Pq$oDZ4o-20OBG[YA#SLt[A0cMqNeOe:l\HHRVOm#X,A8q@2#V4%m=2Zb-?d8[Q41:!KkH65ol9Z]=!%g
  3694. -`bhmU.2XU?Gji^)&p<X]67S8A5P,Q[./NV$WCNIP#R_;]Or7Ec`BV<MK?DqLLKa(]F'N,L1`*eig`55dIk1s9^)13KMC!W#
  3695. RC~>
  3696. U
  3697. PSL_cliprestore
  3698. 2 setlinecap
  3699. /MM {neg exch M} def
  3700. /PSL_A0_y 83 def
  3701. /PSL_A1_y 0 def
  3702. 25 W
  3703. 0 1200 M 0 -1200 D S
  3704. 8 W
  3705. 0 0 M -83 0 D S
  3706. 0 600 M -83 0 D S
  3707. 0 1200 M -83 0 D S
  3708. /PSL_AH0 0
  3709. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  3710. 167 F0
  3711. (0) sw mx
  3712. (1) sw mx
  3713. (2) sw mx
  3714. def
  3715. /PSL_A0_y PSL_A0_y 83 add def
  3716. 0 PSL_A0_y MM
  3717. (0) mr Z
  3718. 600 PSL_A0_y MM
  3719. (1) mr Z
  3720. 1200 PSL_A0_y MM
  3721. (2) mr Z
  3722. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  3723. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3724. 1200 0 T
  3725. /MM {exch M} def
  3726. /PSL_A0_y 83 def
  3727. /PSL_A1_y 0 def
  3728. 25 W
  3729. 0 1200 M 0 -1200 D S
  3730. 8 W
  3731. 0 0 M 83 0 D S
  3732. 0 600 M 83 0 D S
  3733. 0 1200 M 83 0 D S
  3734. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3735. -1200 0 T
  3736. /MM {neg M} def
  3737. /PSL_A0_y 83 def
  3738. /PSL_A1_y 0 def
  3739. 25 W
  3740. 0 0 M 1200 0 D S
  3741. 8 W
  3742. 300 0 M 0 -83 D S
  3743. 900 0 M 0 -83 D S
  3744. /PSL_AH0 0
  3745. (0) sh mx
  3746. (1) sh mx
  3747. def
  3748. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  3749. 300 PSL_A0_y MM
  3750. (0) bc Z
  3751. 900 PSL_A0_y MM
  3752. (1) bc Z
  3753. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3754. 0 1200 T
  3755. /MM {M} def
  3756. /PSL_A0_y 83 def
  3757. /PSL_A1_y 0 def
  3758. 25 W
  3759. 0 0 M 1200 0 D S
  3760. 8 W
  3761. 300 0 M 0 83 D S
  3762. 900 0 M 0 83 D S
  3763. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3764. 0 -1200 T
  3765. 0 setlinecap
  3766. 0 A
  3767. FQ
  3768. O0
  3769. 0 0 TM
  3770. % PostScript produced by:
  3771. %%GMT: grdcontour t.nc -Ct.cpt -JX1i -R-0.5/1.5/0/2 -O -K
  3772. %%PROJ: xy -0.50000000 1.50000000 0.00000000 2.00000000 -0.500 1.500 0.000 2.000 +xy +a=6378137.000 +b=6356752.314245
  3773. 0 setlinecap
  3774. 0 setlinejoin
  3775. 3.32551 setmiterlimit
  3776. clipsave
  3777. 0 0 M
  3778. 1200 0 D
  3779. 0 1200 D
  3780. -1200 0 D
  3781. PSL_eoclip N
  3782. 12 W
  3783. 360 0 M
  3784. -60 300 D
  3785. S
  3786. 480 0 M
  3787. -180 900 D
  3788. S
  3789. 600 0 M
  3790. -240 1200 D
  3791. S
  3792. 720 0 M
  3793. -240 1200 D
  3794. S
  3795. 840 0 M
  3796. -240 1200 D
  3797. S
  3798. 960 0 M
  3799. -240 1200 D
  3800. S
  3801. 1080 0 M
  3802. -240 1200 D
  3803. S
  3804. 1200 0 M
  3805. -240 1200 D
  3806. S
  3807. 1200 600 M
  3808. -120 600 D
  3809. S
  3810. 1200 1200 M
  3811. 0 0 D
  3812. P S
  3813. PSL_cliprestore
  3814. 0 A
  3815. FQ
  3816. O0
  3817. 1890 0 TM
  3818. % PostScript produced by:
  3819. %%GMT: grdimage t.nc -Ct.cpt -JX1i -B1/1WeSn --FONT_ANNOT_PRIMARY=10p -E50 -O -K -R-1/3/-1/3 -X4c
  3820. %%PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy +a=6378137.000 +b=6356752.314245
  3821. 0 setlinecap
  3822. 0 setlinejoin
  3823. 3.32551 setmiterlimit
  3824. clipsave
  3825. 0 0 M
  3826. 1200 0 D
  3827. 0 1200 D
  3828. -1200 0 D
  3829. PSL_eoclip N
  3830. V N 150 150 T 900 900 scale [/Indexed /DeviceRGB 14 <
  3831. 0058FF00BAFF00FFE200FF8000FF1D45FF00A7FF00FFF500FF9300FF31000A00FFFFFFFF6C00FFCE00FF000000>] setcolorspace
  3832. << /ImageType 1 /Decode [0 15] /Width 38 /Height 38 /BitsPerComponent 4
  3833. /ImageMatrix [38 0 0 -38 0 38] /DataSource currentfile /ASCII85Decode filter /LZWDecode filter
  3834. >> image
  3835. J,g]W!/O061EmE'VIR0q&=J>$<D'(f!!3abN?Lc$4?=]"M8c4l0qf3r*J^LjCUR_&.2NR%jKa%$ATo\;73Id3S8dp-Q*/l)f
  3836. W5cW#V)*uoD)AA].I#K!`XG&.[`T#bGnQ/.9[RE7+Nc/(b?^A?D#kaei:#T&K?J!B$7Z#YQJd&6LHckD*D;O]Z1O!.D>FqTU
  3837. 8:rfI21arJ6D+Z#Ybl]!FhsAErKn[1[[_UseHE`p7ZQ7\j%kH#5F%Vf/qE-$m_ahT]?0g7?huc*qV)_9KH5CW42DSAS^o4DZ
  3838. A5+,QTN3>h\o7Qm9eZEkE#%:.fCmHSdkY5Xcq>OcpGRd0%T_r]J!\,2E9IsFoG>OPT'Y7GsWYUF6-q`4!FN<-T64.qS0"AB*
  3839. I1+nH56p.Q_WiE%3EOu[sb_oAR-h--$p,36HmUehDKB2t>d/j@~>
  3840. U
  3841. PSL_cliprestore
  3842. 2 setlinecap
  3843. /MM {neg exch M} def
  3844. /PSL_A0_y 83 def
  3845. /PSL_A1_y 0 def
  3846. 25 W
  3847. 0 1200 M 0 -1200 D S
  3848. 8 W
  3849. 0 0 M -83 0 D S
  3850. 0 300 M -83 0 D S
  3851. 0 600 M -83 0 D S
  3852. 0 900 M -83 0 D S
  3853. 0 1200 M -83 0 D S
  3854. /PSL_AH0 0
  3855. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  3856. 167 F0
  3857. (-1) sw mx
  3858. (0) sw mx
  3859. (1) sw mx
  3860. (2) sw mx
  3861. (3) sw mx
  3862. def
  3863. /PSL_A0_y PSL_A0_y 83 add def
  3864. 0 PSL_A0_y MM
  3865. (-1) mr Z
  3866. 300 PSL_A0_y MM
  3867. (0) mr Z
  3868. 600 PSL_A0_y MM
  3869. (1) mr Z
  3870. 900 PSL_A0_y MM
  3871. (2) mr Z
  3872. 1200 PSL_A0_y MM
  3873. (3) mr Z
  3874. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  3875. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3876. 1200 0 T
  3877. /MM {exch M} def
  3878. /PSL_A0_y 83 def
  3879. /PSL_A1_y 0 def
  3880. 25 W
  3881. 0 1200 M 0 -1200 D S
  3882. 8 W
  3883. 0 0 M 83 0 D S
  3884. 0 300 M 83 0 D S
  3885. 0 600 M 83 0 D S
  3886. 0 900 M 83 0 D S
  3887. 0 1200 M 83 0 D S
  3888. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3889. -1200 0 T
  3890. /MM {neg M} def
  3891. /PSL_A0_y 83 def
  3892. /PSL_A1_y 0 def
  3893. 25 W
  3894. 0 0 M 1200 0 D S
  3895. 8 W
  3896. 0 0 M 0 -83 D S
  3897. 300 0 M 0 -83 D S
  3898. 600 0 M 0 -83 D S
  3899. 900 0 M 0 -83 D S
  3900. 1200 0 M 0 -83 D S
  3901. /PSL_AH0 0
  3902. (-1) sh mx
  3903. (0) sh mx
  3904. (1) sh mx
  3905. (2) sh mx
  3906. (3) sh mx
  3907. def
  3908. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  3909. 0 PSL_A0_y MM
  3910. (-1) bc Z
  3911. 300 PSL_A0_y MM
  3912. (0) bc Z
  3913. 600 PSL_A0_y MM
  3914. (1) bc Z
  3915. 900 PSL_A0_y MM
  3916. (2) bc Z
  3917. 1200 PSL_A0_y MM
  3918. (3) bc Z
  3919. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3920. 0 1200 T
  3921. /MM {M} def
  3922. /PSL_A0_y 83 def
  3923. /PSL_A1_y 0 def
  3924. 25 W
  3925. 0 0 M 1200 0 D S
  3926. 8 W
  3927. 0 0 M 0 83 D S
  3928. 300 0 M 0 83 D S
  3929. 600 0 M 0 83 D S
  3930. 900 0 M 0 83 D S
  3931. 1200 0 M 0 83 D S
  3932. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3933. 0 -1200 T
  3934. 0 setlinecap
  3935. 0 A
  3936. FQ
  3937. O0
  3938. 0 0 TM
  3939. % PostScript produced by:
  3940. %%GMT: grdcontour t.nc -Ct.cpt -JX1i -R-1/3/-1/3 -O
  3941. %%PROJ: xy -1.00000000 3.00000000 -1.00000000 3.00000000 -1.000 3.000 -1.000 3.000 +xy +a=6378137.000 +b=6356752.314245
  3942. 0 setlinecap
  3943. 0 setlinejoin
  3944. 3.32551 setmiterlimit
  3945. clipsave
  3946. 0 0 M
  3947. 1200 0 D
  3948. 0 1200 D
  3949. -1200 0 D
  3950. PSL_eoclip N
  3951. 12 W
  3952. 330 300 M
  3953. -30 150 D
  3954. S
  3955. 390 300 M
  3956. -90 450 D
  3957. S
  3958. 450 300 M
  3959. -120 600 D
  3960. S
  3961. 510 300 M
  3962. -120 600 D
  3963. S
  3964. 570 300 M
  3965. -120 600 D
  3966. S
  3967. 630 300 M
  3968. -120 600 D
  3969. S
  3970. 690 300 M
  3971. -120 600 D
  3972. S
  3973. 750 300 M
  3974. -120 600 D
  3975. S
  3976. 810 300 M
  3977. -120 600 D
  3978. S
  3979. 870 300 M
  3980. -120 600 D
  3981. S
  3982. 900 450 M
  3983. -90 450 D
  3984. S
  3985. 900 750 M
  3986. -30 150 D
  3987. S
  3988. PSL_cliprestore
  3989. %%PageTrailer
  3990. U
  3991. showpage
  3992. %%Trailer
  3993. end
  3994. %%EOF
Tip!

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

Comments

Loading...