1 |
dimitri |
1.1 |
figure(1),clf |
2 |
|
|
subplot(421),mypcolor(readbin('uwind_192_94_8.bin',[192 94])');colorbar |
3 |
|
|
subplot(422),mypcolor(readbin('vwind_192_94_8.bin',[192 94])');colorbar |
4 |
|
|
subplot(423),mypcolor(readbin('swdown_192_94_8.bin',[192 94])');colorbar |
5 |
|
|
subplot(424),mypcolor(readbin('lwdown_192_94_8.bin',[192 94])');colorbar |
6 |
|
|
subplot(425),mypcolor(readbin('precip_192_94_8.bin',[192 94])');colorbar |
7 |
|
|
subplot(426),mypcolor(readbin('atemp_192_94_8.bin',[192 94])');colorbar |
8 |
|
|
subplot(427),mypcolor(readbin('aqh_192_94_8.bin',[192 94])');colorbar |
9 |
|
|
|
10 |
|
|
figure(2) |
11 |
|
|
for fld={'RAZ','RAW','RAS','RA','LONG','LONC','LATG','LATC', ... |
12 |
|
|
'DYU','DYG','DYF','DYC','DXV','DXG','DXF','DXC'} |
13 |
|
|
tmp=permute(readbin([fld{1} '.bin'],[32,6,32],1,'real*8'),[1 3 2]); |
14 |
|
|
cx=[min(tmp(:)) max(tmp(:))]; clf, plot_cube, title(fld{1}), pause |
15 |
|
|
end |
16 |
|
|
|
17 |
|
|
for fld={'UWIND','VWIND','Eta','VICE','UICE','HEFF','AREA','Qsw','Qnet','FV','FU','EmPmR'} |
18 |
|
|
tmp=permute(readbin([fld{1} '.0000000020.data'],[32,6,32]),[1 3 2]); |
19 |
|
|
cx=[min(tmp(:)) max(tmp(:))]; clf, plot_cube, title(fld{1}), pause |
20 |
|
|
end |