Matlab World Map
image thumbnail
enter image description here
output
latseg2=latseg(lonseg<195); latseg2=[latseg2;latseg2(1)]; hf=patch(lonseg2,latseg2,'g'); set(hf,'linestyle','none')
map = readmtx('avhrr_pf.ndvi.1nmegl.9409.bin',180,360,'real*4'); map = flipud(map); map(map<-9)=NaN; maplegend = [1 90 -180]; worldmap('world','none'); ...
... and the matrix is aligned north and south, then it is a regular matrix map. The topo map provided with MATLAB is such a regular matrix map:
image thumbnail
enter image description here
output
latseg2=latseg(lonseg<195); latseg2=[latseg2;latseg2(1)]; hf=patch(lonseg2,latseg2,'g'); set(hf,'linestyle','none')
map = readmtx('avhrr_pf.ndvi.1nmegl.9409.bin',180,360,'real*4'); map = flipud(map); map(map<-9)=NaN; maplegend = [1 90 -180]; worldmap('world','none'); ...
... and the matrix is aligned north and south, then it is a regular matrix map. The topo map provided with MATLAB is such a regular matrix map:
Matlab World Map