Displaying 1 result from an estimated 1 matches for "hysplitproj".
2014 Sep 04
1
R CMD check --as-cran does not show all error messages.
...the *LazyData: yes* is set in the DESCRIPTION file. I know
that the cause of this error is because somehow, the package is not being
loaded in the NAMESPACE, but it should be there because I am using LazyData.
That is the code for the PlotBgMap function:
PlotBgMap <-function( traj, ... ) {
hySplitProj <- CRS(proj4string(traj))
canada <- spTransform(canada.map, hySplitProj)
plot(canada.map, border="white", col="lightgrey", ... )
}
I'd like to know if I am missing something in the Checking process, or if I
should do anything else to fix this error. Thanks....