Displaying 1 result from an estimated 1 matches for "avegar".
Did you mean:
vegar
2009 Nov 19
2
plot filled.contour over continent map
...r a map showing country boundaries (e.g. for Europe)
What i do is:
map('worldHires',xlim=c(-10,40),ylim=c(35,70),boundary = TRUE,border=0.1)
map.axes()
filled.contour(mslp, zlim=c(1000,1020),color.palette = colorRampPalette(c("blue", "white", "red")),main="Avegared MLSP (hPa) ERA40 JJA [1996-2002]", xlab="Longitude",ylab="Latitude")
in which the mslp file is a netcdf file, with mean sea level pressure for a range of lat/lon values.
If I run the above-mentioned, I just get the map of Europe, without the contourplot.
When commenting...