Skip to content
Prev 10414 / 29559 Next

Spatial network plots? -- speeding up rasterization

Hi Robert
Looking over your code, Wouldn't it be much faster
to use Rgooglemaps or something where the map is already rasterized?
The newer versions of R have the lowlevel raster function for plotting
images.
Also, even in base graphics you can use alpha blending so for your
network lines 
lines(rts, col=rgb(1,0,0,alpha=.2))
would look much nicer.

Nicholas