We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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_data]=CSnative(fname,varname,time,level); % draw the figure face by face [lons1 lats1 data1]=extendFace1(lons,lats,cubed_data); pach1=geoshow(lats1,lons1-180.,data1,'displaytype','texturemap'); pach2=geoshow(lats(:,:,2),lons(:,:,2)-180.,cubed_data(:,:,2),'displaytype','texturemap'); [lons3 lats3 data3]=extendFace3(lons,lats,cubed_data); pach3=geoshow(lats3,lons3-180.,data3,'displaytype','texturemap'); [lons4 lats4 data4]=extendFace4(lons,lats,cubed_data); pach4=geoshow(lats4,lons4-180.,data4,'displaytype','texturemap'); pach5=geoshow(lats(:,:,5),lons(:,:,5)-180.,cubed_data(:,:,5),'displaytype','texturemap'); [lons6 lats6 data6]=extendFace6(lons,lats,cubed_data); pach6=geoshow(lats6,lons6-180.,data6,'displaytype','texturemap');