Recipe: Matlab program driver for visualization: Difference between revisions
Created page with "close all; clear all; %opengl software fname='example_prog.20000414_2200z.nc4'; varname='T'; level=1; time=1; figure; hold on; %read the cs native data [lons lats cubed_dat..." |
No edit summary |
||
Line 1: | Line 1: | ||
<syntaxhighlight lang="matlab"> | |||
close all; | close all; | ||
clear all; | clear all; | ||
Line 30: | Line 31: | ||
[lons6 lats6 data6]=extendFace6(lons,lats,cubed_data); | [lons6 lats6 data6]=extendFace6(lons,lats,cubed_data); | ||
pach6=geoshow(lats6,lons6-180.,data6,'displaytype','texturemap'); | pach6=geoshow(lats6,lons6-180.,data6,'displaytype','texturemap'); | ||
</syntaxhighlight> |