I have a raster object to which I would like to add points. However, when I change plot size, by making it full screen for example, the points change their positions.
Is there a way to give them exact positions, independent of plot size?
reproducable code:
r<- raster(nrows=10, ncols=10)
r <- setValues(r, 1:ncell(r))
plot(r)
points(x=-50,y=20)
points(x=-50,y=-90)
I'm not allowed to post images. But the lower point gets out of the coloured region when I make the device smaller or moves more into the coloured region when I make the device bigger.
Cheers
this problem has been exposed here too: plotting spatial points over a raster layer in r.
I tried to overpass it by creating a SpatialPointsDataFrame:
The only solution I see is once you overlap the point over the raster you shouldn't change the plot window size. Otherwise the points will be shifted somewhere randomly...