You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Matteo, spatialPlot uses spplot (package sp), therefore, you could convert your station data into a SpatialPoints* object and use argument sp.layout like this:
library(visualizeR)
library(sp)
stations <- SpatialPoints(getCoordinates(VALUE_Iberia_pr))
spatialPlot(climatology(EOBS_Iberia_pr), sp.layout = list(stations, first = FALSE, pch = 2, col = "black"))
I have gridded data and a set of stations and I would like to plot them together with
spatialPlot
. Is it possible?The text was updated successfully, but these errors were encountered: