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
pm_getmap(interval="Cretaceous")(the example in the documentation) results in the following error and warning:
Error in readChar(con, 5L, useBytes = TRUE) : cannot open the connection
In addition: Warning message:
In readChar(con, 5L, useBytes = TRUE) :
cannot open compressed file 'Data/Cretaceous.rda', probable reason 'No such file or directory'
It looks like the function is trying to load an actual file (load(paste("Data/", interval, ".rda", sep = ""))), but the data is already in the environment since it is loaded with the package.
In this case, assign("shape", get("Cretaceous")) should be sufficient.
The text was updated successfully, but these errors were encountered:
but it doesn't come out with any shape of map or plot..
I need Oligocene, Miocene epoch maps of the world...but don't get the example map.
Thank you!
Best,
pm_getmap(interval="Cretaceous")
(the example in the documentation) results in the following error and warning:It looks like the function is trying to load an actual file (
load(paste("Data/", interval, ".rda", sep = ""))
), but the data is already in the environment since it is loaded with the package.In this case,
assign("shape", get("Cretaceous"))
should be sufficient.The text was updated successfully, but these errors were encountered: