Skip to content

List of non-SSURGO (mapping incomplete/NOTCOM) counties? #319

Answered by brownag
kevinwolz asked this question in Q&A
Discussion options

You must be logged in to vote
library(soilDB)
x <- SDA_query("SELECT areasymbol, sapubstatuscode, iscomplete FROM sastatusmap")
#> single result set, returning a data.frame
x2 <- x[x$iscomplete == 0, ]
x2[order(x2$areasymbol), ]
#>      areasymbol sapubstatuscode iscomplete
#> 2701      AK621               0          0
#> 2700      AK623               0          0
#> 2991      AK644               2          0
#> 892       AK646               2          0
#> 2953      AK650               2          0
#> 2702      AK659               0          0
#> 660       AK693               2          0
#> 2703      AK700               0          0
#> 2704      AK701               0          0
#> 2705      AK702               0    …

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@brownag
Comment options

Answer selected by kevinwolz
@kevinwolz
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants