Displaying 1 result from an estimated 1 matches for "tmp_200802150300".
2008 Feb 18
2
how to plot image() without painting a map (the background)
...as image "paints" the background as I
read somewhere in this forum.
So would have someone a solution to correct my script ?
Thanks in advance,
Ptit Bleu.
----------------------------------------------------
akilonlat03<-interp(lonlat03$Longitude, lonlat03$Latitude,
(5/9)*(lonlat03$TMP_200802150300-32))
akilonlat06<-interp(lonlat06$Longitude, lonlat06$Latitude,
(5/9)*(lonlat06$TMP_200802150600-32))
map('france')
image(akilonlat03, col=cm.colors(100), axes=FALSE, add=TRUE)
#contour(akilonlat03, col="blue", add=TRUE)
image(akilonlat06, col=cm.colors(100), axes=FALSE, add=...