Displaying 1 result from an estimated 1 matches for "oct94".
2004 Dec 01
1
Manipulating contour plots
...r plot with colour bar and overlay
a map.
I need to create several of these representing variables with different
spatial extents for comparison. When I try to fix the plot area size and
axes limits as follows:
par(fig=c(0,1.0,0.3125,1.0)
filled.contour(x=seq((320/2)-180.5,(480/2)-180.5,len=nrow(oct94)),
y=seq((190/2)-90.5,(240/2)-90.5,len=ncol(oct94)),
z=as.matrix(oct94),
color=heat.colors,
levels=seq(0,30,2),
plot.axes={axis(1,seq(-60,60,by=20));
axis(2,seq(5,30,by=5))})
my definitions were ignored producing a stretched image of the area with
limits defined by the contour plot.
I have al...