-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NAMESPACE re-working #99
Comments
Was the The SpatialPoints not having a viable EMPTY state is a major reason I favor lighter-weight option for the library(aqp, warn.conflicts = FALSE)
#> This is aqp 1.27
library(soilDB)
data("loafercreek", package = 'soilDB')
slot(loafercreek, 'sp')
#> class : SpatialPoints
#> features : 1
#> Error in e[1, 2]: subscript out of bounds
loafersub <- subset(loafercreek, !is.na(x_std))
coordinates(loafersub) <- ~ x_std + y_std
slot(loafersub, 'sp')
#> class : SpatialPoints
#> features : 106
#> extent : -121.4412, -120.2611, 37.68111, 39.51897 (xmin, xmax, ymin, ymax)
#> crs : NA |
Related to aqp/#85
This doesn't work, why?
For now,
R CMD build
may fail while running examples. This has to do with method dispatch forplot.SoilprofileCollection
.The text was updated successfully, but these errors were encountered: