Get mapunit ecological sites from Soil Data Access
Source:R/get_SDA_coecoclass.R
get_SDA_coecoclass.Rd
get_SDA_coecoclass()
retrieves ecological site information from the Soil
Data Access (SDA) database for a given set of map unit keys (mukeys). It
returns a data frame containing ecological site IDs, names, and associated
classification details, enabling users to link soil map units to ecological
site concepts used in land management and conservation planning.
Usage
get_SDA_coecoclass(
method = "None",
areasymbols = NULL,
mukeys = NULL,
WHERE = NULL,
query_string = FALSE,
ecoclasstypename = c("NRCS Rangeland Site", "NRCS Forestland Site"),
ecoclassref = "Ecological Site Description Database",
not_rated_value = "Not assigned",
miscellaneous_areas = TRUE,
include_minors = TRUE,
threshold = 0,
dsn = NULL
)
Arguments
- method
aggregation method. One of:
"Dominant Component"
,"Dominant Condition"
,"All"
or"None"
(default). Ifmethod="all"
multiple numbered columns represent site composition within each map unit e.g.site1...
,site2...
. Ifmethod="none"
is selected one row will be returned per component; in all other cases one row will be returned per map unit.- areasymbols
vector of soil survey area symbols
- mukeys
vector of map unit keys
- WHERE
character containing SQL WHERE clause specified in terms of fields in
legend
,mapunit
,component
orcoecosite
tables, used in lieu ofmukeys
orareasymbols
- query_string
Default:
FALSE
; ifTRUE
return a character string containing query that would be sent to SDA viaSDA_query
- ecoclasstypename
Default:
c("NRCS Rangeland Site", "NRCS Forestland Site")
. IfNULL
no constraint onecoclasstypename
is used in the query.- ecoclassref
Default:
"Ecological Site Description Database"
. IfNULL
no constraint onecoclassref
is used in the query.- not_rated_value
Default:
"Not assigned"
- miscellaneous_areas
logical. Include miscellaneous areas (non-soil components)?
- include_minors
logical. Include minor components? Default:
TRUE
.- threshold
integer. Default:
0
. Minimum combined component percentage (RV) for inclusion of a mapunit's ecological site in wide-format tabular summary. Used only formethod="all"
.- dsn
Path to local SQLite database or a DBIConnection object. If
NULL
(default) use Soil Data Access API viaSDA_query()
.
Details
When method="Dominant Condition"
an additional field
ecoclasspct_r
is returned in the result with the sum of comppct_r
that
have the dominant condition ecoclassid
. The component with the greatest
comppct_r
is returned for the component
and coecosite
level
information.
Note that if there are multiple coecoclasskey
per ecoclassid
there may
be more than one record per component.
Examples
# Basic usage with a vector of mukeys
get_SDA_coecoclass(mukeys = c(463994, 463995))
#> single result set, returning a data.frame
#> mukey areasymbol lkey muname
#> 1 463994 CA671 14129 WRIGHTWOOD-BULL TRAIL ASSOCIATION, SLOPING*
#> 2 463994 CA671 14129 WRIGHTWOOD-BULL TRAIL ASSOCIATION, SLOPING*
#> 3 463994 CA671 14129 WRIGHTWOOD-BULL TRAIL ASSOCIATION, SLOPING*
#> 4 463994 CA671 14129 WRIGHTWOOD-BULL TRAIL ASSOCIATION, SLOPING*
#> 5 463994 CA671 14129 WRIGHTWOOD-BULL TRAIL ASSOCIATION, SLOPING*
#> 6 463994 CA671 14129 WRIGHTWOOD-BULL TRAIL ASSOCIATION, SLOPING*
#> 7 463995 CA671 14129 YERMO GRAVELLY SANDY LOAM, 30 TO 50 PERCENT SLOPES
#> 8 463995 CA671 14129 YERMO GRAVELLY SANDY LOAM, 30 TO 50 PERCENT SLOPES
#> 9 463995 CA671 14129 YERMO GRAVELLY SANDY LOAM, 30 TO 50 PERCENT SLOPES
#> 10 463995 CA671 14129 YERMO GRAVELLY SANDY LOAM, 30 TO 50 PERCENT SLOPES
#> cokey coecoclasskey comppct_r majcompflag compname localphase
#> 1 25681277 11206916 60 Yes Wrightwood <NA>
#> 2 25681278 11206917 25 Yes Bull Trail <NA>
#> 3 25681279 NA 5 No Haploxeralfs <NA>
#> 4 25681280 NA 5 No Avawatz <NA>
#> 5 25681281 NA 3 No Hanford <NA>
#> 6 25681282 NA 2 No Tujunga <NA>
#> 7 25681283 11206918 85 Yes Yermo <NA>
#> 8 25681284 NA 5 No Trigger soils
#> 9 25681285 NA 5 No Joshua <NA>
#> 10 25681286 NA 5 No Rock outcrop <NA>
#> compkind ecoclassid ecoclassname ecoclasstypename
#> 1 Series R019XE018CA SANDY NRCS Rangeland Site
#> 2 Series R019XE003CA COARSE LOAMY NRCS Rangeland Site
#> 3 Taxon above family Not assigned Not assigned Not assigned
#> 4 Series Not assigned Not assigned Not assigned
#> 5 Series Not assigned Not assigned Not assigned
#> 6 Series Not assigned Not assigned Not assigned
#> 7 Series R030XF025CA GRAVELLY COARSE LOAMY NRCS Rangeland Site
#> 8 Series Not assigned Not assigned Not assigned
#> 9 Series Not assigned Not assigned Not assigned
#> 10 Miscellaneous area Not assigned Not assigned Not assigned
#> ecoclassref
#> 1 Ecological Site Description Database
#> 2 Ecological Site Description Database
#> 3 Not assigned
#> 4 Not assigned
#> 5 Not assigned
#> 6 Not assigned
#> 7 Ecological Site Description Database
#> 8 Not assigned
#> 9 Not assigned
#> 10 Not assigned
# Using a custom WHERE clause (all "range" sites in Hawaii)
get_SDA_coecoclass(WHERE = "ecoclassid LIKE 'R%' AND areasymbol LIKE 'HI%'")
#> single result set, returning a data.frame
#> mukey areasymbol lkey
#> 1 2371935 HI701 20281
#> 2 2372170 HI701 20281
#> 3 2372210 HI701 20281
#> 4 2372221 HI701 20281
#> 5 2372198 HI701 20281
#> 6 2372078 HI701 20281
#> 7 2372192 HI701 20281
#> 8 2372192 HI701 20281
#> 9 2371986 HI701 20281
#> 10 2372218 HI701 20281
#> 11 2372081 HI701 20281
#> 12 2372196 HI701 20281
#> 13 2372193 HI701 20281
#> 14 2372199 HI701 20281
#> 15 2372199 HI701 20281
#> 16 2372199 HI701 20281
#> 17 2372199 HI701 20281
#> 18 2371966 HI701 20281
#> 19 2371966 HI701 20281
#> 20 2372195 HI701 20281
#> 21 2372206 HI701 20281
#> 22 2372189 HI701 20281
#> 23 2371903 HI701 20281
#> 24 2372212 HI701 20281
#> 25 2372226 HI701 20281
#> 26 2372077 HI701 20281
#> 27 2372140 HI701 20281
#> 28 2372209 HI701 20281
#> 29 2372080 HI701 20281
#> 30 2372194 HI701 20281
#> 31 2372217 HI701 20281
#> 32 2372177 HI701 20281
#> 33 2372197 HI701 20281
#> 34 2372200 HI701 20281
#> 35 2372200 HI701 20281
#> 36 2372200 HI701 20281
#> 37 2371971 HI701 20281
#> 38 2372220 HI701 20281
#> 39 2372191 HI701 20281
#> 40 2372191 HI701 20281
#> 41 2371979 HI701 20281
#> 42 2371965 HI701 20281
#> 43 2371965 HI701 20281
#> 44 2371985 HI701 20281
#> 45 2372225 HI701 20281
#> 46 2372225 HI701 20281
#> 47 2372216 HI701 20281
#> 48 2372076 HI701 20281
#> 49 2371936 HI701 20281
#> 50 2372205 HI701 20281
#> 51 2372082 HI701 20281
#> 52 2372171 HI701 20281
#> 53 2372125 HI701 20281
#> 54 2372211 HI701 20281
#> 55 2371586 HI801 20280
#> 56 2371593 HI801 20280
#> 57 2371618 HI801 20280
#> 58 2371619 HI801 20280
#> 59 2371648 HI801 20280
#> 60 2371648 HI801 20280
#> 61 2371649 HI801 20280
#> 62 2371649 HI801 20280
#> 63 2371650 HI801 20280
#> 64 2371650 HI801 20280
#> 65 2371651 HI801 20280
#> 66 2371651 HI801 20280
#> 67 2371652 HI801 20280
#> 68 2371652 HI801 20280
#> 69 2371222 HI801 20280
#> 70 2371654 HI801 20280
#> 71 2371654 HI801 20280
#> 72 2371655 HI801 20280
#> 73 2371655 HI801 20280
#> 74 2371656 HI801 20280
#> 75 2371656 HI801 20280
#> 76 2371659 HI801 20280
#> 77 2371659 HI801 20280
#> 78 2371223 HI801 20280
#> 79 2371228 HI801 20280
#> 80 2371229 HI801 20280
#> 81 2371719 HI801 20280
#> 82 2371720 HI801 20280
#> 83 2401297 HI801 20280
#> 84 2371721 HI801 20280
#> 85 2371722 HI801 20280
#> 86 2371723 HI801 20280
#> 87 2371724 HI801 20280
#> 88 2371725 HI801 20280
#> 89 2371794 HI801 20280
#> 90 2371795 HI801 20280
#> 91 2371796 HI801 20280
#> 92 2371796 HI801 20280
#> 93 2371797 HI801 20280
#> 94 2371798 HI801 20280
#> 95 2371798 HI801 20280
#> 96 2371799 HI801 20280
#> 97 2371729 HI801 20280
#> 98 2371801 HI801 20280
#> 99 2371730 HI801 20280
#> 100 2371803 HI801 20280
#> 101 2371804 HI801 20280
#> 102 2371807 HI801 20280
#> 103 2371807 HI801 20280
#> 104 2371808 HI801 20280
#> 105 2371808 HI801 20280
#> 106 2371810 HI801 20280
#> 107 2371810 HI801 20280
#> 108 2371811 HI801 20280
#> 109 2371811 HI801 20280
#> 110 2371812 HI801 20280
#> 111 2371813 HI801 20280
#> 112 2371814 HI801 20280
#> 113 2371815 HI801 20280
#> 114 2371816 HI801 20280
#> 115 2371817 HI801 20280
#> 116 2371818 HI801 20280
#> 117 2371819 HI801 20280
#> 118 2371820 HI801 20280
#> 119 2371748 HI801 20280
#> 120 2371242 HI801 20280
#> 121 2371243 HI801 20280
#> 122 2371244 HI801 20280
#> 123 2371245 HI801 20280
#> 124 2371246 HI801 20280
#> 125 2371247 HI801 20280
#> 126 2371248 HI801 20280
#> 127 2371750 HI801 20280
#> 128 2371750 HI801 20280
#> 129 2371821 HI801 20280
#> 130 2371822 HI801 20280
#> 131 2371823 HI801 20280
#> 132 2371824 HI801 20280
#> 133 2371825 HI801 20280
#> 134 2371826 HI801 20280
#> 135 2371827 HI801 20280
#> 136 2371828 HI801 20280
#> 137 2371829 HI801 20280
#> 138 2371829 HI801 20280
#> 139 2401411 HI801 20280
#> 140 2401412 HI801 20280
#> 141 2401413 HI801 20280
#> 142 2401414 HI801 20280
#> 143 2401415 HI801 20280
#> 144 2401416 HI801 20280
#> 145 2401417 HI801 20280
#> 146 2452572 HI801 20280
#> 147 2452573 HI801 20280
#> 148 2452574 HI801 20280
#> 149 2371765 HI801 20280
#> 150 2371765 HI801 20280
#> 151 2371766 HI801 20280
#> 152 2371766 HI801 20280
#> 153 2452576 HI801 20280
#> 154 2371767 HI801 20280
#> 155 2371767 HI801 20280
#> 156 2371768 HI801 20280
#> 157 2371768 HI801 20280
#> 158 2452577 HI801 20280
#> 159 2371770 HI801 20280
#> 160 2371770 HI801 20280
#> 161 2401428 HI801 20280
#> 162 2371249 HI801 20280
#> 163 2371250 HI801 20280
#> 164 2371251 HI801 20280
#> 165 2371252 HI801 20280
#> 166 2371252 HI801 20280
#> 167 2371254 HI801 20280
#> 168 2371255 HI801 20280
#> 169 2371255 HI801 20280
#> 170 2371264 HI801 20280
#> 171 2371279 HI801 20280
#> 172 2371280 HI801 20280
#> 173 2371287 HI801 20280
#> 174 2371309 HI801 20280
#> 175 2371310 HI801 20280
#> 176 2371316 HI801 20280
#> 177 2371320 HI801 20280
#> 178 2371322 HI801 20280
#> 179 2371331 HI801 20280
#> 180 2371341 HI801 20280
#> 181 2371342 HI801 20280
#> 182 2371342 HI801 20280
#> 183 2371345 HI801 20280
#> 184 2371345 HI801 20280
#> 185 2371349 HI801 20280
#> 186 2371373 HI801 20280
#> 187 2371876 HI801 20280
#> 188 2371374 HI801 20280
#> 189 2371877 HI801 20280
#> 190 2371878 HI801 20280
#> 191 2495917 HI801 20280
#> 192 2495917 HI801 20280
#> 193 2495917 HI801 20280
#> 194 2384139 HI801 20280
#> 195 2375673 HI801 20280
#> 196 2371381 HI801 20280
#> 197 2371382 HI801 20280
#> 198 2371882 HI801 20280
#> 199 2371884 HI801 20280
#> 200 2371839 HI801 20280
#> 201 2371839 HI801 20280
#> 202 2371839 HI801 20280
#> 203 2371840 HI801 20280
#> 204 2371840 HI801 20280
#> 205 2495912 HI801 20280
#> 206 2375448 HI801 20280
#> 207 2371858 HI801 20280
#> 208 2371859 HI801 20280
#> 209 2371861 HI801 20280
#> 210 2371867 HI801 20280
#> 211 2371868 HI801 20280
#> 212 2371868 HI801 20280
#> 213 2421571 HI801 20280
#> 214 2421571 HI801 20280
#> 215 2424226 HI801 20280
#> 216 2424227 HI801 20280
#> 217 2424228 HI801 20280
#> 218 2431435 HI801 20280
#> 219 2431209 HI801 20280
#> 220 2431216 HI801 20280
#> 221 2452925 HI801 20280
#> 222 2437839 HI801 20280
#> 223 2452926 HI801 20280
#> 224 2452927 HI801 20280
#> 225 2452586 HI801 20280
#> 226 2478619 HI801 20280
#> 227 2512231 HI801 20280
#> 228 468163 HI950 14193
#> 229 468180 HI950 14193
#> 230 468203 HI950 14193
#> 231 468157 HI950 14193
#> 232 468160 HI950 14193
#> 233 468177 HI950 14193
#> 234 468200 HI950 14193
#> 235 468186 HI950 14193
#> 236 468209 HI950 14193
#> 237 468189 HI950 14193
#> 238 468149 HI950 14193
#> 239 468212 HI950 14193
#> 240 468146 HI950 14193
#> 241 468169 HI950 14193
#> 242 468178 HI950 14193
#> 243 468155 HI950 14193
#> 244 468155 HI950 14193
#> 245 468195 HI950 14193
#> 246 468172 HI950 14193
#> 247 468158 HI950 14193
#> 248 468152 HI950 14193
#> 249 468175 HI950 14193
#> 250 468198 HI950 14193
#> 251 468198 HI950 14193
#> 252 468201 HI950 14193
#> 253 468164 HI950 14193
#> 254 468141 HI950 14193
#> 255 468181 HI950 14193
#> 256 468204 HI950 14193
#> 257 468184 HI950 14193
#> 258 468207 HI950 14193
#> 259 468161 HI950 14193
#> 260 468170 HI950 14193
#> 261 468193 HI950 14193
#> 262 468187 HI950 14193
#> 263 468147 HI950 14193
#> 264 468210 HI950 14193
#> 265 468150 HI950 14193
#> 266 468173 HI950 14193
#> 267 468190 HI950 14193
#> 268 468213 HI950 14193
#> 269 468167 HI950 14193
#> 270 468156 HI950 14193
#> 271 468179 HI950 14193
#> 272 468139 HI950 14193
#> 273 468202 HI950 14193
#> 274 468196 HI950 14193
#> 275 468159 HI950 14193
#> 276 468176 HI950 14193
#> 277 468153 HI950 14193
#> 278 468142 HI950 14193
#> 279 468188 HI950 14193
#> 280 468165 HI950 14193
#> 281 468165 HI950 14193
#> 282 468182 HI950 14193
#> 283 468182 HI950 14193
#> 284 468205 HI950 14193
#> 285 468208 HI950 14193
#> 286 468185 HI950 14193
#> 287 468148 HI950 14193
#> 288 468194 HI950 14193
#> 289 468171 HI950 14193
#> 290 468211 HI950 14193
#> 291 468197 HI950 14193
#> 292 468197 HI950 14193
#> 293 468151 HI950 14193
#> 294 468154 HI950 14193
#> 295 467875 HI960 14194
#> 296 467921 HI960 14194
#> 297 467858 HI960 14194
#> 298 467818 HI960 14194
#> 299 467881 HI960 14194
#> 300 467835 HI960 14194
#> 301 467901 HI960 14194
#> 302 467895 HI960 14194
#> 303 467895 HI960 14194
#> 304 467846 HI960 14194
#> 305 467869 HI960 14194
#> 306 467912 HI960 14194
#> 307 467889 HI960 14194
#> 308 467812 HI960 14194
#> 309 467852 HI960 14194
#> 310 467892 HI960 14194
#> 311 467915 HI960 14194
#> 312 467809 HI960 14194
#> 313 467872 HI960 14194
#> 314 467849 HI960 14194
#> 315 467826 HI960 14194
#> 316 467840 HI960 14194
#> 317 467863 HI960 14194
#> 318 467909 HI960 14194
#> 319 467823 HI960 14194
#> 320 467903 HI960 14194
#> 321 467800 HI960 14194
#> 322 467860 HI960 14194
#> 323 467843 HI960 14194
#> 324 467906 HI960 14194
#> 325 467820 HI960 14194
#> 326 467880 HI960 14194
#> 327 467886 HI960 14194
#> 328 467814 HI960 14194
#> 329 467920 HI960 14194
#> 330 467831 HI960 14194
#> 331 467854 HI960 14194
#> 332 467837 HI960 14194
#> 333 467914 HI960 14194
#> 334 467811 HI960 14194
#> 335 467811 HI960 14194
#> 336 467874 HI960 14194
#> 337 467900 HI960 14194
#> 338 467817 HI960 14194
#> 339 467857 HI960 14194
#> 340 467894 HI960 14194
#> 341 467894 HI960 14194
#> 342 467871 HI960 14194
#> 343 467808 HI960 14194
#> 344 467911 HI960 14194
#> 345 467888 HI960 14194
#> 346 467845 HI960 14194
#> 347 467868 HI960 14194
#> 348 467891 HI960 14194
#> 349 467828 HI960 14194
#> 350 467851 HI960 14194
#> 351 467865 HI960 14194
#> 352 467885 HI960 14194
#> 353 467908 HI960 14194
#> 354 467825 HI960 14194
#> 355 467848 HI960 14194
#> 356 467919 HI960 14194
#> 357 467839 HI960 14194
#> 358 467862 HI960 14194
#> 359 467822 HI960 14194
#> 360 467905 HI960 14194
#> 361 467859 HI960 14194
#> 362 467842 HI960 14194
#> 363 467842 HI960 14194
#> 364 467819 HI960 14194
#> 365 467899 HI960 14194
#> 366 467882 HI960 14194
#> 367 467836 HI960 14194
#> 368 467879 HI960 14194
#> 369 467902 HI960 14194
#> 370 467870 HI960 14194
#> 371 467896 HI960 14194
#> 372 467813 HI960 14194
#> 373 467913 HI960 14194
#> 374 467876 HI960 14194
#> 375 467853 HI960 14194
#> 376 467807 HI960 14194
#> 377 467816 HI960 14194
#> 378 467850 HI960 14194
#> 379 467893 HI960 14194
#> 380 467810 HI960 14194
#> 381 467916 HI960 14194
#> 382 467873 HI960 14194
#> 383 467856 HI960 14194
#> 384 467833 HI960 14194
#> 385 467824 HI960 14194
#> 386 467887 HI960 14194
#> 387 467910 HI960 14194
#> 388 467847 HI960 14194
#> 389 467904 HI960 14194
#> 390 467867 HI960 14194
#> 391 467844 HI960 14194
#> 392 467890 HI960 14194
#> 393 467821 HI960 14194
#> 394 467884 HI960 14194
#> 395 467907 HI960 14194
#> 396 467827 HI960 14194
#> 397 467804 HI960 14194
#> 398 467841 HI960 14194
#> 399 467841 HI960 14194
#> 400 467815 HI960 14194
#> 401 467855 HI960 14194
#> 402 467878 HI960 14194
#> 403 467918 HI960 14194
#> 404 467864 HI960 14194
#> 405 467864 HI960 14194
#> 406 467861 HI960 14194
#> 407 467838 HI960 14194
#> 408 467948 HI970 14195
#> 409 467971 HI970 14195
#> 410 467954 HI970 14195
#> 411 467974 HI970 14195
#> 412 467951 HI970 14195
#> 413 467934 HI970 14195
#> 414 467940 HI970 14195
#> 415 467963 HI970 14195
#> 416 467977 HI970 14195
#> 417 467957 HI970 14195
#> 418 467969 HI970 14195
#> 419 467946 HI970 14195
#> 420 467943 HI970 14195
#> 421 467949 HI970 14195
#> 422 467966 HI970 14195
#> 423 467955 HI970 14195
#> 424 467932 HI970 14195
#> 425 467975 HI970 14195
#> 426 467952 HI970 14195
#> 427 467952 HI970 14195
#> 428 467935 HI970 14195
#> 429 467972 HI970 14195
#> 430 467964 HI970 14195
#> 431 467938 HI970 14195
#> 432 467944 HI970 14195
#> 433 467941 HI970 14195
#> 434 467958 HI970 14195
#> 435 467987 HI970 14195
#> 436 467947 HI970 14195
#> 437 467950 HI970 14195
#> 438 467973 HI970 14195
#> 439 467967 HI970 14195
#> 440 467956 HI970 14195
#> 441 467939 HI970 14195
#> 442 467976 HI970 14195
#> 443 467953 HI970 14195
#> 444 467936 HI970 14195
#> 445 467945 HI970 14195
#> 446 467962 HI970 14195
#> 447 467968 HI970 14195
#> 448 467942 HI970 14195
#> 449 467965 HI970 14195
#> 450 468336 HI980 14196
#> 451 468236 HI980 14196
#> 452 468313 HI980 14196
#> 453 468250 HI980 14196
#> 454 468253 HI980 14196
#> 455 468276 HI980 14196
#> 456 468233 HI980 14196
#> 457 468316 HI980 14196
#> 458 468310 HI980 14196
#> 459 468270 HI980 14196
#> 460 468293 HI980 14196
#> 461 468247 HI980 14196
#> 462 468287 HI980 14196
#> 463 468350 HI980 14196
#> 464 468264 HI980 14196
#> 465 468304 HI980 14196
#> 466 468327 HI980 14196
#> 467 468244 HI980 14196
#> 468 468353 HI980 14196
#> 469 468307 HI980 14196
#> 470 468307 HI980 14196
#> 471 468307 HI980 14196
#> 472 468284 HI980 14196
#> 473 468330 HI980 14196
#> 474 468267 HI980 14196
#> 475 468290 HI980 14196
#> 476 468347 HI980 14196
#> 477 468318 HI980 14196
#> 478 468238 HI980 14196
#> 479 468281 HI980 14196
#> 480 468258 HI980 14196
#> 481 468261 HI980 14196
#> 482 468338 HI980 14196
#> 483 468361 HI980 14196
#> 484 468295 HI980 14196
#> 485 468272 HI980 14196
#> 486 468255 HI980 14196
#> 487 468301 HI980 14196
#> 488 468278 HI980 14196
#> 489 468324 HI980 14196
#> 490 468324 HI980 14196
#> 491 468324 HI980 14196
#> 492 468352 HI980 14196
#> 493 468229 HI980 14196
#> 494 468312 HI980 14196
#> 495 468289 HI980 14196
#> 496 468358 HI980 14196
#> 497 468358 HI980 14196
#> 498 468358 HI980 14196
#> 499 468263 HI980 14196
#> 500 468232 HI980 14196
#> 501 468332 HI980 14196
#> 502 468246 HI980 14196
#> 503 468355 HI980 14196
#> 504 468249 HI980 14196
#> 505 468292 HI980 14196
#> 506 468269 HI980 14196
#> 507 468252 HI980 14196
#> 508 468275 HI980 14196
#> 509 468315 HI980 14196
#> 510 468266 HI980 14196
#> 511 468326 HI980 14196
#> 512 468349 HI980 14196
#> 513 468303 HI980 14196
#> 514 468243 HI980 14196
#> 515 468329 HI980 14196
#> 516 468329 HI980 14196
#> 517 468329 HI980 14196
#> 518 468283 HI980 14196
#> 519 468346 HI980 14196
#> 520 468306 HI980 14196
#> 521 468343 HI980 14196
#> 522 468260 HI980 14196
#> 523 468309 HI980 14196
#> 524 468309 HI980 14196
#> 525 468309 HI980 14196
#> 526 468323 HI980 14196
#> 527 468240 HI980 14196
#> 528 468286 HI980 14196
#> 529 468294 HI980 14196
#> 530 468231 HI980 14196
#> 531 468257 HI980 14196
#> 532 468280 HI980 14196
#> 533 468237 HI980 14196
#> 534 468320 HI980 14196
#> 535 468337 HI980 14196
#> 536 468360 HI980 14196
#> 537 468254 HI980 14196
#> 538 468254 HI980 14196
#> 539 468254 HI980 14196
#> 540 468277 HI980 14196
#> 541 468363 HI980 14196
#> 542 468340 HI980 14196
#> 543 468271 HI980 14196
#> 544 468311 HI980 14196
#> 545 468288 HI980 14196
#> 546 468245 HI980 14196
#> 547 468265 HI980 14196
#> 548 468357 HI980 14196
#> 549 468251 HI980 14196
#> 550 468228 HI980 14196
#> 551 468328 HI980 14196
#> 552 468351 HI980 14196
#> 553 468291 HI980 14196
#> 554 468268 HI980 14196
#> 555 468308 HI980 14196
#> 556 468331 HI980 14196
#> 557 468354 HI980 14196
#> 558 468248 HI980 14196
#> 559 468279 HI980 14196
#> 560 468279 HI980 14196
#> 561 468239 HI980 14196
#> 562 468325 HI980 14196
#> 563 468302 HI980 14196
#> 564 468259 HI980 14196
#> 565 468305 HI980 14196
#> 566 468282 HI980 14196
#> 567 468345 HI980 14196
#> 568 468262 HI980 14196
#> 569 468348 HI980 14196
#> 570 468285 HI980 14196
#> 571 468319 HI980 14196
#> 572 468256 HI980 14196
#> 573 468356 HI980 14196
#> 574 468333 HI980 14196
#> 575 468362 HI980 14196
#> 576 468359 HI980 14196
#> 577 468230 HI980 14196
#> 578 468432 HI990 14197
#> 579 468409 HI990 14197
#> 580 468469 HI990 14197
#> 581 468386 HI990 14197
#> 582 468492 HI990 14197
#> 583 468515 HI990 14197
#> 584 468495 HI990 14197
#> 585 468472 HI990 14197
#> 586 468489 HI990 14197
#> 587 468392 HI990 14197
#> 588 468429 HI990 14197
#> 589 468449 HI990 14197
#> 590 468512 HI990 14197
#> 591 468406 HI990 14197
#> 592 468415 HI990 14197
#> 593 468441 HI990 14197
#> 594 468518 HI990 14197
#> 595 468438 HI990 14197
#> 596 468501 HI990 14197
#> 597 468452 HI990 14197
#> 598 468412 HI990 14197
#> 599 468478 HI990 14197
#> 600 468378 HI990 14197
#> 601 468524 HI990 14197
#> 602 468455 HI990 14197
#> 603 468398 HI990 14197
#> 604 468435 HI990 14197
#> 605 468481 HI990 14197
#> 606 468418 HI990 14197
#> 607 468395 HI990 14197
#> 608 468504 HI990 14197
#> 609 468447 HI990 14197
#> 610 468470 HI990 14197
#> 611 468401 HI990 14197
#> 612 468484 HI990 14197
#> 613 468498 HI990 14197
#> 614 468521 HI990 14197
#> 615 468458 HI990 14197
#> 616 468407 HI990 14197
#> 617 468510 HI990 14197
#> 618 468464 HI990 14197
#> 619 468487 HI990 14197
#> 620 468384 HI990 14197
#> 621 468421 HI990 14197
#> 622 468527 HI990 14197
#> 623 468387 HI990 14197
#> 624 468507 HI990 14197
#> 625 468490 HI990 14197
#> 626 468427 HI990 14197
#> 627 468467 HI990 14197
#> 628 468381 HI990 14197
#> 629 468493 HI990 14197
#> 630 468516 HI990 14197
#> 631 468393 HI990 14197
#> 632 468404 HI990 14197
#> 633 468433 HI990 14197
#> 634 468410 HI990 14197
#> 635 468453 HI990 14197
#> 636 468430 HI990 14197
#> 637 468456 HI990 14197
#> 638 468456 HI990 14197
#> 639 468413 HI990 14197
#> 640 468450 HI990 14197
#> 641 468473 HI990 14197
#> 642 468519 HI990 14197
#> 643 468496 HI990 14197
#> 644 468476 HI990 14197
#> 645 468513 HI990 14197
#> 646 468436 HI990 14197
#> 647 468462 HI990 14197
#> 648 468439 HI990 14197
#> 649 468485 HI990 14197
#> 650 468422 HI990 14197
#> 651 468399 HI990 14197
#> 652 468402 HI990 14197
#> 653 468525 HI990 14197
#> 654 468479 HI990 14197
#> 655 468502 HI990 14197
#> 656 468416 HI990 14197
#> 657 468416 HI990 14197
#> 658 468505 HI990 14197
#> 659 468442 HI990 14197
#> 660 468465 HI990 14197
#> 661 468465 HI990 14197
#> 662 468385 HI990 14197
#> 663 468482 HI990 14197
#> 664 468459 HI990 14197
#> 665 468396 HI990 14197
#> 666 468419 HI990 14197
#> 667 468522 HI990 14197
#> 668 468522 HI990 14197
#> 669 468522 HI990 14197
#> 670 468522 HI990 14197
#> 671 468425 HI990 14197
#> 672 468511 HI990 14197
#> 673 468382 HI990 14197
#> 674 468428 HI990 14197
#> 675 468405 HI990 14197
#> 676 468488 HI990 14197
#> 677 468408 HI990 14197
#> 678 468471 HI990 14197
#> 679 468448 HI990 14197
#> 680 468431 HI990 14197
#> 681 468491 HI990 14197
#> 682 468491 HI990 14197
#> 683 468491 HI990 14197
#> 684 468514 HI990 14197
#> 685 468468 HI990 14197
#> 686 468528 HI990 14197
#> 687 468445 HI990 14197
#> 688 468388 HI990 14197
#> 689 468451 HI990 14197
#> 690 468451 HI990 14197
#> 691 468451 HI990 14197
#> 692 468417 HI990 14197
#> 693 468417 HI990 14197
#> 694 468394 HI990 14197
#> 695 468454 HI990 14197
#> 696 468477 HI990 14197
#> 697 468500 HI990 14197
#> 698 468517 HI990 14197
#> 699 468391 HI990 14197
#> 700 468480 HI990 14197
#> 701 468520 HI990 14197
#> 702 468397 HI990 14197
#> 703 468494 HI990 14197
#> 704 468506 HI990 14197
#> 705 468414 HI990 14197
#> 706 468457 HI990 14197
#> 707 468497 HI990 14197
#> 708 468434 HI990 14197
#> 709 468437 HI990 14197
#> 710 468411 HI990 14197
#> 711 468523 HI990 14197
#> 712 468423 HI990 14197
#> 713 468400 HI990 14197
#> 714 468486 HI990 14197
#> 715 468440 HI990 14197
#> 716 468526 HI990 14197
#> 717 468466 HI990 14197
#> 718 468443 HI990 14197
#> 719 468463 HI990 14197
#> 720 468383 HI990 14197
#> 721 468483 HI990 14197
#> 722 468426 HI990 14197
#> 723 468426 HI990 14197
#> 724 468403 HI990 14197
#> 725 468460 HI990 14197
#> muname
#> 1 Mawae-Lava flows complex, 2 to 10 percent slopes
#> 2 Ihuanu-Lava flows, pahoehoe complex, 10 to 20 percent slopes, MLRA 160
#> 3 Vitric Haplustands, 2 to 20 percent slopes
#> 4 Oneula-Keamoku-Maunaiu complex, 2 to 10 percent slopes
#> 5 Kilauea very gravelly ashy sand, 2 to 10 percent slopes
#> 6 Ihuanu very cobbly medial silt loam, 2 to 10 percent slopes, MLRA 160
#> 7 Alahapa-Heake complex, 2 to 10 percent slopes
#> 8 Alahapa-Heake complex, 2 to 10 percent slopes
#> 9 Ihuanu very cobbly medial silt loam, moist, 2 to 10 percent slopes
#> 10 Wahi extremely cobbly medial loam, 2 to 20 percent slopes
#> 11 Iwalani-Lava flows complex, 2 to 10 percent slopes
#> 12 Heake ashy loam, 2 to 10 percent slopes
#> 13 Alahapa extremely stony ashy sandy loam, 2 to 10 percent slopes
#> 14 Lava flows-Kaholimo-Puiwa complex, 2 to 15 percent slopes
#> 15 Lava flows-Kaholimo-Puiwa complex, 2 to 15 percent slopes
#> 16 Lava flows-Kaholimo-Puiwa complex, 2 to 15 percent slopes
#> 17 Lava flows-Kaholimo-Puiwa complex, 2 to 15 percent slopes
#> 18 Lava flows-Kekake complex, 2 to 20 percent slopes
#> 19 Lava flows-Kekake complex, 2 to 20 percent slopes
#> 20 Halemaumau extremely gravelly ashy coarse sand, 2 to 10 percent slopes
#> 21 Kanohina-Lava flows complex, 2 to 10 percent slopes
#> 22 Lava flows-Lithic Ustipsamments complex, 2 to 10 percent slopes
#> 23 Lava flows association, 40 to 99 percent slopes
#> 24 Pakini medial very fine sandy loam, 2 to 10 percent slopes, MLRA 157
#> 25 Kaholimo-Ki complex, 10 to 20 percent slopes
#> 26 Ihuanu very cobbly medial silt loam, 10 to 20 percent slopes, MLRA 160
#> 27 Kahaluu-Lava flows complex, 2 to 10 percent slopes
#> 28 Nakanui-Lava flows complex, 2 to 10 percent slopes
#> 29 Lava flows-Iwalani complex, 10 to 20 percent slopes
#> 30 Alahapa-Lava flows complex, 2 to 10 percent slopes
#> 31 Lava flows-Menehune complex, 2 to 20 percent slopes
#> 32 Kaholimo-Ki complex, 3 to 10 percent slopes
#> 33 Heake-Lava flows complex, 2 to 10 percent slopes
#> 34 Lava flows-Kaholimo complex, 2 to 15 percent slopes
#> 35 Lava flows-Kaholimo complex, 2 to 15 percent slopes
#> 36 Lava flows-Kaholimo complex, 2 to 15 percent slopes
#> 37 Iwalani-Lava flows complex, moist, 2 to 10 percent slopes
#> 38 Oneula extremely stony medial loam, low elevation, 2 to 10 percent slopes
#> 39 Lithic Haplustands-Lava flows complex, 2 to 10 percent slopes
#> 40 Lithic Haplustands-Lava flows complex, 2 to 10 percent slopes
#> 41 Iwalani-Lava flows complex, moist, 10 to 20 percent slopes
#> 42 Lava flows-Kekake complex, 10 to 20 percent slopes
#> 43 Lava flows-Kekake complex, 10 to 20 percent slopes
#> 44 Ihuanu very cobbly medial silt loam, moist, 10 to 20 percent slopes
#> 45 Ahiu-Vitric Haplustands complex, 2 to 10 percent slopes
#> 46 Ahiu-Vitric Haplustands complex, 2 to 10 percent slopes
#> 47 Oneula extremely stony medial loam, 2 to 10 percent slopes
#> 48 Ihuanu-Lava flows, `a`a complex, 10 to 20 percent slopes, MLRA 160
#> 49 Mawae-Lava flows complex, 10 to 20 percent slopes
#> 50 Kahalii-Lava flows complex, 2 to 10 percent slopes
#> 51 Iwalani-Lava flows complex, 10 to 20 percent slopes
#> 52 Durustands medial loam, 2 to 10 percent slopes
#> 53 Lalaau very cobbly highly decomposed plant material, 2 to 10 percent slopes
#> 54 Ahiu-Lava flows complex, 2 to 10 percent slopes
#> 55 Badland, 10 to 50 percent slopes
#> 56 Lava flows-Honokohau complex, 2 to 20 percent slopes
#> 57 Mawae-Lava flows complex, 2 to 10 percent slopes
#> 58 Mawae-Lava flows complex, 10 to 20 percent slopes
#> 59 Lava flows-Kekake complex, 10 to 20 percent slopes
#> 60 Lava flows-Kekake complex, 10 to 20 percent slopes
#> 61 Lava flows-Kekake complex, 2 to 20 percent slopes
#> 62 Lava flows-Kekake complex, 2 to 20 percent slopes
#> 63 Puuiki-Lava flows complex, 2 to 10 percent slopes
#> 64 Puuiki-Lava flows complex, 2 to 10 percent slopes
#> 65 Puuiki-Lava flows complex, 10 to 20 percent slopes
#> 66 Puuiki-Lava flows complex, 10 to 20 percent slopes
#> 67 Lava flows-Puuiki complex, 2 to 20 percent slopes
#> 68 Lava flows-Puuiki complex, 2 to 20 percent slopes
#> 69 Iwalani-Lava flows complex, moist, 2 to 10 percent slopes
#> 70 Puuiki-Kamawai complex, 2 to 10 percent slopes
#> 71 Puuiki-Kamawai complex, 2 to 10 percent slopes
#> 72 Kamawai-Puuiki complex, 2 to 10 percent slopes
#> 73 Kamawai-Puuiki complex, 2 to 10 percent slopes
#> 74 Kamawai-Puuiki complex, 10 to 20 percent slopes
#> 75 Kamawai-Puuiki complex, 10 to 20 percent slopes
#> 76 Lava flows-Kamawai complex, 2 to 20 percent slopes
#> 77 Lava flows-Kamawai complex, 2 to 20 percent slopes
#> 78 Iwalani-Lava flows complex, moist, 10 to 20 percent slopes
#> 79 Lava flows-Kanohina complex, 2 to 20 percent slopes
#> 80 Kanohina ashy very fine sandy loam, 2 to 10 percent slopes
#> 81 Auwaiakeakua extremely cobbly silt loam, 2 to 10 percent slopes
#> 82 Auwaiakeakua extremely cobbly silt loam, 10 to 20 percent slopes
#> 83 Lava flows-Auwaiakeakua complex, 2 to 20 percent slopes
#> 84 Lava flows-Kiholo complex, 2 to 20 percent slopes
#> 85 Kiholo-Lava flows complex, 2 to 10 percent slopes
#> 86 Kahaumanu-Lava flows complex, 2 to 10 percent slopes
#> 87 Kahaumanu-Lava flows complex, 10 to 20 percent slopes
#> 88 Lava flows-Kahaumanu complex, 2 to 20 percent slopes
#> 89 Puu Pa very cobbly medial very fine sandy loam, 6 to 12 percent slopes
#> 90 Puu Pa very cobbly medial very fine sandy loam, 12 to 20 percent slopes
#> 91 Waikaloa-Puu Pa complex, 10 to 20 percent slopes
#> 92 Waikaloa-Puu Pa complex, 10 to 20 percent slopes
#> 93 Puako fine sandy loam, 0 to 6 percent slopes
#> 94 Waikaloa-Puu Pa complex, 2 to 10 percent slopes
#> 95 Waikaloa-Puu Pa complex, 2 to 10 percent slopes
#> 96 Waikaloa medial very fine sandy loam, 2 to 10 percent slopes
#> 97 Waikaloa medial very fine sandy loam, 10 to 20 percent slopes
#> 98 Waikaloa medial very fine sandy loam, 20 to 50 percent slopes
#> 99 Nanuku extremely cobbly silt loam, 2 to 10 percent slopes
#> 100 Nanuku extremely cobbly silt loam, 10 to 20 percent slopes
#> 101 Lava flows-Nanuku complex, 2 to 20 percent slopes
#> 102 Waikui-Hapuna complex, 2 to 10 percent slopes
#> 103 Waikui-Hapuna complex, 2 to 10 percent slopes
#> 104 Waikui-Hapuna complex, 10 to 20 percent slopes
#> 105 Waikui-Hapuna complex, 10 to 20 percent slopes
#> 106 Hapuna-Waikui-Lalamilo complex, 0 to 20 percent slopes
#> 107 Hapuna-Waikui-Lalamilo complex, 0 to 20 percent slopes
#> 108 Rock outcrop-Waikui-Hapuna complex, 2 to 70 percent slopes
#> 109 Rock outcrop-Waikui-Hapuna complex, 2 to 70 percent slopes
#> 110 Kawaihae very cobbly very fine sandy loam, 6 to 12 percent slopes
#> 111 Kawaihae very cobbly very fine sandy loam, 12 to 20 percent slopes
#> 112 Kawaihae very cobbly silt loam, 6 to 20 percent slopes
#> 113 Rock outcrop-Kamakoa complex, 6 to 20 percent slopes
#> 114 Kamakoa very fine sandy loam, 2 to 10 percent slopes
#> 115 Waimea medial very fine sandy loam, 6 to 12 percent slopes
#> 116 Waimea medial very fine sandy loam, 12 to 20 percent slopes
#> 117 Waimea medial very fine sandy loam, 0 to 6 percent slopes
#> 118 Waimea medial very fine sandy loam, 20 to 50 percent slopes
#> 119 Ihuanu-Lava flows, `a`a complex, 10 to 20 percent slopes, MLRA 160
#> 120 Ihuanu very cobbly medial silt loam, 10 to 20 percent slopes, MLRA 160
#> 121 Ihuanu very cobbly medial silt loam, 2 to 10 percent slopes, MLRA 160
#> 122 Iwalani medial loam, 10 to 20 percent slopes
#> 123 Lava flows-Iwalani complex, 10 to 20 percent slopes
#> 124 Iwalani-Lava flows complex, 2 to 10 percent slopes
#> 125 Iwalani-Lava flows complex, 10 to 20 percent slopes
#> 126 Iwalani medial loam, 3 to 10 percent slopes
#> 127 Nawahine gravelly medial silt loam, 20 to 50 percent slopes
#> 128 Nawahine gravelly medial silt loam, 20 to 50 percent slopes
#> 129 Mahukona silty clay loam, 3 to 12 percent slopes
#> 130 Mahukona very stony silty clay loam, 6 to 12 percent slopes
#> 131 Hawi very stony silty clay, 6 to 12 percent slopes
#> 132 Hawi silty clay, 0 to 3 percent slopes
#> 133 Hawi silty clay, 3 to 12 percent slopes
#> 134 Kohala silty clay, 3 to 12 percent slopes
#> 135 Waimea medial silt loam, 6 to 12 percent slopes
#> 136 Waimea medial silt loam, 12 to 20 percent slopes
#> 137 Waimea medial silt loam, 20 to 50 percent slopes
#> 138 Waimea medial silt loam, 20 to 50 percent slopes
#> 139 Kohala silty clay, 0 to 3 percent slopes
#> 140 Kohala silty clay, 12 to 20 percent slopes
#> 141 Kohala silty clay, 20 to 35 percent slopes
#> 142 Kohala silty clay, 35 to 70 percent slopes
#> 143 Ainakea medial silty clay loam, 3 to 12 percent slopes
#> 144 Ainakea medial silty clay loam, 12 to 20 percent slopes
#> 145 Ainakea medial silty clay loam, 20 to 35 percent slopes
#> 146 Kemole stony medial silt loam, 12 to 20 percent slopes
#> 147 Kemole stony medial silt loam, 6 to 12 percent slopes
#> 148 Paauhau medial silty clay loam, 0 to 10 percent slopes
#> 149 Nenenui-Lava flows complex, 2 to 10 percent slopes
#> 150 Nenenui-Lava flows complex, 2 to 10 percent slopes
#> 151 Nenenui-Lava flows complex, 10 to 20 percent slopes
#> 152 Nenenui-Lava flows complex, 10 to 20 percent slopes
#> 153 Paauhau medial silty clay loam, 20 to 35 percent slopes
#> 154 Ohianui extremely gravelly ashy loamy sand, 2 to 10 percent slopes
#> 155 Ohianui extremely gravelly ashy loamy sand, 2 to 10 percent slopes
#> 156 Ohianui extremely gravelly ashy loamy sand, 10 to 20 percent slopes
#> 157 Ohianui extremely gravelly ashy loamy sand, 10 to 20 percent slopes
#> 158 Paauhau- Rock outcrop complex, 35 to 70 percent slopes
#> 159 Huikau ashy loamy sand, 10 to 20 percent slopes
#> 160 Huikau ashy loamy sand, 10 to 20 percent slopes
#> 161 Kikoni medial silt loam, 0 to 3 percent slopes
#> 162 Kaalualu cobbly medial loamy sand, 2 to 10 percent slopes
#> 163 Kaalualu cobbly medial loamy sand, 10 to 20 percent slopes
#> 164 Kaalualu extremely cobbly medial loamy sand, 2 to 10 percent slopes
#> 165 Kaalualu-Pakini complex, 2 to 10 percent slopes
#> 166 Kaalualu-Pakini complex, 2 to 10 percent slopes
#> 167 Pakini medial very fine sandy loam, 10 to 20 percent slopes
#> 168 Pakini-Kaalualu complex, 50 to 70 percent slopes
#> 169 Pakini-Kaalualu complex, 50 to 70 percent slopes
#> 170 Lalaau very cobbly highly decomposed plant material, 2 to 10 percent slopes
#> 171 Kahaluu-Lava flows complex, 2 to 10 percent slopes
#> 172 Lithic Haplotorrands-Lava flows complex, 2 to 10 percent slopes
#> 173 Puiwa medial loam, 2 to 20 percent slopes
#> 174 Ihuanu-Lava flows, pahoehoe complex, 10 to 20 percent slopes, MLRA 160
#> 175 Humic Durustands, 2 to 10 percent slopes
#> 176 Kaholimo-Lava flows complex, 3 to 10 percent slopes
#> 177 Kaholimo-Ki complex, 3 to 10 percent slopes
#> 178 Kaholimo-Ki complex, 10 to 20 percent slopes
#> 179 Kahaluu highly decomposed plant material, 3 to 10 percent slopes
#> 180 Lalaau-Lava flows complex, 2 to 20 percent slopes
#> 181 Kahaluu-lava flows-Ainahou complex, 2 to 10 percent slopes
#> 182 Kahaluu-lava flows-Ainahou complex, 2 to 10 percent slopes
#> 183 Nanaia-Ohaikea complex, 2 to 10 percent slopes
#> 184 Nanaia-Ohaikea complex, 2 to 10 percent slopes
#> 185 Nanaia-Lava flows complex, 20 to 40 percent slopes
#> 186 Lava flows-Lithic Ustipsamments complex, 2 to 10 percent slopes
#> 187 Alahapa extremely stony ashy sandy loam, 2 to 10 percent slopes
#> 188 Alahapa-Lava flows complex, 2 to 10 percent slopes
#> 189 Heake ashy loam, 2 to 10 percent slopes
#> 190 Heake-Lava flows complex, 2 to 10 percent slopes
#> 191 Lava flows-Kaholimo complex, 2 to 15 percent slopes
#> 192 Lava flows-Kaholimo complex, 2 to 15 percent slopes
#> 193 Lava flows-Kaholimo complex, 2 to 15 percent slopes
#> 194 Kanohina-Lava flows complex, 2 to 10 percent slopes
#> 195 Pakini medial very fine sandy loam, 2 to 10 percent slopes, MLRA 157
#> 196 Oneula extremely stony loam, 2 to 10 percent slopes
#> 197 Lava flows-Menehune complex, 2 to 20 percent slopes
#> 198 Wahi extremely cobbly medial loam, 2 to 20 percent slopes
#> 199 Oneula-Keamoku-Maunaiu complex, 2 to 10 percent slopes
#> 200 Puu Pa-Waikaloa complex, 2 to 10 percent slopes
#> 201 Puu Pa-Waikaloa complex, 2 to 10 percent slopes
#> 202 Puu Pa-Waikaloa complex, 2 to 10 percent slopes
#> 203 Puu Pa complex, 2 to 20 percent slopes
#> 204 Puu Pa complex, 2 to 20 percent slopes
#> 205 Pohakulehu cobbly ashy loamy fine sand, 20 to 40 percent slopes
#> 206 Puako, dry substratum, 3 to 6 percent slopes
#> 207 Pohakulehu cobbly ashy loamy fine sand, 6 to 12 percent slopes
#> 208 Pohakulehu cobbly ashy loamy fine sand, 12 to 20 percent slopes
#> 209 Lanapohaku-Lava flows complex, 6 to 40 percent slopes
#> 210 Pohakulehu very stony highly organic medial sandy loam, cool, 20 to 40 percent slopes
#> 211 Lava flows-Lapa-Pohakulehu complex, cool, 30 to 50 percent slopes
#> 212 Lava flows-Lapa-Pohakulehu complex, cool, 30 to 50 percent slopes
#> 213 Lanapohaku-Pohakulehu-Lava flows complex, 6 to 20 percent slopes
#> 214 Lanapohaku-Pohakulehu-Lava flows complex, 6 to 20 percent slopes
#> 215 Hilo hydrous silty clay loam, 0 to 10 percent slopes
#> 216 Hilo hydrous silty clay loam, 20 to 35 percent slopes
#> 217 Hilo hydrous silty clay loam, 10 to 20 percent slopes
#> 218 Akaka-Onomea complex, 0 to 10 percent slopes
#> 219 Akaka-Kaiwiki complex, 0 to 10 percent slopes
#> 220 Hilo-Rock outcrop complex, 35 to 100 percent slopes
#> 221 Ookala medial silty clay loam, 0 to 10 percent slopes
#> 222 Ookala medial silty clay loam, 10 to 20 percent slopes
#> 223 Ookala medial silty clay loam, 20 to 35 percent slopes
#> 224 Ookala-Rock outcrop complex, 35 to 100 percent slopes
#> 225 Paauhau medial silty clay loam, 10 to 20 percent slopes
#> 226 Olaa cobbly hydrous loam, older substrate, 2 to 20 percent slopes
#> 227 Waiakea-Onomea complex, 0 to 20 percent slopes
#> 228 Kalaupapa-Lava flows complex, 3 to 25 percent slopes, MLRA 158
#> 229 Lahaina silty clay, 15 to 25 percent slopes, severely eroded, MLRA 158
#> 230 Pulehu sandy loam, 2 to 6 percent slopes, MLRA 166
#> 231 Hoolehua silty clay, 3 to 7 percent slopes
#> 232 Jaucas-Dune land complex, 0 to 15 percent slopes, MLRA 158
#> 233 Lahaina silty clay, 3 to 7 percent slopes, MLRA 158
#> 234 Pamoa silty clay, 5 to 20 percent slopes, MLRA 158
#> 235 Molokai silty clay loam, 0 to 3 percent slopes, MLRA 158
#> 236 Waihuna clay, 15 to 25 percent slopes, MLRA 158
#> 237 Molokai silty clay loam, 7 to 15 percent slopes, MLRA 158
#> 238 Haleiwa very stony silty clay loam, 0 to 15 percent slopes, MLRA 164
#> 239 Waikapu silty clay loam, 3 to 7 percent slopes, severely eroded
#> 240 Halawa silty clay, 3 to 25 percent slopes, MLRA 165
#> 241 Kalae silty clay, 5 to 15 percent slopes, severely eroded, MLRA 165
#> 242 Lahaina silty clay, 7 to 15 percent slopes, MLRA 158
#> 243 Hoolehua silty clay loam, 3 to 10 percent slopes, severely eroded, MLRA 158
#> 244 Hoolehua silty clay loam, 3 to 10 percent slopes, severely eroded, MLRA 158
#> 245 Niulii medial silty clay loam, medium textured subsoil, 7 to 30 percent slopes, MLRA 164
#> 246 Kawaihapai clay loam, moist, 0 to 2 percent slopes, MLRA 164
#> 247 Hoolehua silty clay, 7 to 15 percent slopes
#> 248 Holomua silt loam, 3 to 7 percent slopes, severely eroded
#> 249 Kawaihapai silty clay loam, 2 to 7 percent slopes
#> 250 Oli medial silt loam, 30 to 70 percent slopes, MLRA 165
#> 251 Oli medial silt loam, 30 to 70 percent slopes, MLRA 165
#> 252 Pamoa silty clay, 5 to 20 percent slopes, eroded, MLRA 158
#> 253 Kapuhikani-Rock outcrop, 3 to 15 percent slopes, MLRA 163
#> 254 Alaeloa stony silty clay, overwash, 15 to 35 percent slopes
#> 255 Lahaina silty clay, 25 to 40 percent slopes, severely eroded, MLRA 158
#> 256 Pulehu stony sandy loam, 0 to 7 percent slopes, MLRA 166
#> 257 Mala silty clay, 0 to 3 percent slopes, MLRA 166
#> 258 Waihuna clay, 3 to 7 percent slopes, MLRA 158
#> 259 Jaucas sand, 0 to 15 percent slopes, MLRA 163
#> 260 Kalae silty clay, 15 to 25 percent slopes, severely eroded, MLRA 165
#> 261 Naiwa silty clay loam, 7 to 15 percent slopes, severely eroded
#> 262 Molokai silty clay loam, 3 to 7 percent slopes, MLRA 158
#> 263 Halawa silty clay, 3 to 25 percent slopes, severely eroded
#> 264 Waikapu silty clay loam, 0 to 3 percent slopes, MLRA 158
#> 265 Holomua silt loam, 0 to 3 percent slopes
#> 266 Kawaihapai stony clay loam, moist, 2 to 6 percent slopes, MLRA 164
#> 267 Molokai silty clay loam, 7 to 15 percent slopes, severely eroded, MLRA 158
#> 268 Waikapu silty clay loam, 7 to 15 percent slopes, severely eroded, MLRA 158
#> 269 Kalae silty clay, 2 to 7 percent slopes, MLRA 165
#> 270 Hoolehua silty clay, 0 to 3 percent slopes
#> 271 Lahaina silty clay, 7 to 15 percent slopes, severely eroded, MLRA 158
#> 272 Alaeloa silty clay, 5 to 25 percent slopes, severely eroded, MLRA 164
#> 273 Pamoa stony silty clay, 5 to 20 percent slopes, eroded, MLRA 158
#> 274 Olelo silty clay, 3 to 15 percent slopes, MLRA 164
#> 275 Hoolehua silty clay, 15 to 35 percent slopes, MLRA 164
#> 276 Lahaina silty clay, 0 to 3 percent slopes, MLRA 158
#> 277 Holomua silt loam, 7 to 15 percent slopes
#> 278 Alaeloa silty clay, 15 to 35 percent slopes, MLRA 164
#> 279 Molokai silty clay loam, 3 to 7 percent slopes, severely eroded
#> 280 Kealia silt loam, 0 to 1 percent slopes, MLRA 163
#> 281 Kealia silt loam, 0 to 1 percent slopes, MLRA 163
#> 282 Lualualei clay, 0 to 2 percent slopes, MLRA 163
#> 283 Lualualei clay, 0 to 2 percent slopes, MLRA 163
#> 284 Pulehu clay loam, 0 to 3 percent slopes , MLRA 163
#> 285 Waihuna clay, 7 to 15 percent slopes, MLRA 158
#> 286 Mala silty clay, 3 to 7 percent slopes, MLRA 166
#> 287 Haleiwa silty clay loam, 0 to 10 percent slopes, MLRA 164
#> 288 Niulii silty clay loam, 7 to 30 percent slopes
#> 289 Kalae silty clay, 25 to 40 percent slopes, severely eroded
#> 290 Waikapu silty clay loam, 3 to 7 percent slopes
#> 291 Oli medial silt loam, 10 to 30 percent slopes, MLRA 165
#> 292 Oli medial silt loam, 10 to 30 percent slopes, MLRA 165
#> 293 Holomua silt loam, 3 to 7 percent slopes
#> 294 Holomua silt loam, 7 to 15 percent slopes, severely eroded
#> 295 Makapili silty clay, 25 to 40 percent slopes
#> 296 Waikomo - Rock outcrop complex, 2 to 6 percent slopes, MLRA 158
#> 297 Lihue silty clay, 0 to 8 percent slopes
#> 298 Hanamaulu silty clay, 25 to 40 percent slopes
#> 299 Makaweli stony silty clay loam, 6 to 12 percent slopes
#> 300 Kaena clay, brown variant, 1 to 6 percent slopes
#> 301 Pakala clay loam, 2 to 10 percent slopes
#> 302 Oli medial silt loam, 30 to 70 percent slopes, MLRA 165
#> 303 Oli medial silt loam, 30 to 70 percent slopes, MLRA 165
#> 304 Kapaa silty clay, 25 to 40 percent slopes
#> 305 Mahana silt loam, 12 to 20 percent slopes, severely eroded
#> 306 Puhi silty clay loam, 15 to 25 percent slopes
#> 307 Niu silty clay loam, 6 to 20 percent slopes, eroded, MLRA 158
#> 308 Hanalei silty clay, 0 to 2 percent slopes, MLRA 167
#> 309 Koloa stony silty clay, 15 to 25 percent slopes
#> 310 Nonopahu clay, 2 to 10 percent slopes
#> 311 Puu Opae silty clay loam, 15 to 25 percent slopes
#> 312 Halii gravelly silty clay, 15 to 25 percent slopes, eroded
#> 313 Makapili silty clay, 0 to 8 percent slopes
#> 314 Kekaha clay, 0 to 2 percent slopes
#> 315 Jaucas loamy fine sand, dark variant, 0 to 8 percent slopes
#> 316 Kalihi clay, 0 to 2 percent slopes
#> 317 Lihue gravelly silty clay, 8 to 15 percent slopes
#> 318 Puhi silty clay loam, 0 to 3 percent slopes
#> 319 Ioleau silty clay loam, 12 to 20 percent slopes, eroded
#> 320 Pooku silty clay loam, 3 to 8 percent slopes
#> 321 Badland-Mahana complex
#> 322 Lihue silty clay, 15 to 25 percent slopes
#> 323 Kapaa silty clay, 3 to 8 percent slopes
#> 324 Pooku silty clay, 8 to 15 percent slopes
#> 325 Hanamaulu bouldery silty clay, 10 to 35 percent slopes
#> 326 Makaweli stony silty clay loam, 0 to 6 percent slopes
#> 327 Mokuleia clay loam, poorly drained variant
#> 328 Hanalei silty clay, deep water table, 0 to 6 percent slopes
#> 329 Waikomo very rocky silty clay
#> 330 Kolokolo extremely stony clay loam, 0 to 2 percent slopes
#> 331 Lualualei extremely cobbly clay, moist, 3 to 35 percent slopes, MLRA 164
#> 332 Kalapa silty clay, 8 to 20 percent slopes
#> 333 Puu Opae silty clay loam, 8 to 15 percent slopes
#> 334 Hanalei silty clay loam, 0 to 2 percent slopes
#> 335 Hanalei silty clay loam, 0 to 2 percent slopes
#> 336 Makapili silty clay, 15 to 25 percent slopes
#> 337 Pakala clay loam, 0 to 2 percent slopes
#> 338 Hanamaulu silty clay, 15 to 25 percent slopes
#> 339 Lawai silty clay, 15 to 25 percent slopes
#> 340 Oli medial silt loam, 10 to 30 percent slopes, MLRA 165
#> 341 Oli medial silt loam, 10 to 30 percent slopes, MLRA 165
#> 342 Mahana silt loam, 20-35 percent slopes, severely eroded
#> 343 Halii gravelly silty clay, 8 to 15 percent slopes
#> 344 Puhi silty clay loam, 8 to 15 percent slopes
#> 345 Niu silty clay loam, 12 to 20 percent slopes, MLRA 158
#> 346 Kapaa silty clay, 15 to 25 percent slopes
#> 347 Mahana silt loam, 12 to 20 percent slopes
#> 348 Nohili clay
#> 349 Kekaha extremely stony silty clay loam, 0 to 35 percent slopes, MLRA 158
#> 350 Koloa stony silty clay, 8 to 15 percent, MLRA 158
#> 351 Lualualei clay, 2 to 6 percent slopes, MLRA 163
#> 352 Mokuleia fine sandy loam
#> 353 Pooku silty clay, 25 to 40 percent slopes
#> 354 Jaucas loamy fine sand, 0 to 8 percent slopes
#> 355 Kekaha silty clay, 2 to 6 percent slopes
#> 356 Waikomo stony silty clay
#> 357 Kalapa silty clay, 40 to 70 percent slopes
#> 358 Lihue gravelly silty clay, 0 to 8 percent slopes
#> 359 Ioleau silty clay loam, 6 to 12 percent slopes
#> 360 Pooku silty clay, 0 to 8 percent slopes
#> 361 Lihue silty clay, 8 to 15 percent slopes
#> 362 Kaloko clay, 0 to 2 percent slopes, MLRA 163
#> 363 Kaloko clay, 0 to 2 percent slopes, MLRA 163
#> 364 Hanamaulu stony silty clay, 10 to 35 percent slopes
#> 365 Pakala extremely stony sandy clay loam, 0 to 12 percent slopes, MLRA 158
#> 366 Makaweli stony silty clay loam, 12 to 20 percent slopes
#> 367 Kaena clay, brown variant, 6 to 12 percent slopes
#> 368 Makaweli silty clay loam, 20 to 35 percent slopes, eroded
#> 369 Pohakupu silty clay loam, 0 to 8 percent slopes, MLRA 158
#> 370 Mahana silt loam, 20 to 35 percent slopes
#> 371 Oli medial loam, 10 to 40 percent slopes, MLRA 158
#> 372 Hanalei peaty silty clay loam, 0 to 2 percent slopes
#> 373 Puhi silty clay loam, 25 to 40 percent slopes
#> 374 Makaweli silty clay loam, 0 to 6 percent slopes, MLRA 158
#> 375 Kolokolo clay loam, 0 to 2 percent slopes
#> 376 Halii gravelly silty clay, 3 to 8 percent slopes
#> 377 Hanamaulu silty clay, 8 to 15 percent slopes
#> 378 Koloa stony silty clay, 3 to 8 percent slopes, MLRA 158
#> 379 Nonopahu stony clay, 2 to 12 percent slopes
#> 380 Halii gravelly silty clay, 25 to 40 percent slopes, eroded
#> 381 Puu Opae silty clay loam, 25 to 40 percent slopes
#> 382 Makapili silty clay, 8 to 15 percent slopes
#> 383 Lawai silty clay, 8 to 15 percent slopes
#> 384 Koolau silty clay, 8 to 30 percent slopes
#> 385 Ioleau silty clay loam, 20 to 30 percent slopes, eroded
#> 386 Niu silty clay loam, 6 to 12 percent slopes, MLRA 158
#> 387 Puhi silty clay loam, 3 to 8 percent slopes
#> 388 Kekaha silty clay, 0 to 2 percent slopes
#> 389 Pooku silty clay loam, 8 to 25 percent slopes
#> 390 Mahana silt loam, 6 to 12 percent slopes
#> 391 Kapaa silty clay, 8 to 15 percent slopes
#> 392 Niu silty clay loam 20 to 35 percent slopes, eroded, MLRA 158
#> 393 Ioleau silty clay loam, 2 to 6 percent slopes
#> 394 Mamala cobbly silty clay loam, 0 to 12 percent slopes, MLRA 163
#> 395 Pooku silty clay, 15 to 25 percent slopes
#> 396 Kalapa - Rock outcrop complex, 40 to 70 percent slopes, MLRA 164
#> 397 Hihimanu silty clay loam, 40 to 70 percent slopes
#> 398 Kaloko clay loam
#> 399 Kaloko clay loam
#> 400 Hanamaulu silty clay, 3 to 8 percent slopes
#> 401 Lawai silty clay, 0 to 8 percent slopes
#> 402 Makaweli silty clay loam, 12 to 20 percent slopes, MLRA 158
#> 403 Waiawa-Rock outcrop complex, 30 to 80 percent slopes, MLRA 158
#> 404 Lualualei clay, 0 to 2 percent slopes, MLRA 163
#> 405 Lualualei clay, 0 to 2 percent slopes, MLRA 163
#> 406 Lihue silty clay, 25 to 40 percent slopes, eroded
#> 407 Kalapa silty clay, 20 to 40 percent slopes
#> 408 Lahaina silty clay, 7 to 15 percent slopes, MLRA 158
#> 409 Waihuna clay, 0 to 3 percent slopes, MLRA 158
#> 410 Mala silty clay, 3 to 7 percent slopes, MLRA 163
#> 411 Waihuna clay, 15 to 25 percent slopes, MLRA 158
#> 412 Lahaina silty clay, 25 to 40 percent slopes, severely eroded, MLRA 158
#> 413 Koele-Badland complex, 7 to 70 percent slopes, MLRA 158
#> 414 Kanepuu silty clay, 7 to 15 percent slopes, MLRA 158
#> 415 Pamoa silty clay, 5 to 20 percent slopes, eroded, MLRA 158
#> 416 Waikapu silty clay loam, 7 to 15 percent slopes, severely eroded, MLRA 158
#> 417 Molokai silty clay loam, 7 to 15 percent slopes, MLRA 158
#> 418 Uwala silty clay loam, 7 to 15 percent slopes, severely eroded, MLRA 158
#> 419 Lahaina silty clay, 3 to 7 percent slopes, MLRA 158
#> 420 Koele silty clay loam, 7 to 15 percent slopes, MLRA 158
#> 421 Lahaina silty clay, 7 to 15 percent slopes, severely eroded, MLRA 158
#> 422 Pulehu clay loam, 0 to 3 percent slopes , MLRA 163
#> 423 Molokai silty clay loam, 0 to 3 percent slopes, MLRA 158
#> 424 Jaucas sand, 0 to 15 percent slopes, MLRA 163
#> 425 Waihuna gravelly clay, 3 to 7 percent slopes, MLRA 158
#> 426 Lualualei clay, 0 to 2 percent slopes, MLRA 163
#> 427 Lualualei clay, 0 to 2 percent slopes, MLRA 163
#> 428 Kalae silty clay, dry, 2 to 7 percent slopes, MLRA 158
#> 429 Waihuna clay, 3 to 7 percent slopes, MLRA 158
#> 430 Pulehu sandy loam, 2 to 6 percent slopes, MLRA 163
#> 431 Kanepuu silty clay, 3 to 7 percent slopes, MLRA 158
#> 432 Koele silty clay loam, 15 to 25 percent slopes, MLRA 158
#> 433 Kanepuu-Dune land complex, 7 to 15 percent slopes, eroded, MLRA 158
#> 434 Molokai silty clay loam, 7 to 15 percent slopes, severely eroded, MLRA 158
#> 435 Coral outcrop
#> 436 Lahaina silty clay, 3 to 7 percent slopes, severely eroded, MLRA 158
#> 437 Lahaina silty clay, 15 to 25 percent slopes, severely eroded, MLRA 158
#> 438 Waihuna clay, 7 to 15 percent slopes, MLRA 158
#> 439 Uwala silty clay loam, 2 to 7 percent slopes, MLRA 158
#> 440 Molokai silty clay loam, 3 to 7 percent slopes, MLRA 158
#> 441 Kanepuu-Dune land complex, 3 to 7 percent slopes, eroded, MLRA 158
#> 442 Waikapu silty clay loam, 0 to 3 percent slopes, MLRA 158
#> 443 Mala silty clay, 0 to 3 percent slopes, MLRA 163
#> 444 Kalae silty clay, dry, 7 to 15 percent slopes, MLRA 158
#> 445 Lahaina silty clay, 0 to 3 percent slopes, MLRA 158
#> 446 Pamoa silty clay, 5 to 20 percent slopes, MLRA 158
#> 447 Uwala silty clay loam, 7 to 15 percent slopes, MLRA 158
#> 448 Koele silty clay loam, 3 to 7 percent slopes, MLRA 158
#> 449 Pulehu stony sandy loam, 0 to 7 percent slopes, MLRA 163
#> 450 Pulehu clay loam, 0 to 3 percent slopes , MLRA 163
#> 451 Ewa silty clay loam, 0 to 3 percent slopes, MLRA 158
#> 452 Molokai silty clay loam, 7 to 15 percent slopes, MLRA 158
#> 453 Haiku clay, 3 to 7 percent slopes, MLRA 167
#> 454 Haliimaile silty clay loam, 7 to 15 percent slopes
#> 455 Kamaole extremely stony silt loam, 3 to 15 percent slopes
#> 456 Alaeloa silty clay, 15 to 35 percent slopes, MLRA 164
#> 457 Oanapuka extremely stony silt loam, 7 to 25 percent slopes
#> 458 Makawao silty clay, 7 to 15 percent slopes
#> 459 Jaucas sand, saline, 0 to 12 percent slopes, MLRA 163
#> 460 Keahua stony silty clay, 7 to 15 percent slopes
#> 461 Hana extremely stony silty clay loam, moderately deep variant, 3 to 15 percent slopes
#> 462 Keahua cobbly silty clay loam, 3 to 7 percent slopes
#> 463 Waiakoa silty clay loam, 3 to 7 percent slopes
#> 464 Iao silty clay, 3 to 7 percent slopes, MLRA 158
#> 465 Makaalae silty clay, 7 to 25 percent slopes
#> 466 Paia silty clay, 7 to 15 percent slopes
#> 467 Hana very stony silty clay loam, 3 to 25 percent slopes
#> 468 Waiakoa very stony silty clay loam, 3 to 7 percent slopes, MLRA 158
#> 469 Makena-Rubble land complex, 3 to 15 percent slopes
#> 470 Makena-Rubble land complex, 3 to 15 percent slopes
#> 471 Makena-Rubble land complex, 3 to 15 percent slopes
#> 472 Kahana silty clay, 15 to 25 percent slopes
#> 473 Pauwela clay, 7 to 15 percent slopes
#> 474 Iao clay, 3 to 7 percent slopes, MLRA 163
#> 475 Keahua very stony silty clay loam, 7 to 25 percent slopes
#> 476 Wahikuli stony silty clay, 3 to 7 percent slopes, MLRA 158
#> 477 Oli medial silt loam, 13 to 45 percent slopes, MLRA 164
#> 478 Ewa cobbly silty clay loam, 3 to 7 percent slopes, MLRA 163
#> 479 Koele-Rocky complex
#> 480 Hamakuapoko silty clay, 7 to 15 percent slopes
#> 481 Honolua silty clay, 15 to 25 percent slopes
#> 482 Pulehu cobbly clay loam, 3 to 7 percent slopes
#> 483 Wainee very stony silty clay, 7 to 15 percent slopes
#> 484 Kula loam, 12 to 20 percent slopes
#> 485 Kaimu extremely stony peat, 7 to 25 percent slopes
#> 486 Haliimaile silty clay, 7 to 15 percent slopes
#> 487 Lahaina silty clay, 3 to 7 percent slopes, MLRA 158
#> 488 Kaupo extremely stony silty clay, 3 to 25 percent slopes, MLRA 159A
#> 489 Puuone sand, 7 to 30 percent slopes
#> 490 Puuone sand, 7 to 30 percent slopes
#> 491 Puuone sand, 7 to 30 percent slopes
#> 492 Waiakoa cobbly silty clay loam, 3 to 7 percent slopes
#> 493 Alae cobbly sandy loam, 0 to 3 percent slopes, MLRA 158
#> 494 Molokai silty clay loam, 3 to 7 percent slopes, MLRA 158
#> 495 Keahua cobbly silty clay loam, 15 to 25 percent slopes
#> 496 Wailuku silty clay, 7 to 15 percent slopes, MLRA 163
#> 497 Wailuku silty clay, 7 to 15 percent slopes, MLRA 163
#> 498 Wailuku silty clay, 7 to 15 percent slopes, MLRA 163
#> 499 Iao silty clay, 0 to 3 percent slopes, MLRA 163
#> 500 Alaeloa silty clay, 7 to 15 percent slopes, MLRA 158
#> 501 Pulehu silt loam, 0 to 3 percent slopes
#> 502 Hana silty clay loam, moderately deep variant, 3 to 15 percent slopes
#> 503 Waiakoa extremely stony silty clay loam, 3 to 7 percent slopes, MLRA 157
#> 504 Haiku silty clay, 7 to 15 percent slopes, MLRA 167
#> 505 Keahua cobbly silty clay, 7 to 15 percent slopes
#> 506 Jaucas sand, 0 to 15 percent slopes, MLRA 163
#> 507 Haliimaile silty clay loam, 3 to 7 percent slopes
#> 508 Kamaole very stony silt loam, 3 to 15 percent slopes
#> 509 Oanapuka very stony silt loam, 7 to 25 percent slopes, MLRA 157
#> 510 Iao cobbly silty clay, 7 to 15 percent slopes
#> 511 Paia silty clay, 3 to 7 percent slopes
#> 512 Wahikuli very stony silty clay, 3 to 7 percent slopes, MLRA 158
#> 513 Lahaina silty clay, 15 to 25 percent slopes
#> 514 Halawa silty clay, 3 to 25 percent slopes, MLRA 165
#> 515 Pauwela clay, 3 to 7 percent slopes
#> 516 Pauwela clay, 3 to 7 percent slopes
#> 517 Pauwela clay, 3 to 7 percent slopes
#> 518 Kahana silty clay, 7 to 15 percent slopes
#> 519 Wahikuli silty clay, 3 to 7 percent slopes, MLRA 158
#> 520 Makaalae clay, 7 to 40 percent slopes
#> 521 Uma loamy coarse sand, 7 to 25 percent slopes, rocky
#> 522 Honolua silty clay, 7 to 15 percent slopes
#> 523 Makawao silty clay, 3 to 7 percent slopes
#> 524 Makawao silty clay, 3 to 7 percent slopes
#> 525 Makawao silty clay, 3 to 7 percent slopes
#> 526 Pane silt loam, 7 to 25 percent slopes
#> 527 Ewa silty clay, 3 to 7 percent slopes, MLRA 163
#> 528 Keahua silty clay loam, 7 to 15 percent slopes
#> 529 Kula loam, 4 to 12 percent slopes
#> 530 Alaeloa silty clay, 3 to 7 percent slopes, MLRA 158
#> 531 Hamakuapoko silty clay, 3 to 7 percent slopes
#> 532 Keawakapu extremely stony silty clay loam, 3 to 25 percent slopes, MLRA 157
#> 533 Ewa cobbly silty clay loam, 0 to 3 percent slopes, MLRA 158
#> 534 Olinda loam, 12 to 20 percent slopes
#> 535 Pulehu cobbly clay loam, 0 to 3 percent slopes
#> 536 Wainee very stony silty clay, 3 to 7 percent slopes
#> 537 Haliimaile silty clay, 3 to 7 percent slopes
#> 538 Haliimaile silty clay, 3 to 7 percent slopes
#> 539 Haliimaile silty clay, 3 to 7 percent slopes
#> 540 Kaupo very stony silty clay loam, 3 to 25 percent slopes, MLRA 159A
#> 541 Wainee extremely stony silty clay, 7 to 15 percent slopes, MLRA 158
#> 542 Ulupalakua silt loam, 7 to 25 percent slopes
#> 543 Kailua silty clay, 3 to 25 percent slopes
#> 544 Molokai silty clay loam, 0 to 3 percent slopes, MLRA 158
#> 545 Keahua cobbly silty clay loam, 7 to 15 percent slopes
#> 546 Hana extremely stony silty clay loam, 3 to 25 percent slopes
#> 547 Iao cobbly silty clay, 3 to 7 percent slopes
#> 548 Wailuku silty clay, 3 to 7 percent slopes, MLRA 163
#> 549 Haiku clay, 7 to 15 percent slopes, MLRA 167
#> 550 Alae sandy loam, 3 to 7 percent slopes, MLRA 158
#> 551 Paia silty clay, 7 to 15 percent slopes, eroded
#> 552 Waiakoa silty clay loam, 7 to 15 percent slopes
#> 553 Keahua silty clay, 7 to 15 percent slopes
#> 554 Iao clay, 7 to 15 percent slopes, MLRA 163
#> 555 Malama extremely stony highly decomposed plant material, 3 to 20 percent slopes, MLRA 159A
#> 556 Pauwela clay, 15 to 25 percent slopes
#> 557 Waiakoa very stony silty clay loam, 7 to 15 percent slopes, MLRA 158
#> 558 Haiku silty clay, 3 to 7 percent slopes, MLRA 167
#> 559 Kealia silt loam, frequent ponding, 0 to 1 percent slopes, MLRA 163
#> 560 Kealia silt loam, frequent ponding, 0 to 1 percent slopes, MLRA 163
#> 561 Ewa silty clay, 0 to 3 percent slopes
#> 562 Puu Pa very stony medial silt loam, 15 to 50 percent slopes, MLRA 157
#> 563 Lahaina silty clay, 7 to 15 percent slopes, MLRA 158
#> 564 Hamakuapoko silty clay, 7 to 15 percent slopes, eroded
#> 565 Makaalae extremely stony silty clay, 7 to 25 percent slopes
#> 566 Kahana silty clay, 3 to 7 percent slopes
#> 567 Waiakoa extremely stony silty clay loam, 3 to 25 percent slopes, eroded, MLRA 157
#> 568 Io silt loam, 7 to 25 percent slopes
#> 569 Wahikuli stony silty clay, 7 to 15 percent slopes, MLRA 158
#> 570 Keahua silty clay loam, 3 to 7 percent slopes
#> 571 Olinda loam, 4 to 12 percent slopes
#> 572 Haliimaile gravelly silty clay, 7 to 15 percent slopes, eroded
#> 573 Waiakoa extremely stony silty clay loam, 7 to 15 percent slopes, MLRA 158
#> 574 Pulehu silt loam, 3 to 7 percent slopes
#> 575 Wainee extremely stony silty clay, 3 to 7 percent slopes
#> 576 Wailuku cobbly silty clay, 7 to 15 percent slopes, MLRA 163
#> 577 Alae cobbly sandy loam, 3 to 7 percent slopes, MLRA 158
#> 578 Kemoo silty clay, 20 to 35 percent slopes
#> 579 Kokokahi very stony clay, 0 to 35 percent slopes
#> 580 Makiki stony clay loam, 0 to 3 percent slopes
#> 581 Ewa stony silty clay, 0 to 2 percent slopes
#> 582 Paaloa clay, 2 to 12 percent slopes
#> 583 Waialua silty clay, 3 to 8 percent slopes
#> 584 Paumalu silty clay, 15 to 25 percent slopes
#> 585 Manana silty clay loam, 6 to 12 percent slopes
#> 586 Papaa clay, 35 to 70 percent slopes
#> 587 Halawa silt loam, 35 to 70 percent slopes, eroded
#> 588 Kemoo silty clay, 2 to 6 percent slopes
#> 589 Leilehua silty clay, 2 to 6 percent slopes
#> 590 Wahiawa silty clay, 8 to 15 percent slopes
#> 591 Kaneohe silty clay, 30 to 65 percent slopes
#> 592 Kaena very stony clay, 10 to 35 percent slopes
#> 593 Kunia silty clay, 0 to 3 percent slopes
#> 594 Waialua very stony silty clay, 12 to 20 percent slopes
#> 595 Kolekole silty clay loam, 1 to 6 percent slopes
#> 596 Pulehu clay loam, 0 to 3 percent slopes , MLRA 163
#> 597 Lolekaa silty clay, 8 to 15 percent slopes
#> 598 Kaena stony clay, 2 to 6 percent slopes
#> 599 Manana silty clay, 25 to 40 percent slopes
#> 600 Alaeloa silty clay, 40 to 70 percent slopes
#> 601 Waikane silty clay, 40 to 70 percent slopes, eroded
#> 602 Lolekaa silty clay, 40 to 70 percent slopes
#> 603 Hanalei stony silty clay, 2 to 6 percent slopes
#> 604 Koko silt loam, 6 to 12 percent slopes
#> 605 Mokuleia clay
#> 606 Kaneohe silty clay, 3 to 8 percent slopes
#> 607 Haleiwa silty clay, 2 to 6 percent slopes
#> 608 Tantalus silt loam, 15 to 40 percent slopes
#> 609 Lahaina silty clay, 7 to 15 percent slopes, MLRA 158
#> 610 Mamala cobbly silty clay loam, 0 to 12 percent slopes, MLRA 163
#> 611 Jaucas sand, 0 to 15 percent slopes, MLRA 163
#> 612 Molokai silty clay loam, 7 to 15 percent slopes, MLRA 158
#> 613 Pearl Harbor clay, 0 to 2 percent slopes, MLRA 163
#> 614 Waikane silty clay, 8 to 15 percent slopes
#> 615 Lualualei stony clay, 0 to 2 percent slopes
#> 616 Kapaa silty clay, 40 to 100 percent slopes
#> 617 Wahiawa silty clay, 0 to 3 percent slopes
#> 618 Mahana silty clay loam, 20 to 35 percent slopes, eroded
#> 619 Papaa clay, 6 to 25 percent slopes
#> 620 Ewa silty clay loam, moderately shallow, 0 to 2 percent slopes
#> 621 Kawaihapai clay loam, 2 to 6 percent slopes
#> 622 Waipahu silty clay, 2 to 6 percent slopes
#> 623 Ewa stony silty clay, 2 to 6 percent slopes
#> 624 Tantalus silty clay loam, 15 to 40 percent slopes
#> 625 Paumalu-Badland complex
#> 626 Keaau stony clay, 2 to 6 percent slopes
#> 627 Makalapa clay, 12 to 20 percent slopes
#> 628 Coral outcrop
#> 629 Paumalu silty clay, 3 to 8 percent slopes
#> 630 Waialua stony silty clay, 3 to 8 percent slopes
#> 631 Helemano silty clay, 30 to 90 percent slopes
#> 632 Kaneohe silty clay loam, 15 to 30 percent slopes
#> 633 Kemoo silty clay, 35 to 70 percent slopes
#> 634 Kaena clay, 2 to 6 percent slopes
#> 635 Lolekaa silty clay, 15 to 25 percent slopes
#> 636 Kemoo silty clay, 6 to 12 percent slopes
#> 637 Lualualei clay, 0 to 2 percent slopes, MLRA 163
#> 638 Lualualei clay, 0 to 2 percent slopes, MLRA 163
#> 639 Kaena stony clay, 6 to 12 percent slopes
#> 640 Leilehua silty clay, 6 to 12 percent
#> 641 Manana silty clay loam, 12 to 25 percent slopes, eroded
#> 642 Waialua clay, 2 to 6 percent slopes
#> 643 Paumalu silty clay, 25 to 40 percent slopes
#> 644 Manana silty clay, 15 to 25 percent slopes
#> 645 Wahiawa silty clay, 15 to 25 percent slopes, eroded
#> 646 Koko silt loam, 12 to 25 percent slopes
#> 647 Mahana silty clay loam, 6 to 12 percent slopes, eroded
#> 648 Kolekole silty clay loam, 6 to 12 percent slopes
#> 649 Molokai silty clay loam, 15 to 25 percent slopes
#> 650 Kawaihapai clay loam, 6 to 15 percent slopes
#> 651 Honouliuli clay, 0 to 2 percent slopes
#> 652 Jaucas sand, saline, 0 to 12 percent slopes, MLRA 163
#> 653 Waikane stony silty clay, 15 to 30 percent slopes
#> 654 Mokuleia loam
#> 655 Pulehu stony clay loam, 2 to 6 percent slopes
#> 656 Kaloko clay, 0 to 2 percent slopes, MLRA 163
#> 657 Kaloko clay, 0 to 2 percent slopes, MLRA 163
#> 658 Tantalus silt loam, 40 to 70 percent slopes
#> 659 Kunia silty clay, 3 to 8 percent slopes
#> 660 Makalapa clay, 2 to 6 percent slopes
#> 661 Makalapa clay, 2 to 6 percent slopes
#> 662 Ewa silty clay loam, moderately shallow, 2 to 6 percent slopes
#> 663 Molokai silty clay loam, 0 to 3 percent slopes, MLRA 158
#> 664 Lualualei stony clay, 2 to 6 percent slopes
#> 665 Hanalei silty clay, 0 to 2 percent slopes, MLRA 167
#> 666 Kaneohe silty clay, 8 to 15 percent slopes
#> 667 Waikane silty clay, 25 to 40 percent slopes
#> 668 Waikane silty clay, 25 to 40 percent slopes
#> 669 Waikane silty clay, 25 to 40 percent slopes
#> 670 Waikane silty clay, 25 to 40 percent slopes
#> 671 Kawaihapai very stony clay loam, 0 to 15 percent slopes, MLRA 158
#> 672 Wahiawa silty clay, 3 to 8 percent slopes
#> 673 Ewa silty clay loam, 3 to 6 percent slopes
#> 674 Keaau clay, saline, 0 to 2 percent slopes
#> 675 Kaneohe silty clay loam, 30 to 65 percent slopes
#> 676 Papaa clay, 20 to 35 percent slopes
#> 677 Kemoo-Badland complex
#> 678 Manana silty clay loam, 2 to 6 percent slopes
#> 679 Lahaina silty clay, 7 to 15 percent slopes, severely eroded, MLRA 158
#> 680 Kemoo silty clay, 12 to 20 percent slopes
#> 681 Paaloa silty clay, 3 to 12 percent slopes
#> 682 Paaloa silty clay, 3 to 12 percent slopes
#> 683 Paaloa silty clay, 3 to 12 percent slopes
#> 684 Waialua silty clay, 0 to 3 percent slopes
#> 685 Makiki clay loam, 0 to 2 percent slopes
#> 686 Waipahu silty clay, 6 to 12 percent slopes
#> 687 Lahaina silty clay, 0 to 3 percent slopes, MLRA 158
#> 688 Ewa stony silty clay, 6 to 12 percent slopes
#> 689 Lolekaa silty clay, 3 to 8 percent slopes
#> 690 Lolekaa silty clay, 3 to 8 percent slopes
#> 691 Lolekaa silty clay, 3 to 8 percent slopes
#> 692 Kaloko clay, 0 to 2 percent slopes, noncalcareous variant
#> 693 Kaloko clay, 0 to 2 percent slopes, noncalcareous variant
#> 694 Haleiwa silty clay, 0 to 2 percent slopes
#> 695 Lolekaa silty clay, 25 to 40 percent slopes
#> 696 Manana silty clay, 12 to 25 percent slopes, eroded
#> 697 Pohakupu silty clay loam, 8 to 15 percent slopes
#> 698 Waialua stony silty clay, 12 to 30 percent slopes
#> 699 Halawa silt loam, 20 to 35 percent slopes
#> 700 Mokuleia clay loam
#> 701 Waikane silty clay, 3 to 8 percent slopes
#> 702 Hanalei silty clay, 2 to 6 percent slopes
#> 703 Paumalu silty clay, 8-15 percent slopes
#> 704 Tantalus silty clay loam, 8 to 15 percent slopes
#> 705 Kaena stony clay, 12 to 20 percent slopes
#> 706 Lualualei clay, 2 to 6 percent slopes, MLRA 163
#> 707 Paumalu silty clay, 40 to 70 percent slopes
#> 708 Koko silt loam, 2 to 6 percent slopes
#> 709 Kokokahi clay, 6 to 12 percent slopes
#> 710 Kaena clay, 6 to 12 percent slopes
#> 711 Waikane silty clay, 40 to 70 percent slopes
#> 712 Kawaihapai stony clay loam, 0 to 2 percent slopes
#> 713 Honouliuli clay, 2 to 6 percent slopes
#> 714 Pamoa silty clay, 5 to 20 percent slopes, MLRA 158
#> 715 Kolekole silty clay loam, 12 to 25 percent slopes
#> 716 Waipahu silty clay, 0 to 2 percent slopes
#> 717 Makalapa clay, 6 to 12 percent slopes
#> 718 Kunia silty clay, 8 to 15 percent slopes
#> 719 Mahana silty clay loam, 12 to 20 percent slopes, eroded
#> 720 Ewa silty clay loam, 6 to 12 percent slopes
#> 721 Molokai silty clay loam, 3 to 7 percent slopes, MLRA 158
#> 722 Keaau clay, 0 to 2 percent slopes
#> 723 Keaau clay, 0 to 2 percent slopes
#> 724 Kaneohe silty clay loam, 5 to 15 percent slopes
#> 725 Mahana-Badland complex
#> cokey coecoclasskey comppct_r majcompflag compname
#> 1 26147903 11769632 60 Yes Mawae
#> 2 26147914 11769638 55 Yes Ihuanu
#> 3 26147916 11769639 90 Yes Vitric Haplustands
#> 4 26147934 11769647 40 Yes Oneula
#> 5 26147949 11769654 90 Yes Kilauea
#> 6 26147957 11769657 95 Yes Ihuanu
#> 7 26147977 11769666 25 Yes Heake
#> 8 26147978 11769667 65 Yes Alahapa
#> 9 26147979 11769668 95 Yes Ihuanu
#> 10 26147990 11769672 76 Yes Wahi
#> 11 26147999 11769676 60 Yes Iwalani
#> 12 26148003 11769679 85 Yes Heake
#> 13 26148006 11769680 90 Yes Alahapa
#> 14 26148014 11769683 13 Yes Puiwa
#> 15 26148016 11769684 20 Yes Kaholimo
#> 16 26148017 11769685 20 Yes Kaholimo
#> 17 26148018 11769686 12 Yes Puiwa
#> 18 26148030 11769690 20 Yes Kekake
#> 19 26148030 11769691 20 Yes Kekake
#> 20 26148034 11769693 90 Yes Halemaumau
#> 21 26148041 11769697 60 Yes Kanohina
#> 22 26148046 11769699 40 Yes Lithic Ustipsamments
#> 23 26148048 11769700 55 Yes Lava flows
#> 24 26148049 11769701 95 Yes Pakini
#> 25 26148059 11769705 60 Yes Kaholimo
#> 26 26148062 11769708 95 Yes Ihuanu
#> 27 26148064 11769710 60 Yes Kahaluu
#> 28 26148071 11769712 55 Yes Nakanui
#> 29 26148074 11769713 30 Yes Iwalani
#> 30 26148081 11769716 50 Yes Alahapa
#> 31 26148085 11769718 25 Yes Menehune
#> 32 26148092 11769722 60 Yes Kaholimo
#> 33 26148094 11769723 45 Yes Heake
#> 34 26148099 11769724 20 Yes Kaholimo
#> 35 26148100 11769725 10 No Kaholimo
#> 36 26148100 11769726 10 No Kaholimo
#> 37 26148105 11769727 60 Yes Iwalani
#> 38 26148106 11769728 95 Yes Oneula
#> 39 26148110 11769729 50 Yes Lithic Haplustands
#> 40 26148111 11769730 25 Yes Lithic Haplustands
#> 41 26148113 11769731 70 Yes Iwalani
#> 42 26148118 11769734 25 Yes Kekake
#> 43 26148118 11769735 25 Yes Kekake
#> 44 26148135 11769740 95 Yes Ihuanu
#> 45 26148140 11769742 40 Yes Vitric Haplustands
#> 46 26148143 11769743 45 Yes Ahiu
#> 47 26148162 11769748 90 Yes Oneula
#> 48 26148167 11769750 60 Yes Ihuanu
#> 49 26148172 11769751 60 Yes Mawae
#> 50 26148179 11769754 55 Yes Kahalii
#> 51 26148189 11769759 70 Yes Iwalani
#> 52 26148195 11769761 95 Yes Humic Durustands
#> 53 26148197 11769762 95 Yes Lalaau
#> 54 26148203 11769765 60 Yes Ahiu
#> 55 26149491 11770452 15 No Waikaloa
#> 56 26148836 11770099 40 Yes Honokohau
#> 57 26148355 11769889 60 Yes Mawae
#> 58 26148351 11769888 60 Yes Mawae
#> 59 26148400 11769907 25 Yes Kekake
#> 60 26148400 11769908 25 Yes Kekake
#> 61 26148398 11769905 20 Yes Kekake
#> 62 26148398 11769906 20 Yes Kekake
#> 63 26148396 11769903 60 Yes Puuiki
#> 64 26148396 11769904 60 Yes Puuiki
#> 65 26148393 11769901 60 Yes Puuiki
#> 66 26148393 11769902 60 Yes Puuiki
#> 67 26148462 11769936 25 Yes Puuiki
#> 68 26148462 11769937 25 Yes Puuiki
#> 69 26149179 11770294 60 Yes Iwalani
#> 70 26148461 11769934 60 Yes Puuiki
#> 71 26148461 11769935 60 Yes Puuiki
#> 72 26148457 11769931 35 Yes Puuiki
#> 73 26148457 11769932 35 Yes Puuiki
#> 74 26148453 11769928 35 Yes Puuiki
#> 75 26148453 11769929 35 Yes Puuiki
#> 76 26148441 11769921 35 Yes Kamawai
#> 77 26148441 11769922 35 Yes Kamawai
#> 78 26149181 11770295 70 Yes Iwalani
#> 79 26148562 11769976 40 Yes Kanohina
#> 80 26148863 11770118 90 Yes Kanohina
#> 81 26148585 11769986 90 Yes Auwaiakeakua
#> 82 26148589 11769987 90 Yes Auwaiakeakua
#> 83 26149323 11770372 40 Yes Auwaiakeakua
#> 84 26148592 11769988 30 Yes Kiholo
#> 85 26148593 11769989 60 Yes Kiholo
#> 86 26148614 11770001 60 Yes Kahaumanu
#> 87 26148612 11770000 60 Yes Kahaumanu
#> 88 26148611 11769999 30 Yes Kahaumanu
#> 89 26149018 11770212 100 Yes Puu Pa
#> 90 26149019 11770213 100 Yes Puu Pa
#> 91 26149020 11770214 70 Yes Waikaloa
#> 92 26149021 11770215 30 Yes Puu Pa
#> 93 26148609 11769998 100 Yes Puako
#> 94 26149022 11770216 28 Yes Puu Pa
#> 95 26149023 11770217 70 Yes Waikaloa
#> 96 26148604 11769994 90 Yes Waikaloa
#> 97 26148601 11769993 90 Yes Waikaloa
#> 98 26149026 11770218 90 Yes Waikaloa
#> 99 26148599 11769992 90 Yes Nanuku
#> 100 26148598 11769991 90 Yes Nanuku
#> 101 26148596 11769990 40 Yes Nanuku
#> 102 26148622 11770006 30 Yes Hapuna
#> 103 26148623 11770007 70 Yes Waikui
#> 104 26148620 11770004 30 Yes Hapuna
#> 105 26148621 11770005 70 Yes Waikui
#> 106 26148617 11770002 40 Yes Hapuna
#> 107 26148619 11770003 35 Yes Waikui
#> 108 26149027 11770219 20 Yes Hapuna
#> 109 26149030 11770220 30 Yes Waikui
#> 110 26149038 11770223 95 Yes Kawaihae
#> 111 26149043 11770225 90 Yes Kawaihae
#> 112 26149044 11770226 90 Yes Kawaihae
#> 113 26149064 11770238 25 Yes Kamakoa
#> 114 26148630 11770010 95 Yes Kamakoa
#> 115 26149046 11770227 100 Yes Waimea
#> 116 26149060 11770236 100 Yes Waimea
#> 117 26149061 11770237 100 Yes Waimea
#> 118 26149091 11770250 100 Yes Waimea
#> 119 26149484 11770447 60 Yes Ihuanu
#> 120 26149480 11770445 95 Yes Ihuanu
#> 121 26149479 11770444 95 Yes Ihuanu
#> 122 26148938 11770168 90 Yes Iwalani
#> 123 26148671 11770029 30 Yes Iwalani
#> 124 26148875 11770123 60 Yes Iwalani
#> 125 26148872 11770122 70 Yes Iwalani
#> 126 26148936 11770167 95 Yes Iwalani
#> 127 26148672 11770030 100 Yes Nawahine
#> 128 26148672 11770031 100 Yes Nawahine
#> 129 26149216 11770310 85 Yes Mahukona
#> 130 26149248 11770329 85 Yes Mahukona
#> 131 26149220 11770312 95 Yes Hawi
#> 132 26149219 11770311 95 Yes Hawi
#> 133 26149223 11770313 95 Yes Hawi
#> 134 26149224 11770314 100 Yes Kohala
#> 135 26149226 11770315 85 Yes Waimea
#> 136 26149228 11770316 85 Yes Waimea
#> 137 26149489 11770450 85 Yes Waimea
#> 138 26149490 11770451 15 No Waimea
#> 139 26149292 11770350 100 Yes Kohala
#> 140 26149293 11770351 100 Yes Kohala
#> 141 26149295 11770353 100 Yes Kohala
#> 142 26149294 11770352 100 Yes Kohala
#> 143 26149300 11770358 100 Yes Ainakea
#> 144 26149296 11770354 100 Yes Ainakea
#> 145 26149301 11770359 100 Yes Ainakea
#> 146 26149325 11770373 95 Yes Kemole
#> 147 26149327 11770374 95 Yes Kemole
#> 148 26149385 11770400 100 Yes Paauhau
#> 149 26148682 11770037 60 Yes Nenenui
#> 150 26148682 11770038 60 Yes Nenenui
#> 151 26148734 11770061 60 Yes Nenenui
#> 152 26148734 11770062 60 Yes Nenenui
#> 153 26149389 11770402 100 Yes Paauhau
#> 154 26148732 11770059 90 Yes Ohianui
#> 155 26148732 11770060 90 Yes Ohianui
#> 156 26148728 11770057 90 Yes Ohianui
#> 157 26148728 11770058 90 Yes Ohianui
#> 158 26149390 11770403 70 Yes Paauhau
#> 159 26148723 11770054 90 Yes Huikau
#> 160 26148723 11770055 90 Yes Huikau
#> 161 26149315 11770367 100 Yes Kikoni
#> 162 26148841 11770102 95 Yes Kaalualu
#> 163 26148844 11770103 95 Yes Kaalualu
#> 164 26148845 11770104 95 Yes Kaalualu
#> 165 26148847 11770105 60 Yes Kaalualu
#> 166 26148848 11770106 40 Yes Pakini
#> 167 26148849 11770107 95 Yes Pakini
#> 168 26148851 11770108 40 Yes Kaalualu
#> 169 26148852 11770109 60 Yes Pakini
#> 170 26148860 11770116 95 Yes Lalaau
#> 171 26148891 11770138 60 Yes Kahaluu
#> 172 26148894 11770139 70 Yes Lithic Haplotorrands
#> 173 26148922 11770157 88 Yes Puiwa
#> 174 26149474 11770441 55 Yes Ihuanu
#> 175 26149040 11770224 95 Yes Humic Durustands
#> 176 26148906 11770148 75 Yes Kaholimo
#> 177 26148920 11770156 60 Yes Kaholimo
#> 178 26148903 11770146 60 Yes Kaholimo
#> 179 26148944 11770170 90 Yes Kahaluu
#> 180 26149033 11770221 50 Yes Lalaau
#> 181 26149066 11770239 25 Yes Ainahou
#> 182 26149068 11770240 45 Yes Kahaluu
#> 183 26149113 11770264 50 Yes Nanaia
#> 184 26149114 11770265 40 Yes Ohaikea
#> 185 26149128 11770269 60 Yes Nanaia
#> 186 26148739 11770064 40 Yes Lithic Ustipsamments
#> 187 26148766 11770075 90 Yes Alahapa
#> 188 26148809 11770087 50 Yes Alahapa
#> 189 26148810 11770088 85 Yes Heake
#> 190 26148741 11770065 45 Yes Heake
#> 191 26148827 11770095 20 Yes Kaholimo
#> 192 26148828 11770096 10 No Kaholimo
#> 193 26148828 11770097 10 No Kaholimo
#> 194 26148756 11770069 60 Yes Kanohina
#> 195 26149471 11770440 95 Yes Pakini
#> 196 26148789 11770082 90 Yes Oneula
#> 197 26148793 11770083 25 Yes Menehune
#> 198 26148796 11770084 76 Yes Wahi
#> 199 26148819 11770092 40 Yes Oneula
#> 200 26149087 11770247 5 No Puu Pa
#> 201 26149089 11770248 70 Yes Puu Pa
#> 202 26149090 11770249 20 Yes Waikaloa
#> 203 26149094 11770252 25 Yes Puu Pa
#> 204 26149096 11770253 65 Yes Puu Pa
#> 205 26149505 11770463 15 No Lanapohaku
#> 206 26149290 11770349 100 Yes Puako
#> 207 26149507 11770465 15 No Lanapohaku
#> 208 26149509 11770467 15 No Lanapohaku
#> 209 26149487 11770448 65 Yes Lanapohaku
#> 210 26149264 11770337 85 Yes Pohakulehu
#> 211 26149267 11770338 30 Yes Pohakulehu
#> 212 26149270 11770339 30 Yes Lapa
#> 213 26149340 11770381 35 Yes Pohakulehu
#> 214 26149341 11770382 45 Yes Lanapohaku
#> 215 26149352 11770387 85 Yes Hilo
#> 216 26149358 11770389 80 Yes Hilo
#> 217 26149355 11770388 80 Yes Hilo
#> 218 26149330 11770376 40 Yes Onomea
#> 219 26149361 11770390 10 No Onomea
#> 220 26149375 11770396 65 Yes Hilo
#> 221 26149422 11770415 95 Yes Ookala
#> 222 26149384 11770399 95 Yes Ookala
#> 223 26149424 11770416 95 Yes Ookala
#> 224 26149428 11770417 55 Yes Ookala
#> 225 26149387 11770401 95 Yes Paauhau
#> 226 26149449 11770427 95 Yes Olaa
#> 227 26149465 11770436 30 Yes Onomea
#> 228 26149611 11770596 85 Yes Kalaupapa
#> 229 26149552 11770590 100 Yes Lahaina
#> 230 26149636 11770565 100 Yes Pulehu
#> 231 26149533 11770584 100 Yes Hoolehua
#> 232 26149600 11770570 55 Yes Jaucas
#> 233 26149567 11770575 100 Yes Lahaina
#> 234 26149583 11770625 100 Yes Pamoa
#> 235 26149572 11770612 100 Yes Molokai
#> 236 26149559 11770562 100 Yes Waihuna
#> 237 26149574 11770592 100 Yes Molokai
#> 238 26149603 11770573 100 Yes Haleiwa
#> 239 26149542 11770574 100 Yes Waikapu
#> 240 26149609 11770599 100 Yes Halawa
#> 241 26149610 11770621 100 Yes Kalae
#> 242 26149568 11770589 100 Yes Lahaina
#> 243 26149622 11770607 5 No Molokai
#> 244 26149624 11770585 90 Yes Hoolehua
#> 245 26149598 11770553 100 Yes Niulii
#> 246 26149557 11770558 100 Yes Kawaihapai
#> 247 26149534 11770610 100 Yes Hoolehua
#> 248 26149529 11770597 100 Yes Holomua
#> 249 26149536 11770620 100 Yes Kawaihapai
#> 250 26149617 11770567 10 No Naiwa
#> 251 26149618 11770605 90 Yes Oli
#> 252 26149584 11770568 100 Yes Pamoa
#> 253 26149628 11770619 90 Yes Kapuhikani
#> 254 26149522 11770582 100 Yes Alaeloa
#> 255 26149566 11770583 100 Yes Lahaina
#> 256 26149635 11770608 100 Yes Pulehu
#> 257 26149619 11770613 100 Yes Mala
#> 258 26149585 11770572 100 Yes Waihuna
#> 259 26149564 11770622 100 Yes Jaucas
#> 260 26149571 11770560 100 Yes Kalae
#> 261 26149539 11770616 100 Yes Naiwa
#> 262 26149573 11770552 100 Yes Molokai
#> 263 26149526 11770563 100 Yes Halawa
#> 264 26149591 11770571 85 Yes Waikapu
#> 265 26149527 11770569 100 Yes Holomua
#> 266 26149556 11770555 100 Yes Kawaihapai
#> 267 26149575 11770618 100 Yes Molokai
#> 268 26149595 11770602 80 Yes Waikapu
#> 269 26149634 11770593 100 Yes Kalae
#> 270 26149532 11770556 100 Yes Hoolehua
#> 271 26149569 11770564 100 Yes Lahaina
#> 272 26149604 11770559 100 Yes Alaeloa
#> 273 26149601 11770587 100 Yes Pamoa
#> 274 26149582 11770614 100 Yes Olelo
#> 275 26149625 11770615 100 Yes Hoolehua
#> 276 26149565 11770561 100 Yes Lahaina
#> 277 26149530 11770576 100 Yes Holomua
#> 278 26149560 11770578 100 Yes Alaeloa
#> 279 26149538 11770601 100 Yes Molokai
#> 280 26149631 11770604 85 Yes Kealia
#> 281 26149632 11770624 10 No Kealia
#> 282 26149626 11770595 95 Yes Lualualei
#> 283 26149627 11770617 5 No Ewa
#> 284 26149588 11770600 85 Yes Pulehu
#> 285 26149558 11770588 100 Yes Waihuna
#> 286 26149620 11770554 100 Yes Mala
#> 287 26149602 11770557 100 Yes Haleiwa
#> 288 26149540 11770609 100 Yes Niulii
#> 289 26149535 11770591 100 Yes Kalae
#> 290 26149541 11770586 100 Yes Waikapu
#> 291 26149615 11770611 90 Yes Oli
#> 292 26149616 11770580 10 No Naiwa
#> 293 26149528 11770598 100 Yes Holomua
#> 294 26149531 11770606 100 Yes Holomua
#> 295 26149685 11770748 100 Yes Makapili
#> 296 26149747 11770743 60 Yes Waikomo
#> 297 26149670 11770697 100 Yes Lihue
#> 298 26149763 11770726 100 Yes Hanamaulu
#> 299 26149688 11770720 100 Yes Makaweli
#> 300 26149775 11770673 100 Yes Kaena variant
#> 301 26149697 11770739 100 Yes Pakala
#> 302 26149751 11770671 10 No Naiwa
#> 303 26149752 11770633 90 Yes Oli
#> 304 26149662 11770632 100 Yes Kapaa
#> 305 26149679 11770650 100 Yes Mahana
#> 306 26149707 11770700 100 Yes Puhi
#> 307 26149744 11770668 100 Yes Niu
#> 308 26149753 11770661 85 Yes Hanalei
#> 309 26149666 11770688 100 Yes Koloa
#> 310 26149692 11770705 100 Yes Nonopahu
#> 311 26149710 11770737 100 Yes Puu Opae
#> 312 26149755 11770717 100 Yes Halii
#> 313 26149682 11770706 100 Yes Makapili
#> 314 26149665 11770639 100 Yes Kekaha
#> 315 26149650 11770702 100 Yes Jaucas variant
#> 316 26149785 11770745 100 Yes Kalihi
#> 317 26149675 11770642 100 Yes Lihue
#> 318 26149704 11770728 100 Yes Puhi
#> 319 26149647 11770725 100 Yes Ioleau
#> 320 26149698 11770749 100 Yes Pooku
#> 321 26149640 11770694 40 Yes Mahana
#> 322 26149672 11770707 100 Yes Lihue
#> 323 26149659 11770708 100 Yes Kapaa
#> 324 26149701 11770666 100 Yes Pooku
#> 325 26149761 11770734 100 Yes Hanamaulu
#> 326 26149687 11770655 100 Yes Makaweli
#> 327 26149776 11770651 100 Yes Mokuleia variant
#> 328 26149760 11770730 100 Yes Hanalei
#> 329 26149715 11770626 65 Yes Waikomo
#> 330 26149787 11770703 100 Yes Kolokolo
#> 331 26149729 11770640 100 Yes Lualualei
#> 332 26149790 11770643 100 Yes Kalapa
#> 333 26149709 11770684 100 Yes Puu Opae
#> 334 26149758 11770709 5 No Mokuleia
#> 335 26149759 11770729 95 Yes Hanalei
#> 336 26149684 11770711 100 Yes Makapili
#> 337 26149696 11770721 100 Yes Pakala
#> 338 26149762 11770693 100 Yes Hanamaulu
#> 339 26149669 11770690 100 Yes Lawai
#> 340 26149749 11770746 90 Yes Oli
#> 341 26149750 11770664 10 No Naiwa
#> 342 26149681 11770689 100 Yes Mahana
#> 343 26149757 11770719 100 Yes Halii
#> 344 26149706 11770662 100 Yes Puhi
#> 345 26149743 11770698 100 Yes Niu
#> 346 26149661 11770736 100 Yes Kapaa
#> 347 26149678 11770687 100 Yes Mahana
#> 348 26149691 11770716 100 Yes Nohili
#> 349 26149735 11770691 100 Yes Kekaha
#> 350 26149737 11770652 100 Yes Koloa
#> 351 26149772 11770683 100 Yes Lualualei
#> 352 26149690 11770648 100 Yes Mokuleia
#> 353 26149703 11770665 100 Yes Pooku
#> 354 26149649 11770727 100 Yes Jaucas
#> 355 26149664 11770741 100 Yes Kekaha
#> 356 26149713 11770634 100 Yes Waikomo
#> 357 26149789 11770638 100 Yes Kalapa
#> 358 26149674 11770641 100 Yes Lihue
#> 359 26149646 11770715 100 Yes Ioleau
#> 360 26149700 11770680 100 Yes Pooku
#> 361 26149671 11770686 100 Yes Lihue
#> 362 26149770 11770735 15 No Kaloko
#> 363 26149771 11770628 85 Yes Kaloko
#> 364 26149766 11770731 100 Yes Hanamaulu
#> 365 26149746 11770724 100 Yes Pakala
#> 366 26149689 11770710 100 Yes Makaweli
#> 367 26149656 11770714 100 Yes Kaena variant
#> 368 26149686 11770677 100 Yes Makaweli
#> 369 26149731 11770645 90 Yes Pohakupu
#> 370 26149680 11770699 100 Yes Mahana
#> 371 26149778 11770692 90 Yes Oli
#> 372 26149644 11770738 100 Yes Hanalei
#> 373 26149708 11770750 100 Yes Puhi
#> 374 26149738 11770653 100 Yes Makaweli
#> 375 26149786 11770663 100 Yes Kolokolo
#> 376 26149756 11770742 100 Yes Halii
#> 377 26149765 11770744 100 Yes Hanamaulu
#> 378 26149736 11770685 100 Yes Koloa
#> 379 26149693 11770670 100 Yes Nonopahu
#> 380 26149643 11770646 100 Yes Halii
#> 381 26149711 11770667 100 Yes Puu Opae
#> 382 26149683 11770659 100 Yes Makapili
#> 383 26149668 11770658 100 Yes Lawai
#> 384 26149654 11770747 100 Yes Koolau
#> 385 26149648 11770675 100 Yes Ioleau
#> 386 26149742 11770676 100 Yes Niu
#> 387 26149705 11770733 100 Yes Puhi
#> 388 26149663 11770740 100 Yes Kekaha
#> 389 26149699 11770635 100 Yes Pooku
#> 390 26149677 11770695 100 Yes Mahana
#> 391 26149660 11770649 100 Yes Kapaa
#> 392 26149745 11770637 100 Yes Niu
#> 393 26149645 11770627 100 Yes Ioleau
#> 394 26149728 11770718 90 Yes Mamala
#> 395 26149702 11770660 100 Yes Pooku
#> 396 26149733 11770732 75 Yes Kalapa
#> 397 26149767 11770656 100 Yes Hihimanu
#> 398 26149657 11770647 40 Yes Kaloko, drained
#> 399 26149658 11770657 60 Yes Kaloko
#> 400 26149764 11770644 100 Yes Hanamaulu
#> 401 26149667 11770629 100 Yes Lawai
#> 402 26149740 11770696 100 Yes Makaweli
#> 403 26149782 11770630 60 Yes Waiawa
#> 404 26149768 11770723 95 Yes Lualualei
#> 405 26149769 11770679 5 No Ewa
#> 406 26149673 11770713 100 Yes Lihue
#> 407 26149788 11770654 100 Yes Kalapa
#> 408 26149813 11770772 100 Yes Lahaina
#> 409 26149849 11770758 100 Yes Waihuna
#> 410 26149870 11770766 100 Yes Mala
#> 411 26149806 11770759 100 Yes Waihuna
#> 412 26149811 11770780 100 Yes Lahaina
#> 413 26149842 11770767 70 Yes Koele
#> 414 26149853 11770778 95 Yes Kanepuu
#> 415 26149825 11770789 100 Yes Pamoa
#> 416 26149838 11770775 80 Yes Waikapu
#> 417 26149818 11770781 100 Yes Molokai
#> 418 26149856 11770754 100 Yes Uwala
#> 419 26149812 11770768 100 Yes Lahaina
#> 420 26149847 11770792 100 Yes Koele
#> 421 26149814 11770788 100 Yes Lahaina
#> 422 26149829 11770762 85 Yes Pulehu
#> 423 26149816 11770794 100 Yes Molokai
#> 424 26149809 11770771 100 Yes Jaucas
#> 425 26149850 11770753 100 Yes Waihuna
#> 426 26149867 11770786 5 No Ewa
#> 427 26149866 11770757 95 Yes Lualualei
#> 428 26149815 11770756 100 Yes Kalae
#> 429 26149826 11770764 100 Yes Waihuna
#> 430 26149843 11770765 100 Yes Pulehu
#> 431 26149851 11770790 95 Yes Kanepuu
#> 432 26149848 11770773 100 Yes Koele
#> 433 26149865 11770774 85 Yes Kanepuu
#> 434 26149819 11770776 100 Yes Molokai
#> 435 26149860 11770785 15 No Mamala
#> 436 26149845 11770770 100 Yes Lahaina
#> 437 26149804 11770752 100 Yes Lahaina
#> 438 26149805 11770779 100 Yes Waihuna
#> 439 26149855 11770761 100 Yes Uwala
#> 440 26149817 11770769 100 Yes Molokai
#> 441 26149863 11770793 85 Yes Kanepuu
#> 442 26149832 11770763 85 Yes Waikapu
#> 443 26149869 11770784 100 Yes Mala
#> 444 26149807 11770791 100 Yes Kalae
#> 445 26149810 11770782 100 Yes Lahaina
#> 446 26149824 11770751 100 Yes Pamoa
#> 447 26149857 11770795 100 Yes Uwala
#> 448 26149846 11770787 100 Yes Koele
#> 449 26149844 11770755 100 Yes Pulehu
#> 450 26149975 11770797 85 Yes Pulehu
#> 451 26150018 11770817 100 Yes Ewa
#> 452 26149972 11770893 100 Yes Molokai
#> 453 26150049 11770882 85 Yes Haiku
#> 454 26149880 11770917 100 Yes Haliimaile
#> 455 26149894 11770858 100 Yes Kamaole
#> 456 26149962 11770816 100 Yes Alaeloa
#> 457 26149918 11770892 100 Yes Oanapuka
#> 458 26150078 11770909 100 Yes Makawao
#> 459 26149969 11770878 100 Yes Jaucas
#> 460 26149908 11770835 100 Yes Keahua
#> 461 26149878 11770799 100 Yes Hana variant
#> 462 26149902 11770838 100 Yes Keahua
#> 463 26149937 11770907 100 Yes Waiakoa
#> 464 26150013 11770798 90 Yes Iao
#> 465 26149915 11770827 100 Yes Makaalae
#> 466 26149924 11770877 100 Yes Paia
#> 467 26149875 11770809 100 Yes Hana
#> 468 26150010 11770804 90 Yes Waiakoa
#> 469 26150065 11770916 2 No Oanapuka
#> 470 26150067 11770841 46 Yes Makena
#> 471 26150068 11770903 3 No Keawakapu
#> 472 26149899 11770803 100 Yes Kahana
#> 473 26149926 11770814 100 Yes Pauwela
#> 474 26150031 11770815 85 Yes Iao
#> 475 26149905 11770801 100 Yes Keahua
#> 476 26150057 11770812 100 Yes Wahikuli
#> 477 26149990 11770825 90 Yes Oli
#> 478 26150028 11770922 100 Yes Ewa
#> 479 26149895 11770863 40 Yes Koele
#> 480 26149883 11770857 100 Yes Hamakuapoko
#> 481 26149886 11770820 100 Yes Honolua
#> 482 26149932 11770912 100 Yes Pulehu
#> 483 26149941 11770915 100 Yes Wainee
#> 484 26149910 11770848 100 Yes Kula
#> 485 26149891 11770813 100 Yes Kaimu
#> 486 26150074 11770908 100 Yes Haliimaile
#> 487 26149967 11770906 100 Yes Lahaina
#> 488 26150003 11770885 95 Yes Kaupo
#> 489 26150083 11770818 5 No Iao
#> 490 26150084 11770833 90 Yes Puuone
#> 491 26150085 11770895 5 No Jaucas
#> 492 26149939 11770880 100 Yes Waiakoa
#> 493 26150023 11770871 90 Yes Alae
#> 494 26149971 11770900 100 Yes Molokai
#> 495 26149904 11770926 100 Yes Keahua
#> 496 26150094 11770808 5 No Pulehu
#> 497 26150095 11770896 5 No Iao
#> 498 26150096 11770913 90 Yes Wailuku
#> 499 26150015 11770854 95 Yes Iao
#> 500 26150019 11770889 100 Yes Alaeloa
#> 501 26149927 11770811 100 Yes Pulehu
#> 502 26149877 11770844 100 Yes Hana variant
#> 503 26149984 11770910 100 Yes Waiakoa
#> 504 26150044 11770847 85 Yes Haiku
#> 505 26149907 11770925 100 Yes Keahua
#> 506 26149966 11770929 100 Yes Jaucas
#> 507 26149879 11770843 100 Yes Haliimaile
#> 508 26149893 11770849 100 Yes Kamaole
#> 509 26149991 11770821 90 Yes Oanapuka
#> 510 26149889 11770862 100 Yes Iao
#> 511 26149923 11770824 100 Yes Paia
#> 512 26150059 11770830 100 Yes Wahikuli
#> 513 26149914 11770865 100 Yes Lahaina
#> 514 26150086 11770927 100 Yes Halawa
#> 515 26150079 11770905 5 No Kailua
#> 516 26150080 11770839 90 Yes Pauwela
#> 517 26150081 11770861 5 No Haiku
#> 518 26149898 11770868 100 Yes Kahana
#> 519 26150056 11770856 100 Yes Wahikuli
#> 520 26149917 11770850 100 Yes Makaalae
#> 521 26150069 11770842 93 Yes Uma
#> 522 26149885 11770860 100 Yes Honolua
#> 523 26150075 11770805 90 Yes Makawao
#> 524 26150076 11770853 5 No Kailua
#> 525 26150077 11770914 5 No Haiku
#> 526 26149922 11770874 100 Yes Pane
#> 527 26150029 11770923 100 Yes Ewa
#> 528 26149901 11770837 100 Yes Keahua
#> 529 26149909 11770921 100 Yes Kula
#> 530 26150020 11770901 100 Yes Alaeloa
#> 531 26149882 11770883 100 Yes Hamakuapoko
#> 532 26150001 11770840 75 Yes Keawakapu
#> 533 26150017 11770899 100 Yes Ewa
#> 534 26149920 11770881 100 Yes Olinda
#> 535 26149931 11770884 100 Yes Pulehu
#> 536 26149940 11770891 100 Yes Wainee
#> 537 26150071 11770890 5 No Paia
#> 538 26150072 11770802 90 Yes Haliimaile
#> 539 26150073 11770846 5 No Keahua
#> 540 26150005 11770864 95 Yes Kaupo
#> 541 26149982 11770898 90 Yes Wainee
#> 542 26149933 11770807 100 Yes Ulupalakua
#> 543 26149890 11770823 100 Yes Kailua
#> 544 26149970 11770845 100 Yes Molokai
#> 545 26149903 11770852 100 Yes Keahua
#> 546 26149876 11770826 100 Yes Hana
#> 547 26149888 11770879 100 Yes Iao
#> 548 26150061 11770822 100 Yes Wailuku
#> 549 26150051 11770796 85 Yes Haiku
#> 550 26150027 11770924 90 Yes Alae
#> 551 26149925 11770919 100 Yes Paia
#> 552 26149938 11770851 100 Yes Waiakoa
#> 553 26149906 11770832 100 Yes Keahua
#> 554 26150035 11770911 90 Yes Iao
#> 555 26149994 11770876 90 Yes Malama
#> 556 26150082 11770888 100 Yes Pauwela
#> 557 26150008 11770834 100 Yes Waiakoa
#> 558 26150041 11770829 82 Yes Haiku
#> 559 26150091 11770920 85 Yes Kealia
#> 560 26150092 11770867 10 No Kealia
#> 561 26149873 11770859 100 Yes Ewa
#> 562 26149985 11770875 90 Yes Puu Pa
#> 563 26149968 11770800 100 Yes Lahaina
#> 564 26149884 11770819 100 Yes Hamakuapoko
#> 565 26149916 11770870 100 Yes Makaalae
#> 566 26149897 11770810 100 Yes Kahana
#> 567 26150007 11770918 100 Yes Waiakoa
#> 568 26149887 11770831 100 Yes Io
#> 569 26150058 11770887 100 Yes Wahikuli
#> 570 26149900 11770869 100 Yes Keahua
#> 571 26149919 11770894 100 Yes Olinda
#> 572 26149881 11770928 100 Yes Haliimaile
#> 573 26150055 11770828 100 Yes Waiakoa
#> 574 26149928 11770855 100 Yes Pulehu
#> 575 26149942 11770902 100 Yes Wainee
#> 576 26150060 11770872 100 Yes Wailuku
#> 577 26150021 11770873 100 Yes Alae
#> 578 26150124 11773500 100 Yes Kemoo
#> 579 26150115 11773460 100 Yes Kokokahi
#> 580 26150146 11773469 100 Yes Makiki
#> 581 26150102 11773475 100 Yes Ewa
#> 582 26150268 11773491 100 Yes Paaloa
#> 583 26150179 11773457 100 Yes Waialua
#> 584 26150166 11773485 100 Yes Paumalu
#> 585 26150148 11773434 100 Yes Manana
#> 586 26150161 11773403 100 Yes Papaa
#> 587 26150108 11773401 100 Yes Halawa
#> 588 26150121 11773381 100 Yes Kemoo
#> 589 26150133 11773481 100 Yes Leilehua
#> 590 26150176 11773430 100 Yes Wahiawa
#> 591 26150247 11773462 100 Yes Kaneohe
#> 592 26150240 11773350 100 Yes Kaena
#> 593 26150130 11773450 100 Yes Kunia
#> 594 26150182 11773377 100 Yes Waialua
#> 595 26150127 11773375 100 Yes Kolekole
#> 596 26150222 11773355 85 Yes Pulehu
#> 597 26150135 11773370 100 Yes Lolekaa
#> 598 26150237 11773416 100 Yes Kaena
#> 599 26150154 11773394 100 Yes Manana
#> 600 26150198 11773454 100 Yes Alaeloa
#> 601 26150280 11773391 98 Yes Waikane
#> 602 26150262 11773495 100 Yes Lolekaa
#> 603 26150235 11773374 85 Yes Hanalei
#> 604 26150258 11773380 100 Yes Koko
#> 605 26150157 11773372 100 Yes Mokuleia
#> 606 26150243 11773455 100 Yes Kaneohe
#> 607 26150110 11773448 100 Yes Haleiwa
#> 608 26150273 11773404 100 Yes Tantalus
#> 609 26150206 11773444 100 Yes Lahaina
#> 610 26150210 11773360 90 Yes Mamala
#> 611 26150201 11773379 100 Yes Jaucas
#> 612 26150214 11773487 100 Yes Molokai
#> 613 26150226 11773470 100 Yes Pearl Harbor
#> 614 26150282 11773422 100 Yes Waikane
#> 615 26150264 11773390 100 Yes Lualualei
#> 616 26150249 11773385 75 Yes Kapaa
#> 617 26150174 11773466 100 Yes Wahiawa
#> 618 26150142 11773483 100 Yes Mahana
#> 619 26150159 11773363 100 Yes Papaa
#> 620 26150100 11773459 100 Yes Ewa
#> 621 26150118 11773382 100 Yes Kawaihapai
#> 622 26150186 11773378 100 Yes Waipahu
#> 623 26150103 11773426 100 Yes Ewa
#> 624 26150172 11773351 100 Yes Tantalus
#> 625 26150163 11773437 60 Yes Paumalu
#> 626 26150255 11773445 100 Yes Keaau
#> 627 26150144 11773371 100 Yes Makalapa
#> 628 26150227 11773364 15 No Mamala
#> 629 26150164 11773392 100 Yes Paumalu
#> 630 26150180 11773502 100 Yes Waialua
#> 631 26150109 11773489 100 Yes Helemano
#> 632 26150246 11773477 100 Yes Kaneohe
#> 633 26150125 11773463 100 Yes Kemoo
#> 634 26150116 11773492 100 Yes Kaena
#> 635 26150263 11773447 100 Yes Lolekaa
#> 636 26150122 11773468 100 Yes Kemoo
#> 637 26150284 11773368 95 Yes Lualualei
#> 638 26150285 11773427 5 No Ewa
#> 639 26150238 11773440 100 Yes Kaena
#> 640 26150134 11773439 100 Yes Leilehua
#> 641 26150149 11773465 100 Yes Manana
#> 642 26150183 11773474 100 Yes Waialua
#> 643 26150272 11773397 100 Yes Paumalu
#> 644 26150152 11773443 100 Yes Manana
#> 645 26150177 11773356 100 Yes Wahiawa
#> 646 26150256 11773400 100 Yes Koko
#> 647 26150140 11773358 100 Yes Mahana
#> 648 26150128 11773425 100 Yes Kolekole
#> 649 26150158 11773395 100 Yes Molokai
#> 650 26150119 11773438 100 Yes Kawaihapai
#> 651 26150111 11773409 100 Yes Honouliuli
#> 652 26150211 11773476 100 Yes Jaucas
#> 653 26150283 11773442 100 Yes Waikane
#> 654 26150155 11773359 100 Yes Mokuleia
#> 655 26150169 11773369 100 Yes Pulehu
#> 656 26150286 11773479 15 No Kaloko
#> 657 26150287 11773424 85 Yes Kaloko
#> 658 26150274 11773361 100 Yes Tantalus
#> 659 26150131 11773388 100 Yes Kunia
#> 660 26150266 11773436 5 No Mamala
#> 661 26150267 11773496 95 Yes Makalapa
#> 662 26150101 11773367 100 Yes Ewa
#> 663 26150212 11773366 100 Yes Molokai
#> 664 26150265 11773396 100 Yes Lualualei
#> 665 26150231 11773435 85 Yes Hanalei
#> 666 26150244 11773353 100 Yes Kaneohe
#> 667 26150275 11773421 2 No Alaeloa
#> 668 26150276 11773433 2 No Kaneohe
#> 669 26150277 11773373 94 Yes Waikane
#> 670 26150278 11773402 2 No Lolekaa
#> 671 26150204 11773420 100 Yes Kawaihapai
#> 672 26150175 11773376 100 Yes Wahiawa
#> 673 26150098 11773406 100 Yes Ewa
#> 674 26150254 11773389 100 Yes Keaau
#> 675 26150248 11773429 100 Yes Kaneohe
#> 676 26150160 11773432 100 Yes Papaa
#> 677 26150114 11773498 60 Yes Kemoo
#> 678 26150147 11773484 100 Yes Manana
#> 679 26150207 11773386 100 Yes Lahaina
#> 680 26150123 11773357 100 Yes Kemoo
#> 681 26150269 11773428 3 No Manana
#> 682 26150270 11773482 2 No Leilehua
#> 683 26150271 11773387 95 Yes Paaloa
#> 684 26150178 11773480 100 Yes Waialua
#> 685 26150145 11773415 100 Yes Makiki
#> 686 26150187 11773446 100 Yes Waipahu
#> 687 26150205 11773472 100 Yes Lahaina
#> 688 26150104 11773413 100 Yes Ewa
#> 689 26150259 11773393 3 No Hanalei
#> 690 26150260 11773464 2 No Kaneohe
#> 691 26150261 11773365 95 Yes Lolekaa
#> 692 26150241 11773362 10 No Kawaihapai
#> 693 26150242 11773461 90 Yes Kaloko variant
#> 694 26150229 11773398 95 Yes Haleiwa
#> 695 26150136 11773423 100 Yes Lolekaa
#> 696 26150153 11773417 100 Yes Manana
#> 697 26150168 11773441 100 Yes Pohakupu
#> 698 26150181 11773451 100 Yes Waialua
#> 699 26150107 11773471 100 Yes Halawa
#> 700 26150156 11773411 100 Yes Mokuleia
#> 701 26150279 11773456 100 Yes Waikane
#> 702 26150234 11773352 85 Yes Hanalei
#> 703 26150165 11773354 100 Yes Paumalu
#> 704 26150171 11773499 100 Yes Tantalus
#> 705 26150239 11773405 100 Yes Kaena
#> 706 26150288 11773449 100 Yes Lualualei
#> 707 26150167 11773408 100 Yes Paumalu
#> 708 26150257 11773348 100 Yes Koko
#> 709 26150126 11773473 100 Yes Kokokahi
#> 710 26150117 11773418 100 Yes Kaena
#> 711 26150184 11773383 100 Yes Waikane
#> 712 26150120 11773384 100 Yes Kawaihapai
#> 713 26150112 11773412 100 Yes Honouliuli
#> 714 26150215 11773467 100 Yes Pamoa
#> 715 26150129 11773452 100 Yes Kolekole
#> 716 26150185 11773501 100 Yes Waipahu
#> 717 26150143 11773407 100 Yes Makalapa
#> 718 26150132 11773410 100 Yes Kunia
#> 719 26150141 11773488 100 Yes Mahana
#> 720 26150099 11773431 100 Yes Ewa
#> 721 26150213 11773497 100 Yes Molokai
#> 722 26150251 11773478 85 Yes Keaau
#> 723 26150252 11773419 10 No Pearl Harbor
#> 724 26150245 11773399 100 Yes Kaneohe
#> 725 26150138 11773458 55 Yes Mahana
#> localphase compkind ecoclassid
#> 1 <NA> Series R161AY003HI
#> 2 <NA> Series R161AY003HI
#> 3 <NA> Taxon above family R161AY009HI
#> 4 low elevation Series R161AY003HI
#> 5 <NA> Series R161AY009HI
#> 6 <NA> Series R161AY003HI
#> 7 <NA> Series R161AY009HI
#> 8 <NA> Series R161AY009HI
#> 9 moist Series R161AY003HI
#> 10 <NA> Series R161AY003HI
#> 11 <NA> Series R161AY003HI
#> 12 <NA> Series R161AY009HI
#> 13 <NA> Series R161AY009HI
#> 14 eroded Series R161AY003HI
#> 15 eroded Series R161AY003HI
#> 16 <NA> Series R161AY003HI
#> 17 <NA> Series R161AY003HI
#> 18 <NA> Series R161BY001HI
#> 19 <NA> Series R161AY003HI
#> 20 <NA> Series R161AY009HI
#> 21 <NA> Series R161AY008HI
#> 22 <NA> Taxon above family R161AY009HI
#> 23 `a`a, sparsely vegetated Miscellaneous area R161AY008HI
#> 24 <NA> Series R157XY001HI
#> 25 <NA> Series R161AY003HI
#> 26 <NA> Series R161AY003HI
#> 27 <NA> Series R161AY003HI
#> 28 <NA> Series R161AY008HI
#> 29 <NA> Series R161AY003HI
#> 30 <NA> Series R161AY009HI
#> 31 <NA> Series R161AY003HI
#> 32 <NA> Series R161AY003HI
#> 33 <NA> Series R161AY009HI
#> 34 <NA> Series R161AY003HI
#> 35 eroded Series R161AY003HI
#> 36 eroded Series R160XY006HI
#> 37 moist Series R161AY003HI
#> 38 low elevation Series R161AY003HI
#> 39 cindery substratum Taxon above family R161AY009HI
#> 40 loamy surface Taxon above family R161AY009HI
#> 41 moist Series R161AY003HI
#> 42 <NA> Series R161AY003HI
#> 43 <NA> Series R161BY001HI
#> 44 moist Series R161AY003HI
#> 45 <NA> Taxon above family R161AY009HI
#> 46 <NA> Series R161AY009HI
#> 47 <NA> Series R161AY003HI
#> 48 <NA> Series R161AY003HI
#> 49 <NA> Series R161AY003HI
#> 50 <NA> Series R161AY009HI
#> 51 <NA> Series R161AY003HI
#> 52 <NA> Taxon above family R161AY003HI
#> 53 <NA> Series R161AY003HI
#> 54 <NA> Series R161AY009HI
#> 55 <NA> Series R160XY007HI
#> 56 <NA> Series R161AY001HI
#> 57 <NA> Series R161AY003HI
#> 58 <NA> Series R161AY003HI
#> 59 <NA> Series R161BY001HI
#> 60 <NA> Series R161AY003HI
#> 61 <NA> Series R161BY001HI
#> 62 <NA> Series R161AY003HI
#> 63 <NA> Series R161BY001HI
#> 64 <NA> Series R161AY003HI
#> 65 <NA> Series R161BY001HI
#> 66 <NA> Series R161AY003HI
#> 67 <NA> Series R161BY001HI
#> 68 <NA> Series R161AY003HI
#> 69 moist Series R161AY003HI
#> 70 <NA> Series R161BY001HI
#> 71 <NA> Series R161AY003HI
#> 72 <NA> Series R161BY001HI
#> 73 <NA> Series R161AY003HI
#> 74 <NA> Series R161BY001HI
#> 75 <NA> Series R161AY003HI
#> 76 <NA> Series R161BY001HI
#> 77 <NA> Series R161AY003HI
#> 78 moist Series R161AY003HI
#> 79 <NA> Series R161AY008HI
#> 80 <NA> Series R161AY008HI
#> 81 <NA> Series R161AY001HI
#> 82 <NA> Series R161AY001HI
#> 83 <NA> Series R161AY001HI
#> 84 <NA> Series R161AY001HI
#> 85 <NA> Series R161AY001HI
#> 86 <NA> Series R160XY007HI
#> 87 <NA> Series R160XY007HI
#> 88 <NA> Series R160XY007HI
#> 89 <NA> Series R160XY007HI
#> 90 <NA> Series R160XY007HI
#> 91 <NA> Series R160XY007HI
#> 92 medial very fine sandy loam Series R160XY007HI
#> 93 <NA> Series R157XY004HI
#> 94 medial very fine sandy loam Series R160XY007HI
#> 95 <NA> Series R160XY007HI
#> 96 <NA> Series R160XY007HI
#> 97 <NA> Series R160XY007HI
#> 98 <NA> Series R160XY007HI
#> 99 <NA> Series R161AY001HI
#> 100 <NA> Series R161AY001HI
#> 101 <NA> Series R161AY001HI
#> 102 <NA> Series R157XY003HI
#> 103 <NA> Series R157XY003HI
#> 104 <NA> Series R157XY003HI
#> 105 <NA> Series R157XY003HI
#> 106 <NA> Series R157XY003HI
#> 107 <NA> Series R157XY003HI
#> 108 <NA> Series R157XY003HI
#> 109 <NA> Series R157XY003HI
#> 110 <NA> Series R157XY003HI
#> 111 <NA> Series R157XY003HI
#> 112 eroded Series R157XY003HI
#> 113 <NA> Series R160XY007HI
#> 114 <NA> Series R160XY007HI
#> 115 medial very fine sandy loam Series R160XY007HI
#> 116 medial very fine sandy loam Series R160XY007HI
#> 117 medial very fine sandy loam Series R160XY007HI
#> 118 medial very fine sandy loam Series R160XY007HI
#> 119 <NA> Series R161AY003HI
#> 120 <NA> Series R161AY003HI
#> 121 <NA> Series R161AY003HI
#> 122 <NA> Series R161AY003HI
#> 123 <NA> Series R161AY003HI
#> 124 <NA> Series R161AY003HI
#> 125 <NA> Series R161AY003HI
#> 126 <NA> Series R161AY003HI
#> 127 <NA> Series R161BY001HI
#> 128 <NA> Series R161AY003HI
#> 129 <NA> Series R157XY003HI
#> 130 very stony Series R157XY003HI
#> 131 very stony Series R158XY401HI
#> 132 <NA> Series R158XY401HI
#> 133 <NA> Series R158XY401HI
#> 134 <NA> Series R158XY401HI
#> 135 <NA> Series R160XY007HI
#> 136 <NA> Series R160XY007HI
#> 137 <NA> Series R160XY007HI
#> 138 extremely stony Series R160XY007HI
#> 139 <NA> Series R158XY401HI
#> 140 <NA> Series R158XY401HI
#> 141 <NA> Series R158XY401HI
#> 142 <NA> Series R158XY401HI
#> 143 <NA> Series R159AY403HI
#> 144 <NA> Series R159AY403HI
#> 145 <NA> Series R159AY403HI
#> 146 stony medial silt loam Series R160XY007HI
#> 147 stony medial silt loam Series R160XY007HI
#> 148 <NA> Series R159AY403HI
#> 149 <NA> Series R161BY001HI
#> 150 <NA> Series R161AY003HI
#> 151 <NA> Series R161AY003HI
#> 152 <NA> Series R161BY001HI
#> 153 <NA> Series R159AY403HI
#> 154 <NA> Series R161BY001HI
#> 155 <NA> Series R161AY003HI
#> 156 <NA> Series R161BY001HI
#> 157 <NA> Series R161AY003HI
#> 158 <NA> Series R159AY403HI
#> 159 ashy loamy sand Series R161BY001HI
#> 160 ashy loamy sand Series R161AY003HI
#> 161 medial silt loam Series R160XY007HI
#> 162 <NA> Series R157XY001HI
#> 163 <NA> Series R157XY001HI
#> 164 extremely cobbly Series R157XY001HI
#> 165 <NA> Series R157XY001HI
#> 166 <NA> Series R157XY001HI
#> 167 <NA> Series R157XY001HI
#> 168 <NA> Series R157XY001HI
#> 169 <NA> Series R157XY001HI
#> 170 <NA> Series R161AY003HI
#> 171 <NA> Series R161AY003HI
#> 172 <NA> Taxon above family R157XY001HI
#> 173 <NA> Series R161AY003HI
#> 174 <NA> Series R161AY003HI
#> 175 <NA> Taxon above family R161AY003HI
#> 176 <NA> Series R161AY003HI
#> 177 <NA> Series R161AY003HI
#> 178 <NA> Series R161AY003HI
#> 179 <NA> Series R161AY003HI
#> 180 <NA> Series R161AY003HI
#> 181 <NA> Series R161AY003HI
#> 182 <NA> Series R161AY003HI
#> 183 medial loam Series R161AY009HI
#> 184 <NA> Series R161AY009HI
#> 185 medial loam Series R161AY009HI
#> 186 <NA> Taxon above family R161AY009HI
#> 187 <NA> Series R161AY009HI
#> 188 <NA> Series R161AY009HI
#> 189 <NA> Series R161AY009HI
#> 190 <NA> Series R161AY009HI
#> 191 <NA> Series R161AY003HI
#> 192 eroded Series R161AY003HI
#> 193 eroded Series R160XY006HI
#> 194 <NA> Series R161AY008HI
#> 195 <NA> Series R157XY001HI
#> 196 <NA> Series R161AY003HI
#> 197 <NA> Series R161AY003HI
#> 198 <NA> Series R161AY003HI
#> 199 low elevation Series R161AY003HI
#> 200 cinder cones Series R160XY007HI
#> 201 <NA> Series R160XY007HI
#> 202 <NA> Series R160XY007HI
#> 203 <NA> Series R160XY007HI
#> 204 extremely stony Series R160XY007HI
#> 205 cobbly ashy loamy fine sand Series R161AY002HI
#> 206 dry substratum Series R157XY003HI
#> 207 cobbly ashy loamy fine sand Series R161AY002HI
#> 208 cobbly ashy loamy fine sand Series R161AY002HI
#> 209 cobbly ashy loamy fine sand Series R161AY002HI
#> 210 cool Series R161AY002HI
#> 211 cool Series R161AY002HI
#> 212 cool Series R161AY002HI
#> 213 <NA> Series R161AY002HI
#> 214 <NA> Series R161AY002HI
#> 215 <NA> Series R159AY003HI
#> 216 <NA> Series R159AY003HI
#> 217 <NA> Series R159AY003HI
#> 218 <NA> Series R159AY009HI
#> 219 <NA> Series R159AY009HI
#> 220 <NA> Series R159AY003HI
#> 221 <NA> Series R159AY003HI
#> 222 <NA> Series R159AY003HI
#> 223 <NA> Series R159AY003HI
#> 224 <NA> Series R159AY003HI
#> 225 <NA> Series R159AY403HI
#> 226 older substrate Series R159AY003HI
#> 227 <NA> Series R159AY009HI
#> 228 <NA> Series R158XY401HI
#> 229 <NA> Series R158XY401HI
#> 230 <NA> Series R158XY002HI
#> 231 <NA> Series R158XY401HI
#> 232 <NA> Series R163XY002HI
#> 233 <NA> Series R158XY401HI
#> 234 <NA> Series R158XY002HI
#> 235 <NA> Series R158XY002HI
#> 236 <NA> Series R158XY401HI
#> 237 <NA> Series R158XY002HI
#> 238 very stony silty clay loam Series R158XY401HI
#> 239 <NA> Series R158XY002HI
#> 240 <NA> Series R165XY001HI
#> 241 <NA> Series R158XY401HI
#> 242 <NA> Series R158XY401HI
#> 243 <NA> Series R158XY002HI
#> 244 <NA> Series R158XY004HI
#> 245 medium textured subsoil Series R158XY005HI
#> 246 <NA> Series R158XY401HI
#> 247 <NA> Series R158XY401HI
#> 248 <NA> Series R158XY004HI
#> 249 <NA> Series R158XY005HI
#> 250 <NA> Series R158XY005HI
#> 251 <NA> Series R165XY001HI
#> 252 eroded Series R158XY002HI
#> 253 <NA> Series R163XY001HI
#> 254 stony Series R158XY401HI
#> 255 <NA> Series R158XY401HI
#> 256 stony Series R158XY002HI
#> 257 <NA> Series R166XY001HI
#> 258 <NA> Series R158XY401HI
#> 259 <NA> Series R163XY002HI
#> 260 severely eroded Series R158XY401HI
#> 261 <NA> Series R158XY005HI
#> 262 <NA> Series R158XY002HI
#> 263 <NA> Series R165XY001HI
#> 264 <NA> Series R158XY002HI
#> 265 <NA> Series R158XY004HI
#> 266 moist Series R158XY401HI
#> 267 <NA> Series R158XY002HI
#> 268 <NA> Series R158XY002HI
#> 269 <NA> Series R158XY401HI
#> 270 <NA> Series R158XY401HI
#> 271 <NA> Series R158XY401HI
#> 272 severely eroded Series R158XY401HI
#> 273 stony, eroded Series R158XY002HI
#> 274 <NA> Series R158XY005HI
#> 275 <NA> Series R158XY401HI
#> 276 <NA> Series R158XY401HI
#> 277 <NA> Series R158XY004HI
#> 278 <NA> Series R158XY401HI
#> 279 <NA> Series R158XY002HI
#> 280 <NA> Series R166XY003HI
#> 281 deep water table Series R166XY003HI
#> 282 <NA> Series R163XY001HI
#> 283 <NA> Series R158XY002HI
#> 284 <NA> Series R158XY002HI
#> 285 <NA> Series R158XY401HI
#> 286 <NA> Series R166XY001HI
#> 287 silty clay loam Series R158XY401HI
#> 288 <NA> Series R158XY005HI
#> 289 <NA> Series R158XY401HI
#> 290 <NA> Series R158XY002HI
#> 291 <NA> Series R165XY001HI
#> 292 <NA> Series R158XY005HI
#> 293 <NA> Series R158XY004HI
#> 294 <NA> Series R158XY004HI
#> 295 <NA> Series R167XY001HI
#> 296 <NA> Series R158XY401HI
#> 297 <NA> Series R158XY401HI
#> 298 <NA> Series R167XY001HI
#> 299 <NA> Series R158XY002HI
#> 300 <NA> Variant R163XY001HI
#> 301 <NA> Series R158XY002HI
#> 302 <NA> Series R158XY005HI
#> 303 <NA> Series R165XY001HI
#> 304 <NA> Series R167XY001HI
#> 305 <NA> Series R165XY001HI
#> 306 <NA> Series R158XY005HI
#> 307 eroded Series R158XY002HI
#> 308 <NA> Series R167XY002HI
#> 309 stony Series R158XY401HI
#> 310 <NA> Series R163XY001HI
#> 311 <NA> Series R165XY001HI
#> 312 <NA> Series R167XY001HI
#> 313 <NA> Series R167XY001HI
#> 314 <NA> Series R163XY004HI
#> 315 <NA> Variant R163XY002HI
#> 316 <NA> Series R167XY002HI
#> 317 gravelly Series R158XY401HI
#> 318 <NA> Series R158XY005HI
#> 319 <NA> Series R158XY401HI
#> 320 <NA> Series R167XY001HI
#> 321 <NA> Series R165XY001HI
#> 322 <NA> Series R158XY401HI
#> 323 <NA> Series R167XY001HI
#> 324 <NA> Series R167XY001HI
#> 325 <NA> Series R167XY001HI
#> 326 <NA> Series R158XY002HI
#> 327 poorly drained Taxadjunct R163XY005HI
#> 328 <NA> Series R167XY002HI
#> 329 very rocky Series R158XY401HI
#> 330 <NA> Series R167XY002HI
#> 331 extremely cobbly, moist Series R163XY001HI
#> 332 <NA> Series R167XY001HI
#> 333 <NA> Series R165XY001HI
#> 334 <NA> Series R158XY002HI
#> 335 <NA> Series R167XY002HI
#> 336 <NA> Series R167XY001HI
#> 337 <NA> Series R158XY002HI
#> 338 <NA> Series R167XY001HI
#> 339 <NA> Series R167XY001HI
#> 340 <NA> Series R165XY001HI
#> 341 <NA> Series R158XY005HI
#> 342 <NA> Series R165XY001HI
#> 343 <NA> Series R167XY001HI
#> 344 <NA> Series R158XY005HI
#> 345 <NA> Series R158XY002HI
#> 346 <NA> Series R167XY001HI
#> 347 <NA> Series R165XY001HI
#> 348 <NA> Series R163XY005HI
#> 349 extremely stony Series R163XY004HI
#> 350 stony Series R158XY401HI
#> 351 <NA> Series R163XY001HI
#> 352 <NA> Series R158XY401HI
#> 353 <NA> Series R167XY001HI
#> 354 <NA> Series R163XY002HI
#> 355 <NA> Series R163XY004HI
#> 356 <NA> Series R158XY401HI
#> 357 <NA> Series R167XY001HI
#> 358 gravelly Series R158XY401HI
#> 359 <NA> Series R158XY401HI
#> 360 <NA> Series R167XY001HI
#> 361 <NA> Series R158XY401HI
#> 362 drained Series R163XY005HI
#> 363 <NA> Series R163XY005HI
#> 364 <NA> Series R167XY001HI
#> 365 extremely stony Series R158XY004HI
#> 366 <NA> Series R158XY002HI
#> 367 <NA> Variant R163XY001HI
#> 368 <NA> Series R158XY002HI
#> 369 moist Series R158XY401HI
#> 370 <NA> Series R165XY001HI
#> 371 <NA> Series R165XY001HI
#> 372 peaty Series R167XY002HI
#> 373 <NA> Series R158XY005HI
#> 374 <NA> Series R158XY002HI
#> 375 <NA> Series R167XY002HI
#> 376 <NA> Series R167XY001HI
#> 377 <NA> Series R167XY001HI
#> 378 stony Series R158XY401HI
#> 379 stony Series R163XY001HI
#> 380 gravelly Series R167XY001HI
#> 381 <NA> Series R165XY001HI
#> 382 <NA> Series R167XY001HI
#> 383 <NA> Series R167XY001HI
#> 384 <NA> Series R164XY401HI
#> 385 <NA> Series R158XY401HI
#> 386 <NA> Series R158XY002HI
#> 387 <NA> Series R158XY005HI
#> 388 <NA> Series R163XY004HI
#> 389 <NA> Series R167XY001HI
#> 390 <NA> Series R165XY001HI
#> 391 <NA> Series R167XY001HI
#> 392 eroded Series R158XY002HI
#> 393 <NA> Series R158XY401HI
#> 394 <NA> Series R163XY004HI
#> 395 <NA> Series R167XY001HI
#> 396 <NA> Series R158XY401HI
#> 397 <NA> Series R167XY001HI
#> 398 <NA> Series R163XY005HI
#> 399 <NA> Series R163XY005HI
#> 400 <NA> Series R167XY001HI
#> 401 <NA> Series R167XY001HI
#> 402 <NA> Series R158XY002HI
#> 403 <NA> Series R158XY004HI
#> 404 <NA> Series R163XY001HI
#> 405 <NA> Series R158XY002HI
#> 406 <NA> Series R158XY401HI
#> 407 <NA> Series R167XY001HI
#> 408 <NA> Series R158XY401HI
#> 409 <NA> Series R158XY401HI
#> 410 <NA> Series R166XY001HI
#> 411 <NA> Series R158XY401HI
#> 412 <NA> Series R158XY401HI
#> 413 <NA> Series R166XY002HI
#> 414 <NA> Series R166XY002HI
#> 415 eroded Series R158XY002HI
#> 416 <NA> Series R158XY002HI
#> 417 <NA> Series R158XY002HI
#> 418 severely eroded Series R158XY002HI
#> 419 <NA> Series R158XY401HI
#> 420 <NA> Series R166XY002HI
#> 421 <NA> Series R158XY401HI
#> 422 <NA> Series R158XY002HI
#> 423 <NA> Series R158XY002HI
#> 424 <NA> Series R163XY002HI
#> 425 gravelly Series R158XY401HI
#> 426 <NA> Series R158XY002HI
#> 427 <NA> Series R163XY001HI
#> 428 dry Series R158XY401HI
#> 429 <NA> Series R158XY401HI
#> 430 <NA> Series R158XY002HI
#> 431 <NA> Series R166XY002HI
#> 432 <NA> Series R166XY002HI
#> 433 eroded Series R166XY002HI
#> 434 <NA> Series R158XY002HI
#> 435 <NA> Series R163XY004HI
#> 436 severly eroded Series R158XY401HI
#> 437 <NA> Series R158XY401HI
#> 438 <NA> Series R158XY401HI
#> 439 <NA> Series R158XY002HI
#> 440 <NA> Series R158XY002HI
#> 441 eroded Series R166XY002HI
#> 442 <NA> Series R158XY002HI
#> 443 <NA> Series R166XY001HI
#> 444 dry Series R158XY401HI
#> 445 <NA> Series R158XY401HI
#> 446 <NA> Series R158XY002HI
#> 447 <NA> Series R158XY002HI
#> 448 <NA> Series R166XY002HI
#> 449 stony Series R158XY002HI
#> 450 <NA> Series R158XY002HI
#> 451 <NA> Series R158XY002HI
#> 452 <NA> Series R158XY002HI
#> 453 <NA> Series R167XY001HI
#> 454 <NA> Series R158XY401HI
#> 455 extremely stony Series R157XY008HI
#> 456 <NA> Series R158XY401HI
#> 457 extremely stony Series R157XY003HI
#> 458 <NA> Series R167XY001HI
#> 459 saline Series R163XY002HI
#> 460 stony Series R158XY002HI
#> 461 extremely stony Variant R159AY003HI
#> 462 cobbly Series R158XY002HI
#> 463 <NA> Series R158XY002HI
#> 464 <NA> Series R163XY003HI
#> 465 <NA> Series R159AY403HI
#> 466 <NA> Series R158XY401HI
#> 467 very stony Series R159AY003HI
#> 468 <NA> Series R158XY004HI
#> 469 very stony Series R157XY003HI
#> 470 <NA> Series R157XY003HI
#> 471 extremely stony Series R157XY003HI
#> 472 <NA> Series R158XY401HI
#> 473 <NA> Series R167XY001HI
#> 474 <NA> Series R163XY003HI
#> 475 very stony Series R158XY004HI
#> 476 stony Series R158XY002HI
#> 477 <NA> Series R165XY001HI
#> 478 cobbly Series R158XY002HI
#> 479 <NA> Series R158XY401HI
#> 480 <NA> Series R158XY401HI
#> 481 <NA> Series R158XY005HI
#> 482 <NA> Series R158XY002HI
#> 483 very stony Series R158XY004HI
#> 484 <NA> Series R160XY007HI
#> 485 etremely stony Series R157XY008HI
#> 486 <NA> Series R158XY401HI
#> 487 <NA> Series R158XY401HI
#> 488 extremely stony silty clay Series R159AY002HI
#> 489 <NA> Series R163XY003HI
#> 490 <NA> Series R163XY002HI
#> 491 <NA> Series R163XY002HI
#> 492 cobbly Series R158XY002HI
#> 493 cobbly Series R158XY004HI
#> 494 <NA> Series R158XY002HI
#> 495 cobbly Series R158XY002HI
#> 496 <NA> Series R163XY003HI
#> 497 <NA> Series R163XY003HI
#> 498 <NA> Series R163XY003HI
#> 499 <NA> Series R163XY003HI
#> 500 <NA> Series R158XY401HI
#> 501 <NA> Series R158XY002HI
#> 502 <NA> Variant R159AY003HI
#> 503 extremely stony Series R158XY004HI
#> 504 <NA> Series R167XY001HI
#> 505 cobbly Series R158XY002HI
#> 506 <NA> Series R163XY002HI
#> 507 <NA> Series R158XY401HI
#> 508 very stony Series R157XY008HI
#> 509 very stony Series R157XY003HI
#> 510 cobbly Series R163XY003HI
#> 511 <NA> Series R158XY401HI
#> 512 very stony Series R158XY004HI
#> 513 <NA> Series R158XY401HI
#> 514 <NA> Series R165XY001HI
#> 515 <NA> Series R167XY001HI
#> 516 <NA> Series R167XY001HI
#> 517 <NA> Series R167XY001HI
#> 518 <NA> Series R158XY401HI
#> 519 <NA> Series R158XY002HI
#> 520 <NA> Series R159AY403HI
#> 521 rocky Series R160XY007HI
#> 522 <NA> Series R158XY005HI
#> 523 <NA> Series R167XY001HI
#> 524 <NA> Series R167XY001HI
#> 525 <NA> Series R167XY001HI
#> 526 <NA> Series R160XY007HI
#> 527 <NA> Series R158XY002HI
#> 528 <NA> Series R158XY002HI
#> 529 <NA> Series R160XY007HI
#> 530 <NA> Series R158XY401HI
#> 531 <NA> Series R158XY401HI
#> 532 extremely stony Series R157XY003HI
#> 533 cobbly Series R158XY002HI
#> 534 <NA> Series R160XY007HI
#> 535 <NA> Series R158XY002HI
#> 536 very stony Series R158XY004HI
#> 537 <NA> Series R158XY401HI
#> 538 <NA> Series R158XY401HI
#> 539 <NA> Series R158XY401HI
#> 540 <NA> Series R159AY002HI
#> 541 extremely stony Series R158XY004HI
#> 542 <NA> Series R160XY007HI
#> 543 <NA> Series R167XY001HI
#> 544 <NA> Series R158XY002HI
#> 545 cobbly Series R158XY002HI
#> 546 extremely stony Series R159AY003HI
#> 547 cobbly Series R163XY003HI
#> 548 <NA> Series R163XY003HI
#> 549 <NA> Series R167XY001HI
#> 550 <NA> Series R158XY004HI
#> 551 <NA> Series R158XY401HI
#> 552 <NA> Series R158XY002HI
#> 553 <NA> Series R158XY002HI
#> 554 <NA> Series R163XY003HI
#> 555 extremely stony Series R159AY003HI
#> 556 <NA> Series R167XY001HI
#> 557 <NA> Series R158XY004HI
#> 558 <NA> Series R167XY001HI
#> 559 <NA> Series R166XY003HI
#> 560 deep water table Series R166XY003HI
#> 561 <NA> Series R158XY002HI
#> 562 very stony Series R157XY008HI
#> 563 <NA> Series R158XY401HI
#> 564 <NA> Series R158XY401HI
#> 565 extremely stony Series R159AY403HI
#> 566 <NA> Series R158XY401HI
#> 567 extremely stony, eroded Series R158XY004HI
#> 568 <NA> Series R160XY007HI
#> 569 stony Series R158XY002HI
#> 570 <NA> Series R158XY002HI
#> 571 <NA> Series R160XY007HI
#> 572 gravelly Series R158XY401HI
#> 573 extremely stony Series R158XY004HI
#> 574 <NA> Series R158XY002HI
#> 575 extremely stony Series R158XY004HI
#> 576 cobbly Series R163XY003HI
#> 577 cobbly Series R158XY004HI
#> 578 <NA> Series R158XY401HI
#> 579 <NA> Series R158XY401HI
#> 580 stony Series R158XY401HI
#> 581 <NA> Series R158XY002HI
#> 582 <NA> Series R158XY005HI
#> 583 <NA> Series R158XY401HI
#> 584 <NA> Series R167XY001HI
#> 585 <NA> Series R158XY401HI
#> 586 <NA> Series R158XY401HI
#> 587 <NA> Series R158XY401HI
#> 588 <NA> Series R158XY401HI
#> 589 <NA> Series R158XY005HI
#> 590 <NA> Series R158XY401HI
#> 591 <NA> Series R167XY001HI
#> 592 <NA> Series R163XY001HI
#> 593 <NA> Series R158XY401HI
#> 594 very stony Series R158XY401HI
#> 595 <NA> Series R158XY401HI
#> 596 <NA> Series R158XY002HI
#> 597 <NA> Series R167XY001HI
#> 598 <NA> Series R163XY001HI
#> 599 <NA> Series R158XY401HI
#> 600 <NA> Series R158XY401HI
#> 601 <NA> Series R167XY001HI
#> 602 <NA> Series R167XY001HI
#> 603 <NA> Series R167XY002HI
#> 604 <NA> Series R166XY001HI
#> 605 <NA> Series R163XY004HI
#> 606 <NA> Series R167XY001HI
#> 607 <NA> Series R158XY401HI
#> 608 <NA> Series R167XY001HI
#> 609 <NA> Series R158XY401HI
#> 610 <NA> Series R163XY004HI
#> 611 <NA> Series R163XY002HI
#> 612 <NA> Series R158XY002HI
#> 613 <NA> Series R163XY005HI
#> 614 <NA> Series R167XY001HI
#> 615 stony Series R163XY001HI
#> 616 <NA> Series R167XY001HI
#> 617 <NA> Series R158XY401HI
#> 618 <NA> Series R158XY401HI
#> 619 <NA> Series R158XY401HI
#> 620 <NA> Series R158XY002HI
#> 621 <NA> Series R158XY401HI
#> 622 <NA> Series R163XY004HI
#> 623 <NA> Series R158XY002HI
#> 624 <NA> Series R158XY401HI
#> 625 <NA> Series R167XY001HI
#> 626 <NA> Series R163XY005HI
#> 627 <NA> Series R163XY001HI
#> 628 <NA> Series R163XY004HI
#> 629 <NA> Series R167XY001HI
#> 630 <NA> Series R158XY401HI
#> 631 <NA> Series R158XY401HI
#> 632 <NA> Series R167XY001HI
#> 633 <NA> Series R158XY401HI
#> 634 <NA> Series R163XY001HI
#> 635 <NA> Series R167XY001HI
#> 636 <NA> Series R158XY401HI
#> 637 <NA> Series R163XY001HI
#> 638 <NA> Series R158XY002HI
#> 639 <NA> Series R163XY001HI
#> 640 <NA> Series R158XY005HI
#> 641 <NA> Series R158XY401HI
#> 642 <NA> Series R158XY401HI
#> 643 <NA> Series R167XY001HI
#> 644 <NA> Series R158XY401HI
#> 645 <NA> Series R158XY401HI
#> 646 <NA> Series R166XY001HI
#> 647 <NA> Series R158XY401HI
#> 648 <NA> Series R158XY401HI
#> 649 <NA> Series R158XY002HI
#> 650 <NA> Series R158XY401HI
#> 651 <NA> Series R163XY001HI
#> 652 saline Series R163XY002HI
#> 653 stony Series R167XY001HI
#> 654 <NA> Series R158XY401HI
#> 655 stony Series R158XY002HI
#> 656 drained Series R163XY005HI
#> 657 <NA> Series R163XY005HI
#> 658 <NA> Series R167XY001HI
#> 659 <NA> Series R158XY401HI
#> 660 <NA> Series R163XY004HI
#> 661 <NA> Series R163XY001HI
#> 662 <NA> Series R158XY002HI
#> 663 <NA> Series R158XY002HI
#> 664 stony Series R163XY001HI
#> 665 <NA> Series R167XY002HI
#> 666 <NA> Series R167XY001HI
#> 667 <NA> Series R158XY401HI
#> 668 <NA> Series R167XY001HI
#> 669 <NA> Series R167XY001HI
#> 670 <NA> Series R167XY001HI
#> 671 <NA> Series R158XY401HI
#> 672 <NA> Series R158XY401HI
#> 673 <NA> Series R158XY002HI
#> 674 <NA> Series R163XY005HI
#> 675 <NA> Series R167XY001HI
#> 676 <NA> Series R158XY401HI
#> 677 <NA> Series R158XY401HI
#> 678 <NA> Series R158XY401HI
#> 679 <NA> Series R158XY401HI
#> 680 <NA> Series R158XY401HI
#> 681 <NA> Series R158XY401HI
#> 682 <NA> Series R158XY005HI
#> 683 <NA> Series R158XY005HI
#> 684 <NA> Series R158XY401HI
#> 685 <NA> Series R158XY401HI
#> 686 <NA> Series R163XY004HI
#> 687 <NA> Series R158XY401HI
#> 688 <NA> Series R158XY401HI
#> 689 <NA> Series R167XY002HI
#> 690 <NA> Series R167XY001HI
#> 691 <NA> Series R167XY001HI
#> 692 <NA> Series R158XY401HI
#> 693 noncalcareous Taxadjunct R163XY005HI
#> 694 <NA> Series R158XY002HI
#> 695 <NA> Series R167XY001HI
#> 696 <NA> Series R158XY401HI
#> 697 <NA> Series R158XY401HI
#> 698 stony Series R158XY401HI
#> 699 <NA> Series R158XY401HI
#> 700 <NA> Series R158XY002HI
#> 701 <NA> Series R167XY001HI
#> 702 <NA> Series R167XY002HI
#> 703 <NA> Series R167XY001HI
#> 704 <NA> Series R158XY401HI
#> 705 <NA> Series R163XY001HI
#> 706 <NA> Series R163XY001HI
#> 707 <NA> Series R167XY001HI
#> 708 <NA> Series R166XY001HI
#> 709 <NA> Series R158XY401HI
#> 710 <NA> Series R163XY001HI
#> 711 <NA> Series R167XY001HI
#> 712 <NA> Series R158XY401HI
#> 713 <NA> Series R163XY001HI
#> 714 <NA> Series R158XY002HI
#> 715 <NA> Series R158XY401HI
#> 716 <NA> Series R163XY004HI
#> 717 <NA> Series R163XY001HI
#> 718 <NA> Series R158XY401HI
#> 719 <NA> Series R158XY401HI
#> 720 <NA> Series R158XY401HI
#> 721 <NA> Series R158XY002HI
#> 722 <NA> Series R163XY005HI
#> 723 <NA> Series R163XY005HI
#> 724 <NA> Series R167XY001HI
#> 725 <NA> Series R158XY401HI
#> ecoclassname
#> 1 Isomesic Savanna
#> 2 Isomesic Savanna
#> 3 Isothermic Ustic Naturalized Grassland
#> 4 Isomesic Savanna
#> 5 Isothermic Ustic Naturalized Grassland
#> 6 Isomesic Savanna
#> 7 Isothermic Ustic Naturalized Grassland
#> 8 Isothermic Ustic Naturalized Grassland
#> 9 Isomesic Savanna
#> 10 Isomesic Savanna
#> 11 Isomesic Savanna
#> 12 Isothermic Ustic Naturalized Grassland
#> 13 Isothermic Ustic Naturalized Grassland
#> 14 Isomesic Savanna
#> 15 Isomesic Savanna
#> 16 Isomesic Savanna
#> 17 Isomesic Savanna
#> 18 Dry Ustic Isomesic Shrubland
#> 19 Isomesic Savanna
#> 20 Isothermic Ustic Naturalized Grassland
#> 21 Isohyperthermic Ustic Naturalized Grassland
#> 22 Isothermic Ustic Naturalized Grassland
#> 23 Isohyperthermic Ustic Naturalized Grassland
#> 24 Torric Naturalized Grassland
#> 25 Isomesic Savanna
#> 26 Isomesic Savanna
#> 27 Isomesic Savanna
#> 28 Isohyperthermic Ustic Naturalized Grassland
#> 29 Isomesic Savanna
#> 30 Isothermic Ustic Naturalized Grassland
#> 31 Isomesic Savanna
#> 32 Isomesic Savanna
#> 33 Isothermic Ustic Naturalized Grassland
#> 34 Isomesic Savanna
#> 35 Isomesic Savanna
#> 36 Isomesic Savanna
#> 37 Isomesic Savanna
#> 38 Isomesic Savanna
#> 39 Isothermic Ustic Naturalized Grassland
#> 40 Isothermic Ustic Naturalized Grassland
#> 41 Isomesic Savanna
#> 42 Isomesic Savanna
#> 43 Dry Ustic Isomesic Shrubland
#> 44 Isomesic Savanna
#> 45 Isothermic Ustic Naturalized Grassland
#> 46 Isothermic Ustic Naturalized Grassland
#> 47 Isomesic Savanna
#> 48 Isomesic Savanna
#> 49 Isomesic Savanna
#> 50 Isothermic Ustic Naturalized Grassland
#> 51 Isomesic Savanna
#> 52 Isomesic Savanna
#> 53 Isomesic Savanna
#> 54 Isothermic Ustic Naturalized Grassland
#> 55 Isothermic Ustic Naturalized Grassland
#> 56 Isohyperthermic Desert
#> 57 Isomesic Savanna
#> 58 Isomesic Savanna
#> 59 Dry Ustic Isomesic Shrubland
#> 60 Isomesic Savanna
#> 61 Dry Ustic Isomesic Shrubland
#> 62 Isomesic Savanna
#> 63 Dry Ustic Isomesic Shrubland
#> 64 Isomesic Savanna
#> 65 Dry Ustic Isomesic Shrubland
#> 66 Isomesic Savanna
#> 67 Dry Ustic Isomesic Shrubland
#> 68 Isomesic Savanna
#> 69 Isomesic Savanna
#> 70 Dry Ustic Isomesic Shrubland
#> 71 Isomesic Savanna
#> 72 Dry Ustic Isomesic Shrubland
#> 73 Isomesic Savanna
#> 74 Dry Ustic Isomesic Shrubland
#> 75 Isomesic Savanna
#> 76 Dry Ustic Isomesic Shrubland
#> 77 Isomesic Savanna
#> 78 Isomesic Savanna
#> 79 Isohyperthermic Ustic Naturalized Grassland
#> 80 Isohyperthermic Ustic Naturalized Grassland
#> 81 Isohyperthermic Desert
#> 82 Isohyperthermic Desert
#> 83 Isohyperthermic Desert
#> 84 Isohyperthermic Desert
#> 85 Isohyperthermic Desert
#> 86 Isothermic Ustic Naturalized Grassland
#> 87 Isothermic Ustic Naturalized Grassland
#> 88 Isothermic Ustic Naturalized Grassland
#> 89 Isothermic Ustic Naturalized Grassland
#> 90 Isothermic Ustic Naturalized Grassland
#> 91 Isothermic Ustic Naturalized Grassland
#> 92 Isothermic Ustic Naturalized Grassland
#> 93 Alluvial Woodland
#> 94 Isothermic Ustic Naturalized Grassland
#> 95 Isothermic Ustic Naturalized Grassland
#> 96 Isothermic Ustic Naturalized Grassland
#> 97 Isothermic Ustic Naturalized Grassland
#> 98 Isothermic Ustic Naturalized Grassland
#> 99 Isohyperthermic Desert
#> 100 Isohyperthermic Desert
#> 101 Isohyperthermic Desert
#> 102 Rocky Volcanic Ash Savanna
#> 103 Rocky Volcanic Ash Savanna
#> 104 Rocky Volcanic Ash Savanna
#> 105 Rocky Volcanic Ash Savanna
#> 106 Rocky Volcanic Ash Savanna
#> 107 Rocky Volcanic Ash Savanna
#> 108 Rocky Volcanic Ash Savanna
#> 109 Rocky Volcanic Ash Savanna
#> 110 Rocky Volcanic Ash Savanna
#> 111 Rocky Volcanic Ash Savanna
#> 112 Rocky Volcanic Ash Savanna
#> 113 Isothermic Ustic Naturalized Grassland
#> 114 Isothermic Ustic Naturalized Grassland
#> 115 Isothermic Ustic Naturalized Grassland
#> 116 Isothermic Ustic Naturalized Grassland
#> 117 Isothermic Ustic Naturalized Grassland
#> 118 Isothermic Ustic Naturalized Grassland
#> 119 Isomesic Savanna
#> 120 Isomesic Savanna
#> 121 Isomesic Savanna
#> 122 Isomesic Savanna
#> 123 Isomesic Savanna
#> 124 Isomesic Savanna
#> 125 Isomesic Savanna
#> 126 Isomesic Savanna
#> 127 Dry Ustic Isomesic Shrubland
#> 128 Isomesic Savanna
#> 129 Rocky Volcanic Ash Savanna
#> 130 Rocky Volcanic Ash Savanna
#> 131 Isohyperthermic Ustic Naturalized Grassland
#> 132 Isohyperthermic Ustic Naturalized Grassland
#> 133 Isohyperthermic Ustic Naturalized Grassland
#> 134 Isohyperthermic Ustic Naturalized Grassland
#> 135 Isothermic Ustic Naturalized Grassland
#> 136 Isothermic Ustic Naturalized Grassland
#> 137 Isothermic Ustic Naturalized Grassland
#> 138 Isothermic Ustic Naturalized Grassland
#> 139 Isohyperthermic Ustic Naturalized Grassland
#> 140 Isohyperthermic Ustic Naturalized Grassland
#> 141 Isohyperthermic Ustic Naturalized Grassland
#> 142 Isohyperthermic Ustic Naturalized Grassland
#> 143 Isohyperthermic Udic Naturalized Grassland
#> 144 Isohyperthermic Udic Naturalized Grassland
#> 145 Isohyperthermic Udic Naturalized Grassland
#> 146 Isothermic Ustic Naturalized Grassland
#> 147 Isothermic Ustic Naturalized Grassland
#> 148 Isohyperthermic Udic Naturalized Grassland
#> 149 Dry Ustic Isomesic Shrubland
#> 150 Isomesic Savanna
#> 151 Isomesic Savanna
#> 152 Dry Ustic Isomesic Shrubland
#> 153 Isohyperthermic Udic Naturalized Grassland
#> 154 Dry Ustic Isomesic Shrubland
#> 155 Isomesic Savanna
#> 156 Dry Ustic Isomesic Shrubland
#> 157 Isomesic Savanna
#> 158 Isohyperthermic Udic Naturalized Grassland
#> 159 Dry Ustic Isomesic Shrubland
#> 160 Isomesic Savanna
#> 161 Isothermic Ustic Naturalized Grassland
#> 162 Torric Naturalized Grassland
#> 163 Torric Naturalized Grassland
#> 164 Torric Naturalized Grassland
#> 165 Torric Naturalized Grassland
#> 166 Torric Naturalized Grassland
#> 167 Torric Naturalized Grassland
#> 168 Torric Naturalized Grassland
#> 169 Torric Naturalized Grassland
#> 170 Isomesic Savanna
#> 171 Isomesic Savanna
#> 172 Torric Naturalized Grassland
#> 173 Isomesic Savanna
#> 174 Isomesic Savanna
#> 175 Isomesic Savanna
#> 176 Isomesic Savanna
#> 177 Isomesic Savanna
#> 178 Isomesic Savanna
#> 179 Isomesic Savanna
#> 180 Isomesic Savanna
#> 181 Isomesic Savanna
#> 182 Isomesic Savanna
#> 183 Isothermic Ustic Naturalized Grassland
#> 184 Isothermic Ustic Naturalized Grassland
#> 185 Isothermic Ustic Naturalized Grassland
#> 186 Isothermic Ustic Naturalized Grassland
#> 187 Isothermic Ustic Naturalized Grassland
#> 188 Isothermic Ustic Naturalized Grassland
#> 189 Isothermic Ustic Naturalized Grassland
#> 190 Isothermic Ustic Naturalized Grassland
#> 191 Isomesic Savanna
#> 192 Isomesic Savanna
#> 193 Isomesic Savanna
#> 194 Isohyperthermic Ustic Naturalized Grassland
#> 195 Torric Naturalized Grassland
#> 196 Isomesic Savanna
#> 197 Isomesic Savanna
#> 198 Isomesic Savanna
#> 199 Isomesic Savanna
#> 200 Isothermic Ustic Naturalized Grassland
#> 201 Isothermic Ustic Naturalized Grassland
#> 202 Isothermic Ustic Naturalized Grassland
#> 203 Isothermic Ustic Naturalized Grassland
#> 204 Isothermic Ustic Naturalized Grassland
#> 205 High Elevation Isomesic Desert
#> 206 Rocky Volcanic Ash Savanna
#> 207 High Elevation Isomesic Desert
#> 208 High Elevation Isomesic Desert
#> 209 High Elevation Isomesic Desert
#> 210 High Elevation Isomesic Desert
#> 211 High Elevation Isomesic Desert
#> 212 High Elevation Isomesic Desert
#> 213 High Elevation Isomesic Desert
#> 214 High Elevation Isomesic Desert
#> 215 Isohyperthermic Perudic Naturalized Grassland
#> 216 Isohyperthermic Perudic Naturalized Grassland
#> 217 Isohyperthermic Perudic Naturalized Grassland
#> 218 Isothermic Aquic Bog
#> 219 Isothermic Aquic Bog
#> 220 Isohyperthermic Perudic Naturalized Grassland
#> 221 Isohyperthermic Perudic Naturalized Grassland
#> 222 Isohyperthermic Perudic Naturalized Grassland
#> 223 Isohyperthermic Perudic Naturalized Grassland
#> 224 Isohyperthermic Perudic Naturalized Grassland
#> 225 Isohyperthermic Udic Naturalized Grassland
#> 226 Isohyperthermic Perudic Naturalized Grassland
#> 227 Isothermic Aquic Bog
#> 228 Isohyperthermic Ustic Naturalized Grassland
#> 229 Isohyperthermic Ustic Naturalized Grassland
#> 230 Isohyperthermic Torric Naturalized Grassland
#> 231 Isohyperthermic Ustic Naturalized Grassland
#> 232 Sandy Shrubland
#> 233 Isohyperthermic Ustic Naturalized Grassland
#> 234 Isohyperthermic Torric Naturalized Grassland
#> 235 Isohyperthermic Torric Naturalized Grassland
#> 236 Isohyperthermic Ustic Naturalized Grassland
#> 237 Isohyperthermic Torric Naturalized Grassland
#> 238 Isohyperthermic Ustic Naturalized Grassland
#> 239 Isohyperthermic Torric Naturalized Grassland
#> 240 Isothermic Ustic Naturalized Grassland
#> 241 Isohyperthermic Ustic Naturalized Grassland
#> 242 Isohyperthermic Ustic Naturalized Grassland
#> 243 Isohyperthermic Torric Naturalized Grassland
#> 244 Rocky Isohyperthermic Torric Naturalized Grassland
#> 245 Naturalized Grassland 50 to 90 inch PZ
#> 246 Isohyperthermic Ustic Naturalized Grassland
#> 247 Isohyperthermic Ustic Naturalized Grassland
#> 248 Rocky Isohyperthermic Torric Naturalized Grassland
#> 249 Naturalized Grassland 50 to 90 inch PZ
#> 250 Naturalized Grassland 50 to 90 inch PZ
#> 251 Isothermic Ustic Naturalized Grassland
#> 252 Isohyperthermic Torric Naturalized Grassland
#> 253 Shrink-Swell Clay
#> 254 Isohyperthermic Ustic Naturalized Grassland
#> 255 Isohyperthermic Ustic Naturalized Grassland
#> 256 Isohyperthermic Torric Naturalized Grassland
#> 257 Isohyperthermic Torric Naturalized Grassland
#> 258 Isohyperthermic Ustic Naturalized Grassland
#> 259 Sandy Shrubland
#> 260 Isohyperthermic Ustic Naturalized Grassland
#> 261 Naturalized Grassland 50 to 90 inch PZ
#> 262 Isohyperthermic Torric Naturalized Grassland
#> 263 Isothermic Ustic Naturalized Grassland
#> 264 Isohyperthermic Torric Naturalized Grassland
#> 265 Rocky Isohyperthermic Torric Naturalized Grassland
#> 266 Isohyperthermic Ustic Naturalized Grassland
#> 267 Isohyperthermic Torric Naturalized Grassland
#> 268 Isohyperthermic Torric Naturalized Grassland
#> 269 Isohyperthermic Ustic Naturalized Grassland
#> 270 Isohyperthermic Ustic Naturalized Grassland
#> 271 Isohyperthermic Ustic Naturalized Grassland
#> 272 Isohyperthermic Ustic Naturalized Grassland
#> 273 Isohyperthermic Torric Naturalized Grassland
#> 274 Naturalized Grassland 50 to 90 inch PZ
#> 275 Isohyperthermic Ustic Naturalized Grassland
#> 276 Isohyperthermic Ustic Naturalized Grassland
#> 277 Rocky Isohyperthermic Torric Naturalized Grassland
#> 278 Isohyperthermic Ustic Naturalized Grassland
#> 279 Isohyperthermic Torric Naturalized Grassland
#> 280 Aquisalids Herbland
#> 281 Aquisalids Herbland
#> 282 Shrink-Swell Clay
#> 283 Isohyperthermic Torric Naturalized Grassland
#> 284 Isohyperthermic Torric Naturalized Grassland
#> 285 Isohyperthermic Ustic Naturalized Grassland
#> 286 Isohyperthermic Torric Naturalized Grassland
#> 287 Isohyperthermic Ustic Naturalized Grassland
#> 288 Naturalized Grassland 50 to 90 inch PZ
#> 289 Isohyperthermic Ustic Naturalized Grassland
#> 290 Isohyperthermic Torric Naturalized Grassland
#> 291 Isothermic Ustic Naturalized Grassland
#> 292 Naturalized Grassland 50 to 90 inch PZ
#> 293 Rocky Isohyperthermic Torric Naturalized Grassland
#> 294 Rocky Isohyperthermic Torric Naturalized Grassland
#> 295 Oxidic Dissected Lowland
#> 296 Isohyperthermic Ustic Naturalized Grassland
#> 297 Isohyperthermic Ustic Naturalized Grassland
#> 298 Oxidic Dissected Lowland
#> 299 Isohyperthermic Torric Naturalized Grassland
#> 300 Shrink-Swell Clay
#> 301 Isohyperthermic Torric Naturalized Grassland
#> 302 Naturalized Grassland 50 to 90 inch PZ
#> 303 Isothermic Ustic Naturalized Grassland
#> 304 Oxidic Dissected Lowland
#> 305 Isothermic Ustic Naturalized Grassland
#> 306 Naturalized Grassland 50 to 90 inch PZ
#> 307 Isohyperthermic Torric Naturalized Grassland
#> 308 Flooded Alluvium
#> 309 Isohyperthermic Ustic Naturalized Grassland
#> 310 Shrink-Swell Clay
#> 311 Isothermic Ustic Naturalized Grassland
#> 312 Oxidic Dissected Lowland
#> 313 Oxidic Dissected Lowland
#> 314 South and West Aspect Isohyperthermic Naturalized Grassland
#> 315 Sandy Shrubland
#> 316 Flooded Alluvium
#> 317 Isohyperthermic Ustic Naturalized Grassland
#> 318 Naturalized Grassland 50 to 90 inch PZ
#> 319 Isohyperthermic Ustic Naturalized Grassland
#> 320 Oxidic Dissected Lowland
#> 321 Isothermic Ustic Naturalized Grassland
#> 322 Isohyperthermic Ustic Naturalized Grassland
#> 323 Oxidic Dissected Lowland
#> 324 Oxidic Dissected Lowland
#> 325 Oxidic Dissected Lowland
#> 326 Isohyperthermic Torric Naturalized Grassland
#> 327 Aquic Coastal Wetland
#> 328 Flooded Alluvium
#> 329 Isohyperthermic Ustic Naturalized Grassland
#> 330 Flooded Alluvium
#> 331 Shrink-Swell Clay
#> 332 Oxidic Dissected Lowland
#> 333 Isothermic Ustic Naturalized Grassland
#> 334 Isohyperthermic Torric Naturalized Grassland
#> 335 Flooded Alluvium
#> 336 Oxidic Dissected Lowland
#> 337 Isohyperthermic Torric Naturalized Grassland
#> 338 Oxidic Dissected Lowland
#> 339 Oxidic Dissected Lowland
#> 340 Isothermic Ustic Naturalized Grassland
#> 341 Naturalized Grassland 50 to 90 inch PZ
#> 342 Isothermic Ustic Naturalized Grassland
#> 343 Oxidic Dissected Lowland
#> 344 Naturalized Grassland 50 to 90 inch PZ
#> 345 Isohyperthermic Torric Naturalized Grassland
#> 346 Oxidic Dissected Lowland
#> 347 Isothermic Ustic Naturalized Grassland
#> 348 Aquic Coastal Wetland
#> 349 South and West Aspect Isohyperthermic Naturalized Grassland
#> 350 Isohyperthermic Ustic Naturalized Grassland
#> 351 Shrink-Swell Clay
#> 352 Isohyperthermic Ustic Naturalized Grassland
#> 353 Oxidic Dissected Lowland
#> 354 Sandy Shrubland
#> 355 South and West Aspect Isohyperthermic Naturalized Grassland
#> 356 Isohyperthermic Ustic Naturalized Grassland
#> 357 Oxidic Dissected Lowland
#> 358 Isohyperthermic Ustic Naturalized Grassland
#> 359 Isohyperthermic Ustic Naturalized Grassland
#> 360 Oxidic Dissected Lowland
#> 361 Isohyperthermic Ustic Naturalized Grassland
#> 362 Aquic Coastal Wetland
#> 363 Aquic Coastal Wetland
#> 364 Oxidic Dissected Lowland
#> 365 Rocky Isohyperthermic Torric Naturalized Grassland
#> 366 Isohyperthermic Torric Naturalized Grassland
#> 367 Shrink-Swell Clay
#> 368 Isohyperthermic Torric Naturalized Grassland
#> 369 Isohyperthermic Ustic Naturalized Grassland
#> 370 Isothermic Ustic Naturalized Grassland
#> 371 Isothermic Ustic Naturalized Grassland
#> 372 Flooded Alluvium
#> 373 Naturalized Grassland 50 to 90 inch PZ
#> 374 Isohyperthermic Torric Naturalized Grassland
#> 375 Flooded Alluvium
#> 376 Oxidic Dissected Lowland
#> 377 Oxidic Dissected Lowland
#> 378 Isohyperthermic Ustic Naturalized Grassland
#> 379 Shrink-Swell Clay
#> 380 Oxidic Dissected Lowland
#> 381 Isothermic Ustic Naturalized Grassland
#> 382 Oxidic Dissected Lowland
#> 383 Oxidic Dissected Lowland
#> 384 Poorly Drained Bog
#> 385 Isohyperthermic Ustic Naturalized Grassland
#> 386 Isohyperthermic Torric Naturalized Grassland
#> 387 Naturalized Grassland 50 to 90 inch PZ
#> 388 South and West Aspect Isohyperthermic Naturalized Grassland
#> 389 Oxidic Dissected Lowland
#> 390 Isothermic Ustic Naturalized Grassland
#> 391 Oxidic Dissected Lowland
#> 392 Isohyperthermic Torric Naturalized Grassland
#> 393 Isohyperthermic Ustic Naturalized Grassland
#> 394 South and West Aspect Isohyperthermic Naturalized Grassland
#> 395 Oxidic Dissected Lowland
#> 396 Isohyperthermic Ustic Naturalized Grassland
#> 397 Oxidic Dissected Lowland
#> 398 Aquic Coastal Wetland
#> 399 Aquic Coastal Wetland
#> 400 Oxidic Dissected Lowland
#> 401 Oxidic Dissected Lowland
#> 402 Isohyperthermic Torric Naturalized Grassland
#> 403 Rocky Isohyperthermic Torric Naturalized Grassland
#> 404 Shrink-Swell Clay
#> 405 Isohyperthermic Torric Naturalized Grassland
#> 406 Isohyperthermic Ustic Naturalized Grassland
#> 407 Oxidic Dissected Lowland
#> 408 Isohyperthermic Ustic Naturalized Grassland
#> 409 Isohyperthermic Ustic Naturalized Grassland
#> 410 Isohyperthermic Torric Naturalized Grassland
#> 411 Isohyperthermic Ustic Naturalized Grassland
#> 412 Isohyperthermic Ustic Naturalized Grassland
#> 413 Isothermic Ustic Naturalized Grassland
#> 414 Isothermic Ustic Naturalized Grassland
#> 415 Isohyperthermic Torric Naturalized Grassland
#> 416 Isohyperthermic Torric Naturalized Grassland
#> 417 Isohyperthermic Torric Naturalized Grassland
#> 418 Isohyperthermic Torric Naturalized Grassland
#> 419 Isohyperthermic Ustic Naturalized Grassland
#> 420 Isothermic Ustic Naturalized Grassland
#> 421 Isohyperthermic Ustic Naturalized Grassland
#> 422 Isohyperthermic Torric Naturalized Grassland
#> 423 Isohyperthermic Torric Naturalized Grassland
#> 424 Sandy Shrubland
#> 425 Isohyperthermic Ustic Naturalized Grassland
#> 426 Isohyperthermic Torric Naturalized Grassland
#> 427 Shrink-Swell Clay
#> 428 Isohyperthermic Ustic Naturalized Grassland
#> 429 Isohyperthermic Ustic Naturalized Grassland
#> 430 Isohyperthermic Torric Naturalized Grassland
#> 431 Isothermic Ustic Naturalized Grassland
#> 432 Isothermic Ustic Naturalized Grassland
#> 433 Isothermic Ustic Naturalized Grassland
#> 434 Isohyperthermic Torric Naturalized Grassland
#> 435 South and West Aspect Isohyperthermic Naturalized Grassland
#> 436 Isohyperthermic Ustic Naturalized Grassland
#> 437 Isohyperthermic Ustic Naturalized Grassland
#> 438 Isohyperthermic Ustic Naturalized Grassland
#> 439 Isohyperthermic Torric Naturalized Grassland
#> 440 Isohyperthermic Torric Naturalized Grassland
#> 441 Isothermic Ustic Naturalized Grassland
#> 442 Isohyperthermic Torric Naturalized Grassland
#> 443 Isohyperthermic Torric Naturalized Grassland
#> 444 Isohyperthermic Ustic Naturalized Grassland
#> 445 Isohyperthermic Ustic Naturalized Grassland
#> 446 Isohyperthermic Torric Naturalized Grassland
#> 447 Isohyperthermic Torric Naturalized Grassland
#> 448 Isothermic Ustic Naturalized Grassland
#> 449 Isohyperthermic Torric Naturalized Grassland
#> 450 Isohyperthermic Torric Naturalized Grassland
#> 451 Isohyperthermic Torric Naturalized Grassland
#> 452 Isohyperthermic Torric Naturalized Grassland
#> 453 Oxidic Dissected Lowland
#> 454 Isohyperthermic Ustic Naturalized Grassland
#> 455 Rocky Isothermic Naturalized Grassland
#> 456 Isohyperthermic Ustic Naturalized Grassland
#> 457 Rocky Volcanic Ash Savanna
#> 458 Oxidic Dissected Lowland
#> 459 Sandy Shrubland
#> 460 Isohyperthermic Torric Naturalized Grassland
#> 461 Isohyperthermic Perudic Naturalized Grassland
#> 462 Isohyperthermic Torric Naturalized Grassland
#> 463 Isohyperthermic Torric Naturalized Grassland
#> 464 East Aspect Isohyperthermic Naturalized Grassland
#> 465 Isohyperthermic Udic Naturalized Grassland
#> 466 Isohyperthermic Ustic Naturalized Grassland
#> 467 Isohyperthermic Perudic Naturalized Grassland
#> 468 Rocky Isohyperthermic Torric Naturalized Grassland
#> 469 Rocky Volcanic Ash Savanna
#> 470 Rocky Volcanic Ash Savanna
#> 471 Rocky Volcanic Ash Savanna
#> 472 Isohyperthermic Ustic Naturalized Grassland
#> 473 Oxidic Dissected Lowland
#> 474 East Aspect Isohyperthermic Naturalized Grassland
#> 475 Rocky Isohyperthermic Torric Naturalized Grassland
#> 476 Isohyperthermic Torric Naturalized Grassland
#> 477 Isothermic Ustic Naturalized Grassland
#> 478 Isohyperthermic Torric Naturalized Grassland
#> 479 Isohyperthermic Ustic Naturalized Grassland
#> 480 Isohyperthermic Ustic Naturalized Grassland
#> 481 Naturalized Grassland 50 to 90 inch PZ
#> 482 Isohyperthermic Torric Naturalized Grassland
#> 483 Rocky Isohyperthermic Torric Naturalized Grassland
#> 484 Isothermic Ustic Naturalized Grassland
#> 485 Rocky Isothermic Naturalized Grassland
#> 486 Isohyperthermic Ustic Naturalized Grassland
#> 487 Isohyperthermic Ustic Naturalized Grassland
#> 488 Rocky Alluvium Naturalized Grassland
#> 489 East Aspect Isohyperthermic Naturalized Grassland
#> 490 Sandy Shrubland
#> 491 Sandy Shrubland
#> 492 Isohyperthermic Torric Naturalized Grassland
#> 493 Rocky Isohyperthermic Torric Naturalized Grassland
#> 494 Isohyperthermic Torric Naturalized Grassland
#> 495 Isohyperthermic Torric Naturalized Grassland
#> 496 East Aspect Isohyperthermic Naturalized Grassland
#> 497 East Aspect Isohyperthermic Naturalized Grassland
#> 498 East Aspect Isohyperthermic Naturalized Grassland
#> 499 East Aspect Isohyperthermic Naturalized Grassland
#> 500 Isohyperthermic Ustic Naturalized Grassland
#> 501 Isohyperthermic Torric Naturalized Grassland
#> 502 Isohyperthermic Perudic Naturalized Grassland
#> 503 Rocky Isohyperthermic Torric Naturalized Grassland
#> 504 Oxidic Dissected Lowland
#> 505 Isohyperthermic Torric Naturalized Grassland
#> 506 Sandy Shrubland
#> 507 Isohyperthermic Ustic Naturalized Grassland
#> 508 Rocky Isothermic Naturalized Grassland
#> 509 Rocky Volcanic Ash Savanna
#> 510 East Aspect Isohyperthermic Naturalized Grassland
#> 511 Isohyperthermic Ustic Naturalized Grassland
#> 512 Rocky Isohyperthermic Torric Naturalized Grassland
#> 513 Isohyperthermic Ustic Naturalized Grassland
#> 514 Isothermic Ustic Naturalized Grassland
#> 515 Oxidic Dissected Lowland
#> 516 Oxidic Dissected Lowland
#> 517 Oxidic Dissected Lowland
#> 518 Isohyperthermic Ustic Naturalized Grassland
#> 519 Isohyperthermic Torric Naturalized Grassland
#> 520 Isohyperthermic Udic Naturalized Grassland
#> 521 Isothermic Ustic Naturalized Grassland
#> 522 Naturalized Grassland 50 to 90 inch PZ
#> 523 Oxidic Dissected Lowland
#> 524 Oxidic Dissected Lowland
#> 525 Oxidic Dissected Lowland
#> 526 Isothermic Ustic Naturalized Grassland
#> 527 Isohyperthermic Torric Naturalized Grassland
#> 528 Isohyperthermic Torric Naturalized Grassland
#> 529 Isothermic Ustic Naturalized Grassland
#> 530 Isohyperthermic Ustic Naturalized Grassland
#> 531 Isohyperthermic Ustic Naturalized Grassland
#> 532 Rocky Volcanic Ash Savanna
#> 533 Isohyperthermic Torric Naturalized Grassland
#> 534 Isothermic Ustic Naturalized Grassland
#> 535 Isohyperthermic Torric Naturalized Grassland
#> 536 Rocky Isohyperthermic Torric Naturalized Grassland
#> 537 Isohyperthermic Ustic Naturalized Grassland
#> 538 Isohyperthermic Ustic Naturalized Grassland
#> 539 Isohyperthermic Ustic Naturalized Grassland
#> 540 Rocky Alluvium Naturalized Grassland
#> 541 Rocky Isohyperthermic Torric Naturalized Grassland
#> 542 Isothermic Ustic Naturalized Grassland
#> 543 Oxidic Dissected Lowland
#> 544 Isohyperthermic Torric Naturalized Grassland
#> 545 Isohyperthermic Torric Naturalized Grassland
#> 546 Isohyperthermic Perudic Naturalized Grassland
#> 547 East Aspect Isohyperthermic Naturalized Grassland
#> 548 East Aspect Isohyperthermic Naturalized Grassland
#> 549 Oxidic Dissected Lowland
#> 550 Rocky Isohyperthermic Torric Naturalized Grassland
#> 551 Isohyperthermic Ustic Naturalized Grassland
#> 552 Isohyperthermic Torric Naturalized Grassland
#> 553 Isohyperthermic Torric Naturalized Grassland
#> 554 East Aspect Isohyperthermic Naturalized Grassland
#> 555 Isohyperthermic Perudic Naturalized Grassland
#> 556 Oxidic Dissected Lowland
#> 557 Rocky Isohyperthermic Torric Naturalized Grassland
#> 558 Oxidic Dissected Lowland
#> 559 Aquisalids Herbland
#> 560 Aquisalids Herbland
#> 561 Isohyperthermic Torric Naturalized Grassland
#> 562 Rocky Isothermic Naturalized Grassland
#> 563 Isohyperthermic Ustic Naturalized Grassland
#> 564 Isohyperthermic Ustic Naturalized Grassland
#> 565 Isohyperthermic Udic Naturalized Grassland
#> 566 Isohyperthermic Ustic Naturalized Grassland
#> 567 Rocky Isohyperthermic Torric Naturalized Grassland
#> 568 Isothermic Ustic Naturalized Grassland
#> 569 Isohyperthermic Torric Naturalized Grassland
#> 570 Isohyperthermic Torric Naturalized Grassland
#> 571 Isothermic Ustic Naturalized Grassland
#> 572 Isohyperthermic Ustic Naturalized Grassland
#> 573 Rocky Isohyperthermic Torric Naturalized Grassland
#> 574 Isohyperthermic Torric Naturalized Grassland
#> 575 Rocky Isohyperthermic Torric Naturalized Grassland
#> 576 East Aspect Isohyperthermic Naturalized Grassland
#> 577 Rocky Isohyperthermic Torric Naturalized Grassland
#> 578 Isohyperthermic Ustic Naturalized Grassland
#> 579 Isohyperthermic Ustic Naturalized Grassland
#> 580 Isohyperthermic Ustic Naturalized Grassland
#> 581 Isohyperthermic Torric Naturalized Grassland
#> 582 Naturalized Grassland 50 to 90 inch PZ
#> 583 Isohyperthermic Ustic Naturalized Grassland
#> 584 Oxidic Dissected Lowland
#> 585 Isohyperthermic Ustic Naturalized Grassland
#> 586 Isohyperthermic Ustic Naturalized Grassland
#> 587 Isohyperthermic Ustic Naturalized Grassland
#> 588 Isohyperthermic Ustic Naturalized Grassland
#> 589 Naturalized Grassland 50 to 90 inch PZ
#> 590 Isohyperthermic Ustic Naturalized Grassland
#> 591 Oxidic Dissected Lowland
#> 592 Shrink-Swell Clay
#> 593 Isohyperthermic Ustic Naturalized Grassland
#> 594 Isohyperthermic Ustic Naturalized Grassland
#> 595 Isohyperthermic Ustic Naturalized Grassland
#> 596 Isohyperthermic Torric Naturalized Grassland
#> 597 Oxidic Dissected Lowland
#> 598 Shrink-Swell Clay
#> 599 Isohyperthermic Ustic Naturalized Grassland
#> 600 Isohyperthermic Ustic Naturalized Grassland
#> 601 Oxidic Dissected Lowland
#> 602 Oxidic Dissected Lowland
#> 603 Flooded Alluvium
#> 604 Isohyperthermic Torric Naturalized Grassland
#> 605 South and West Aspect Isohyperthermic Naturalized Grassland
#> 606 Oxidic Dissected Lowland
#> 607 Isohyperthermic Ustic Naturalized Grassland
#> 608 Oxidic Dissected Lowland
#> 609 Isohyperthermic Ustic Naturalized Grassland
#> 610 South and West Aspect Isohyperthermic Naturalized Grassland
#> 611 Sandy Shrubland
#> 612 Isohyperthermic Torric Naturalized Grassland
#> 613 Aquic Coastal Wetland
#> 614 Oxidic Dissected Lowland
#> 615 Shrink-Swell Clay
#> 616 Oxidic Dissected Lowland
#> 617 Isohyperthermic Ustic Naturalized Grassland
#> 618 Isohyperthermic Ustic Naturalized Grassland
#> 619 Isohyperthermic Ustic Naturalized Grassland
#> 620 Isohyperthermic Torric Naturalized Grassland
#> 621 Isohyperthermic Ustic Naturalized Grassland
#> 622 South and West Aspect Isohyperthermic Naturalized Grassland
#> 623 Isohyperthermic Torric Naturalized Grassland
#> 624 Isohyperthermic Ustic Naturalized Grassland
#> 625 Oxidic Dissected Lowland
#> 626 Aquic Coastal Wetland
#> 627 Shrink-Swell Clay
#> 628 South and West Aspect Isohyperthermic Naturalized Grassland
#> 629 Oxidic Dissected Lowland
#> 630 Isohyperthermic Ustic Naturalized Grassland
#> 631 Isohyperthermic Ustic Naturalized Grassland
#> 632 Oxidic Dissected Lowland
#> 633 Isohyperthermic Ustic Naturalized Grassland
#> 634 Shrink-Swell Clay
#> 635 Oxidic Dissected Lowland
#> 636 Isohyperthermic Ustic Naturalized Grassland
#> 637 Shrink-Swell Clay
#> 638 Isohyperthermic Torric Naturalized Grassland
#> 639 Shrink-Swell Clay
#> 640 Naturalized Grassland 50 to 90 inch PZ
#> 641 Isohyperthermic Ustic Naturalized Grassland
#> 642 Isohyperthermic Ustic Naturalized Grassland
#> 643 Oxidic Dissected Lowland
#> 644 Isohyperthermic Ustic Naturalized Grassland
#> 645 Isohyperthermic Ustic Naturalized Grassland
#> 646 Isohyperthermic Torric Naturalized Grassland
#> 647 Isohyperthermic Ustic Naturalized Grassland
#> 648 Isohyperthermic Ustic Naturalized Grassland
#> 649 Isohyperthermic Torric Naturalized Grassland
#> 650 Isohyperthermic Ustic Naturalized Grassland
#> 651 Shrink-Swell Clay
#> 652 Sandy Shrubland
#> 653 Oxidic Dissected Lowland
#> 654 Isohyperthermic Ustic Naturalized Grassland
#> 655 Isohyperthermic Torric Naturalized Grassland
#> 656 Aquic Coastal Wetland
#> 657 Aquic Coastal Wetland
#> 658 Oxidic Dissected Lowland
#> 659 Isohyperthermic Ustic Naturalized Grassland
#> 660 South and West Aspect Isohyperthermic Naturalized Grassland
#> 661 Shrink-Swell Clay
#> 662 Isohyperthermic Torric Naturalized Grassland
#> 663 Isohyperthermic Torric Naturalized Grassland
#> 664 Shrink-Swell Clay
#> 665 Flooded Alluvium
#> 666 Oxidic Dissected Lowland
#> 667 Isohyperthermic Ustic Naturalized Grassland
#> 668 Oxidic Dissected Lowland
#> 669 Oxidic Dissected Lowland
#> 670 Oxidic Dissected Lowland
#> 671 Isohyperthermic Ustic Naturalized Grassland
#> 672 Isohyperthermic Ustic Naturalized Grassland
#> 673 Isohyperthermic Torric Naturalized Grassland
#> 674 Aquic Coastal Wetland
#> 675 Oxidic Dissected Lowland
#> 676 Isohyperthermic Ustic Naturalized Grassland
#> 677 Isohyperthermic Ustic Naturalized Grassland
#> 678 Isohyperthermic Ustic Naturalized Grassland
#> 679 Isohyperthermic Ustic Naturalized Grassland
#> 680 Isohyperthermic Ustic Naturalized Grassland
#> 681 Isohyperthermic Ustic Naturalized Grassland
#> 682 Naturalized Grassland 50 to 90 inch PZ
#> 683 Naturalized Grassland 50 to 90 inch PZ
#> 684 Isohyperthermic Ustic Naturalized Grassland
#> 685 Isohyperthermic Ustic Naturalized Grassland
#> 686 South and West Aspect Isohyperthermic Naturalized Grassland
#> 687 Isohyperthermic Ustic Naturalized Grassland
#> 688 Isohyperthermic Ustic Naturalized Grassland
#> 689 Flooded Alluvium
#> 690 Oxidic Dissected Lowland
#> 691 Oxidic Dissected Lowland
#> 692 Isohyperthermic Ustic Naturalized Grassland
#> 693 Aquic Coastal Wetland
#> 694 Isohyperthermic Torric Naturalized Grassland
#> 695 Oxidic Dissected Lowland
#> 696 Isohyperthermic Ustic Naturalized Grassland
#> 697 Isohyperthermic Ustic Naturalized Grassland
#> 698 Isohyperthermic Ustic Naturalized Grassland
#> 699 Isohyperthermic Ustic Naturalized Grassland
#> 700 Isohyperthermic Torric Naturalized Grassland
#> 701 Oxidic Dissected Lowland
#> 702 Flooded Alluvium
#> 703 Oxidic Dissected Lowland
#> 704 Isohyperthermic Ustic Naturalized Grassland
#> 705 Shrink-Swell Clay
#> 706 Shrink-Swell Clay
#> 707 Oxidic Dissected Lowland
#> 708 Isohyperthermic Torric Naturalized Grassland
#> 709 Isohyperthermic Ustic Naturalized Grassland
#> 710 Shrink-Swell Clay
#> 711 Oxidic Dissected Lowland
#> 712 Isohyperthermic Ustic Naturalized Grassland
#> 713 Shrink-Swell Clay
#> 714 Isohyperthermic Torric Naturalized Grassland
#> 715 Isohyperthermic Ustic Naturalized Grassland
#> 716 South and West Aspect Isohyperthermic Naturalized Grassland
#> 717 Shrink-Swell Clay
#> 718 Isohyperthermic Ustic Naturalized Grassland
#> 719 Isohyperthermic Ustic Naturalized Grassland
#> 720 Isohyperthermic Ustic Naturalized Grassland
#> 721 Isohyperthermic Torric Naturalized Grassland
#> 722 Aquic Coastal Wetland
#> 723 Aquic Coastal Wetland
#> 724 Oxidic Dissected Lowland
#> 725 Isohyperthermic Ustic Naturalized Grassland
#> ecoclasstypename ecoclassref
#> 1 NRCS Rangeland Site Ecological Site Description Database
#> 2 NRCS Rangeland Site Ecological Site Description Database
#> 3 NRCS Rangeland Site Ecological Site Description Database
#> 4 NRCS Rangeland Site Ecological Site Description Database
#> 5 NRCS Rangeland Site Ecological Site Description Database
#> 6 NRCS Rangeland Site Ecological Site Description Database
#> 7 NRCS Rangeland Site Ecological Site Description Database
#> 8 NRCS Rangeland Site Ecological Site Description Database
#> 9 NRCS Rangeland Site Ecological Site Description Database
#> 10 NRCS Rangeland Site Ecological Site Description Database
#> 11 NRCS Rangeland Site Ecological Site Description Database
#> 12 NRCS Rangeland Site Ecological Site Description Database
#> 13 NRCS Rangeland Site Ecological Site Description Database
#> 14 NRCS Rangeland Site Ecological Site Description Database
#> 15 NRCS Rangeland Site Ecological Site Description Database
#> 16 NRCS Rangeland Site Ecological Site Description Database
#> 17 NRCS Rangeland Site Ecological Site Description Database
#> 18 NRCS Rangeland Site Ecological Site Description Database
#> 19 NRCS Rangeland Site Ecological Site Description Database
#> 20 NRCS Rangeland Site Ecological Site Description Database
#> 21 NRCS Rangeland Site Ecological Site Description Database
#> 22 NRCS Rangeland Site Ecological Site Description Database
#> 23 NRCS Rangeland Site Ecological Site Description Database
#> 24 NRCS Rangeland Site Ecological Site Description Database
#> 25 NRCS Rangeland Site Ecological Site Description Database
#> 26 NRCS Rangeland Site Ecological Site Description Database
#> 27 NRCS Rangeland Site Ecological Site Description Database
#> 28 NRCS Rangeland Site Ecological Site Description Database
#> 29 NRCS Rangeland Site Ecological Site Description Database
#> 30 NRCS Rangeland Site Ecological Site Description Database
#> 31 NRCS Rangeland Site Ecological Site Description Database
#> 32 NRCS Rangeland Site Ecological Site Description Database
#> 33 NRCS Rangeland Site Ecological Site Description Database
#> 34 NRCS Rangeland Site Ecological Site Description Database
#> 35 NRCS Rangeland Site Ecological Site Description Database
#> 36 NRCS Rangeland Site Ecological Site Description Database
#> 37 NRCS Rangeland Site Ecological Site Description Database
#> 38 NRCS Rangeland Site Ecological Site Description Database
#> 39 NRCS Rangeland Site Ecological Site Description Database
#> 40 NRCS Rangeland Site Ecological Site Description Database
#> 41 NRCS Rangeland Site Ecological Site Description Database
#> 42 NRCS Rangeland Site Ecological Site Description Database
#> 43 NRCS Rangeland Site Ecological Site Description Database
#> 44 NRCS Rangeland Site Ecological Site Description Database
#> 45 NRCS Rangeland Site Ecological Site Description Database
#> 46 NRCS Rangeland Site Ecological Site Description Database
#> 47 NRCS Rangeland Site Ecological Site Description Database
#> 48 NRCS Rangeland Site Ecological Site Description Database
#> 49 NRCS Rangeland Site Ecological Site Description Database
#> 50 NRCS Rangeland Site Ecological Site Description Database
#> 51 NRCS Rangeland Site Ecological Site Description Database
#> 52 NRCS Rangeland Site Ecological Site Description Database
#> 53 NRCS Rangeland Site Ecological Site Description Database
#> 54 NRCS Rangeland Site Ecological Site Description Database
#> 55 NRCS Rangeland Site Ecological Site Description Database
#> 56 NRCS Rangeland Site Ecological Site Description Database
#> 57 NRCS Rangeland Site Ecological Site Description Database
#> 58 NRCS Rangeland Site Ecological Site Description Database
#> 59 NRCS Rangeland Site Ecological Site Description Database
#> 60 NRCS Rangeland Site Ecological Site Description Database
#> 61 NRCS Rangeland Site Ecological Site Description Database
#> 62 NRCS Rangeland Site Ecological Site Description Database
#> 63 NRCS Rangeland Site Ecological Site Description Database
#> 64 NRCS Rangeland Site Ecological Site Description Database
#> 65 NRCS Rangeland Site Ecological Site Description Database
#> 66 NRCS Rangeland Site Ecological Site Description Database
#> 67 NRCS Rangeland Site Ecological Site Description Database
#> 68 NRCS Rangeland Site Ecological Site Description Database
#> 69 NRCS Rangeland Site Ecological Site Description Database
#> 70 NRCS Rangeland Site Ecological Site Description Database
#> 71 NRCS Rangeland Site Ecological Site Description Database
#> 72 NRCS Rangeland Site Ecological Site Description Database
#> 73 NRCS Rangeland Site Ecological Site Description Database
#> 74 NRCS Rangeland Site Ecological Site Description Database
#> 75 NRCS Rangeland Site Ecological Site Description Database
#> 76 NRCS Rangeland Site Ecological Site Description Database
#> 77 NRCS Rangeland Site Ecological Site Description Database
#> 78 NRCS Rangeland Site Ecological Site Description Database
#> 79 NRCS Rangeland Site Ecological Site Description Database
#> 80 NRCS Rangeland Site Ecological Site Description Database
#> 81 NRCS Rangeland Site Ecological Site Description Database
#> 82 NRCS Rangeland Site Ecological Site Description Database
#> 83 NRCS Rangeland Site Ecological Site Description Database
#> 84 NRCS Rangeland Site Ecological Site Description Database
#> 85 NRCS Rangeland Site Ecological Site Description Database
#> 86 NRCS Rangeland Site Ecological Site Description Database
#> 87 NRCS Rangeland Site Ecological Site Description Database
#> 88 NRCS Rangeland Site Ecological Site Description Database
#> 89 NRCS Rangeland Site Ecological Site Description Database
#> 90 NRCS Rangeland Site Ecological Site Description Database
#> 91 NRCS Rangeland Site Ecological Site Description Database
#> 92 NRCS Rangeland Site Ecological Site Description Database
#> 93 NRCS Rangeland Site Ecological Site Description Database
#> 94 NRCS Rangeland Site Ecological Site Description Database
#> 95 NRCS Rangeland Site Ecological Site Description Database
#> 96 NRCS Rangeland Site Ecological Site Description Database
#> 97 NRCS Rangeland Site Ecological Site Description Database
#> 98 NRCS Rangeland Site Ecological Site Description Database
#> 99 NRCS Rangeland Site Ecological Site Description Database
#> 100 NRCS Rangeland Site Ecological Site Description Database
#> 101 NRCS Rangeland Site Ecological Site Description Database
#> 102 NRCS Rangeland Site Ecological Site Description Database
#> 103 NRCS Rangeland Site Ecological Site Description Database
#> 104 NRCS Rangeland Site Ecological Site Description Database
#> 105 NRCS Rangeland Site Ecological Site Description Database
#> 106 NRCS Rangeland Site Ecological Site Description Database
#> 107 NRCS Rangeland Site Ecological Site Description Database
#> 108 NRCS Rangeland Site Ecological Site Description Database
#> 109 NRCS Rangeland Site Ecological Site Description Database
#> 110 NRCS Rangeland Site Ecological Site Description Database
#> 111 NRCS Rangeland Site Ecological Site Description Database
#> 112 NRCS Rangeland Site Ecological Site Description Database
#> 113 NRCS Rangeland Site Ecological Site Description Database
#> 114 NRCS Rangeland Site Ecological Site Description Database
#> 115 NRCS Rangeland Site Ecological Site Description Database
#> 116 NRCS Rangeland Site Ecological Site Description Database
#> 117 NRCS Rangeland Site Ecological Site Description Database
#> 118 NRCS Rangeland Site Ecological Site Description Database
#> 119 NRCS Rangeland Site Ecological Site Description Database
#> 120 NRCS Rangeland Site Ecological Site Description Database
#> 121 NRCS Rangeland Site Ecological Site Description Database
#> 122 NRCS Rangeland Site Ecological Site Description Database
#> 123 NRCS Rangeland Site Ecological Site Description Database
#> 124 NRCS Rangeland Site Ecological Site Description Database
#> 125 NRCS Rangeland Site Ecological Site Description Database
#> 126 NRCS Rangeland Site Ecological Site Description Database
#> 127 NRCS Rangeland Site Ecological Site Description Database
#> 128 NRCS Rangeland Site Ecological Site Description Database
#> 129 NRCS Rangeland Site Ecological Site Description Database
#> 130 NRCS Rangeland Site Ecological Site Description Database
#> 131 NRCS Rangeland Site Ecological Site Description Database
#> 132 NRCS Rangeland Site Ecological Site Description Database
#> 133 NRCS Rangeland Site Ecological Site Description Database
#> 134 NRCS Rangeland Site Ecological Site Description Database
#> 135 NRCS Rangeland Site Ecological Site Description Database
#> 136 NRCS Rangeland Site Ecological Site Description Database
#> 137 NRCS Rangeland Site Ecological Site Description Database
#> 138 NRCS Rangeland Site Ecological Site Description Database
#> 139 NRCS Rangeland Site Ecological Site Description Database
#> 140 NRCS Rangeland Site Ecological Site Description Database
#> 141 NRCS Rangeland Site Ecological Site Description Database
#> 142 NRCS Rangeland Site Ecological Site Description Database
#> 143 NRCS Rangeland Site Ecological Site Description Database
#> 144 NRCS Rangeland Site Ecological Site Description Database
#> 145 NRCS Rangeland Site Ecological Site Description Database
#> 146 NRCS Rangeland Site Ecological Site Description Database
#> 147 NRCS Rangeland Site Ecological Site Description Database
#> 148 NRCS Rangeland Site Ecological Site Description Database
#> 149 NRCS Rangeland Site Ecological Site Description Database
#> 150 NRCS Rangeland Site Ecological Site Description Database
#> 151 NRCS Rangeland Site Ecological Site Description Database
#> 152 NRCS Rangeland Site Ecological Site Description Database
#> 153 NRCS Rangeland Site Ecological Site Description Database
#> 154 NRCS Rangeland Site Ecological Site Description Database
#> 155 NRCS Rangeland Site Ecological Site Description Database
#> 156 NRCS Rangeland Site Ecological Site Description Database
#> 157 NRCS Rangeland Site Ecological Site Description Database
#> 158 NRCS Rangeland Site Ecological Site Description Database
#> 159 NRCS Rangeland Site Ecological Site Description Database
#> 160 NRCS Rangeland Site Ecological Site Description Database
#> 161 NRCS Rangeland Site Ecological Site Description Database
#> 162 NRCS Rangeland Site Ecological Site Description Database
#> 163 NRCS Rangeland Site Ecological Site Description Database
#> 164 NRCS Rangeland Site Ecological Site Description Database
#> 165 NRCS Rangeland Site Ecological Site Description Database
#> 166 NRCS Rangeland Site Ecological Site Description Database
#> 167 NRCS Rangeland Site Ecological Site Description Database
#> 168 NRCS Rangeland Site Ecological Site Description Database
#> 169 NRCS Rangeland Site Ecological Site Description Database
#> 170 NRCS Rangeland Site Ecological Site Description Database
#> 171 NRCS Rangeland Site Ecological Site Description Database
#> 172 NRCS Rangeland Site Ecological Site Description Database
#> 173 NRCS Rangeland Site Ecological Site Description Database
#> 174 NRCS Rangeland Site Ecological Site Description Database
#> 175 NRCS Rangeland Site Ecological Site Description Database
#> 176 NRCS Rangeland Site Ecological Site Description Database
#> 177 NRCS Rangeland Site Ecological Site Description Database
#> 178 NRCS Rangeland Site Ecological Site Description Database
#> 179 NRCS Rangeland Site Ecological Site Description Database
#> 180 NRCS Rangeland Site Ecological Site Description Database
#> 181 NRCS Rangeland Site Ecological Site Description Database
#> 182 NRCS Rangeland Site Ecological Site Description Database
#> 183 NRCS Rangeland Site Ecological Site Description Database
#> 184 NRCS Rangeland Site Ecological Site Description Database
#> 185 NRCS Rangeland Site Ecological Site Description Database
#> 186 NRCS Rangeland Site Ecological Site Description Database
#> 187 NRCS Rangeland Site Ecological Site Description Database
#> 188 NRCS Rangeland Site Ecological Site Description Database
#> 189 NRCS Rangeland Site Ecological Site Description Database
#> 190 NRCS Rangeland Site Ecological Site Description Database
#> 191 NRCS Rangeland Site Ecological Site Description Database
#> 192 NRCS Rangeland Site Ecological Site Description Database
#> 193 NRCS Rangeland Site Ecological Site Description Database
#> 194 NRCS Rangeland Site Ecological Site Description Database
#> 195 NRCS Rangeland Site Ecological Site Description Database
#> 196 NRCS Rangeland Site Ecological Site Description Database
#> 197 NRCS Rangeland Site Ecological Site Description Database
#> 198 NRCS Rangeland Site Ecological Site Description Database
#> 199 NRCS Rangeland Site Ecological Site Description Database
#> 200 NRCS Rangeland Site Ecological Site Description Database
#> 201 NRCS Rangeland Site Ecological Site Description Database
#> 202 NRCS Rangeland Site Ecological Site Description Database
#> 203 NRCS Rangeland Site Ecological Site Description Database
#> 204 NRCS Rangeland Site Ecological Site Description Database
#> 205 NRCS Rangeland Site Ecological Site Description Database
#> 206 NRCS Rangeland Site Ecological Site Description Database
#> 207 NRCS Rangeland Site Ecological Site Description Database
#> 208 NRCS Rangeland Site Ecological Site Description Database
#> 209 NRCS Rangeland Site Ecological Site Description Database
#> 210 NRCS Rangeland Site Ecological Site Description Database
#> 211 NRCS Rangeland Site Ecological Site Description Database
#> 212 NRCS Rangeland Site Ecological Site Description Database
#> 213 NRCS Rangeland Site Ecological Site Description Database
#> 214 NRCS Rangeland Site Ecological Site Description Database
#> 215 NRCS Rangeland Site Ecological Site Description Database
#> 216 NRCS Rangeland Site Ecological Site Description Database
#> 217 NRCS Rangeland Site Ecological Site Description Database
#> 218 NRCS Rangeland Site Ecological Site Description Database
#> 219 NRCS Rangeland Site Ecological Site Description Database
#> 220 NRCS Rangeland Site Ecological Site Description Database
#> 221 NRCS Rangeland Site Ecological Site Description Database
#> 222 NRCS Rangeland Site Ecological Site Description Database
#> 223 NRCS Rangeland Site Ecological Site Description Database
#> 224 NRCS Rangeland Site Ecological Site Description Database
#> 225 NRCS Rangeland Site Ecological Site Description Database
#> 226 NRCS Rangeland Site Ecological Site Description Database
#> 227 NRCS Rangeland Site Ecological Site Description Database
#> 228 NRCS Rangeland Site Ecological Site Description Database
#> 229 NRCS Rangeland Site Ecological Site Description Database
#> 230 NRCS Rangeland Site Ecological Site Description Database
#> 231 NRCS Rangeland Site Ecological Site Description Database
#> 232 NRCS Rangeland Site Ecological Site Description Database
#> 233 NRCS Rangeland Site Ecological Site Description Database
#> 234 NRCS Rangeland Site Ecological Site Description Database
#> 235 NRCS Rangeland Site Ecological Site Description Database
#> 236 NRCS Rangeland Site Ecological Site Description Database
#> 237 NRCS Rangeland Site Ecological Site Description Database
#> 238 NRCS Rangeland Site Ecological Site Description Database
#> 239 NRCS Rangeland Site Ecological Site Description Database
#> 240 NRCS Rangeland Site Ecological Site Description Database
#> 241 NRCS Rangeland Site Ecological Site Description Database
#> 242 NRCS Rangeland Site Ecological Site Description Database
#> 243 NRCS Rangeland Site Ecological Site Description Database
#> 244 NRCS Rangeland Site Ecological Site Description Database
#> 245 NRCS Rangeland Site Ecological Site Description Database
#> 246 NRCS Rangeland Site Ecological Site Description Database
#> 247 NRCS Rangeland Site Ecological Site Description Database
#> 248 NRCS Rangeland Site Ecological Site Description Database
#> 249 NRCS Rangeland Site Ecological Site Description Database
#> 250 NRCS Rangeland Site Ecological Site Description Database
#> 251 NRCS Rangeland Site Ecological Site Description Database
#> 252 NRCS Rangeland Site Ecological Site Description Database
#> 253 NRCS Rangeland Site Ecological Site Description Database
#> 254 NRCS Rangeland Site Ecological Site Description Database
#> 255 NRCS Rangeland Site Ecological Site Description Database
#> 256 NRCS Rangeland Site Ecological Site Description Database
#> 257 NRCS Rangeland Site Ecological Site Description Database
#> 258 NRCS Rangeland Site Ecological Site Description Database
#> 259 NRCS Rangeland Site Ecological Site Description Database
#> 260 NRCS Rangeland Site Ecological Site Description Database
#> 261 NRCS Rangeland Site Ecological Site Description Database
#> 262 NRCS Rangeland Site Ecological Site Description Database
#> 263 NRCS Rangeland Site Ecological Site Description Database
#> 264 NRCS Rangeland Site Ecological Site Description Database
#> 265 NRCS Rangeland Site Ecological Site Description Database
#> 266 NRCS Rangeland Site Ecological Site Description Database
#> 267 NRCS Rangeland Site Ecological Site Description Database
#> 268 NRCS Rangeland Site Ecological Site Description Database
#> 269 NRCS Rangeland Site Ecological Site Description Database
#> 270 NRCS Rangeland Site Ecological Site Description Database
#> 271 NRCS Rangeland Site Ecological Site Description Database
#> 272 NRCS Rangeland Site Ecological Site Description Database
#> 273 NRCS Rangeland Site Ecological Site Description Database
#> 274 NRCS Rangeland Site Ecological Site Description Database
#> 275 NRCS Rangeland Site Ecological Site Description Database
#> 276 NRCS Rangeland Site Ecological Site Description Database
#> 277 NRCS Rangeland Site Ecological Site Description Database
#> 278 NRCS Rangeland Site Ecological Site Description Database
#> 279 NRCS Rangeland Site Ecological Site Description Database
#> 280 NRCS Rangeland Site Ecological Site Description Database
#> 281 NRCS Rangeland Site Ecological Site Description Database
#> 282 NRCS Rangeland Site Ecological Site Description Database
#> 283 NRCS Rangeland Site Ecological Site Description Database
#> 284 NRCS Rangeland Site Ecological Site Description Database
#> 285 NRCS Rangeland Site Ecological Site Description Database
#> 286 NRCS Rangeland Site Ecological Site Description Database
#> 287 NRCS Rangeland Site Ecological Site Description Database
#> 288 NRCS Rangeland Site Ecological Site Description Database
#> 289 NRCS Rangeland Site Ecological Site Description Database
#> 290 NRCS Rangeland Site Ecological Site Description Database
#> 291 NRCS Rangeland Site Ecological Site Description Database
#> 292 NRCS Rangeland Site Ecological Site Description Database
#> 293 NRCS Rangeland Site Ecological Site Description Database
#> 294 NRCS Rangeland Site Ecological Site Description Database
#> 295 NRCS Rangeland Site Ecological Site Description Database
#> 296 NRCS Rangeland Site Ecological Site Description Database
#> 297 NRCS Rangeland Site Ecological Site Description Database
#> 298 NRCS Rangeland Site Ecological Site Description Database
#> 299 NRCS Rangeland Site Ecological Site Description Database
#> 300 NRCS Rangeland Site Ecological Site Description Database
#> 301 NRCS Rangeland Site Ecological Site Description Database
#> 302 NRCS Rangeland Site Ecological Site Description Database
#> 303 NRCS Rangeland Site Ecological Site Description Database
#> 304 NRCS Rangeland Site Ecological Site Description Database
#> 305 NRCS Rangeland Site Ecological Site Description Database
#> 306 NRCS Rangeland Site Ecological Site Description Database
#> 307 NRCS Rangeland Site Ecological Site Description Database
#> 308 NRCS Rangeland Site Ecological Site Description Database
#> 309 NRCS Rangeland Site Ecological Site Description Database
#> 310 NRCS Rangeland Site Ecological Site Description Database
#> 311 NRCS Rangeland Site Ecological Site Description Database
#> 312 NRCS Rangeland Site Ecological Site Description Database
#> 313 NRCS Rangeland Site Ecological Site Description Database
#> 314 NRCS Rangeland Site Ecological Site Description Database
#> 315 NRCS Rangeland Site Ecological Site Description Database
#> 316 NRCS Rangeland Site Ecological Site Description Database
#> 317 NRCS Rangeland Site Ecological Site Description Database
#> 318 NRCS Rangeland Site Ecological Site Description Database
#> 319 NRCS Rangeland Site Ecological Site Description Database
#> 320 NRCS Rangeland Site Ecological Site Description Database
#> 321 NRCS Rangeland Site Ecological Site Description Database
#> 322 NRCS Rangeland Site Ecological Site Description Database
#> 323 NRCS Rangeland Site Ecological Site Description Database
#> 324 NRCS Rangeland Site Ecological Site Description Database
#> 325 NRCS Rangeland Site Ecological Site Description Database
#> 326 NRCS Rangeland Site Ecological Site Description Database
#> 327 NRCS Rangeland Site Ecological Site Description Database
#> 328 NRCS Rangeland Site Ecological Site Description Database
#> 329 NRCS Rangeland Site Ecological Site Description Database
#> 330 NRCS Rangeland Site Ecological Site Description Database
#> 331 NRCS Rangeland Site Ecological Site Description Database
#> 332 NRCS Rangeland Site Ecological Site Description Database
#> 333 NRCS Rangeland Site Ecological Site Description Database
#> 334 NRCS Rangeland Site Ecological Site Description Database
#> 335 NRCS Rangeland Site Ecological Site Description Database
#> 336 NRCS Rangeland Site Ecological Site Description Database
#> 337 NRCS Rangeland Site Ecological Site Description Database
#> 338 NRCS Rangeland Site Ecological Site Description Database
#> 339 NRCS Rangeland Site Ecological Site Description Database
#> 340 NRCS Rangeland Site Ecological Site Description Database
#> 341 NRCS Rangeland Site Ecological Site Description Database
#> 342 NRCS Rangeland Site Ecological Site Description Database
#> 343 NRCS Rangeland Site Ecological Site Description Database
#> 344 NRCS Rangeland Site Ecological Site Description Database
#> 345 NRCS Rangeland Site Ecological Site Description Database
#> 346 NRCS Rangeland Site Ecological Site Description Database
#> 347 NRCS Rangeland Site Ecological Site Description Database
#> 348 NRCS Rangeland Site Ecological Site Description Database
#> 349 NRCS Rangeland Site Ecological Site Description Database
#> 350 NRCS Rangeland Site Ecological Site Description Database
#> 351 NRCS Rangeland Site Ecological Site Description Database
#> 352 NRCS Rangeland Site Ecological Site Description Database
#> 353 NRCS Rangeland Site Ecological Site Description Database
#> 354 NRCS Rangeland Site Ecological Site Description Database
#> 355 NRCS Rangeland Site Ecological Site Description Database
#> 356 NRCS Rangeland Site Ecological Site Description Database
#> 357 NRCS Rangeland Site Ecological Site Description Database
#> 358 NRCS Rangeland Site Ecological Site Description Database
#> 359 NRCS Rangeland Site Ecological Site Description Database
#> 360 NRCS Rangeland Site Ecological Site Description Database
#> 361 NRCS Rangeland Site Ecological Site Description Database
#> 362 NRCS Rangeland Site Ecological Site Description Database
#> 363 NRCS Rangeland Site Ecological Site Description Database
#> 364 NRCS Rangeland Site Ecological Site Description Database
#> 365 NRCS Rangeland Site Ecological Site Description Database
#> 366 NRCS Rangeland Site Ecological Site Description Database
#> 367 NRCS Rangeland Site Ecological Site Description Database
#> 368 NRCS Rangeland Site Ecological Site Description Database
#> 369 NRCS Rangeland Site Ecological Site Description Database
#> 370 NRCS Rangeland Site Ecological Site Description Database
#> 371 NRCS Rangeland Site Ecological Site Description Database
#> 372 NRCS Rangeland Site Ecological Site Description Database
#> 373 NRCS Rangeland Site Ecological Site Description Database
#> 374 NRCS Rangeland Site Ecological Site Description Database
#> 375 NRCS Rangeland Site Ecological Site Description Database
#> 376 NRCS Rangeland Site Ecological Site Description Database
#> 377 NRCS Rangeland Site Ecological Site Description Database
#> 378 NRCS Rangeland Site Ecological Site Description Database
#> 379 NRCS Rangeland Site Ecological Site Description Database
#> 380 NRCS Rangeland Site Ecological Site Description Database
#> 381 NRCS Rangeland Site Ecological Site Description Database
#> 382 NRCS Rangeland Site Ecological Site Description Database
#> 383 NRCS Rangeland Site Ecological Site Description Database
#> 384 NRCS Rangeland Site Ecological Site Description Database
#> 385 NRCS Rangeland Site Ecological Site Description Database
#> 386 NRCS Rangeland Site Ecological Site Description Database
#> 387 NRCS Rangeland Site Ecological Site Description Database
#> 388 NRCS Rangeland Site Ecological Site Description Database
#> 389 NRCS Rangeland Site Ecological Site Description Database
#> 390 NRCS Rangeland Site Ecological Site Description Database
#> 391 NRCS Rangeland Site Ecological Site Description Database
#> 392 NRCS Rangeland Site Ecological Site Description Database
#> 393 NRCS Rangeland Site Ecological Site Description Database
#> 394 NRCS Rangeland Site Ecological Site Description Database
#> 395 NRCS Rangeland Site Ecological Site Description Database
#> 396 NRCS Rangeland Site Ecological Site Description Database
#> 397 NRCS Rangeland Site Ecological Site Description Database
#> 398 NRCS Rangeland Site Ecological Site Description Database
#> 399 NRCS Rangeland Site Ecological Site Description Database
#> 400 NRCS Rangeland Site Ecological Site Description Database
#> 401 NRCS Rangeland Site Ecological Site Description Database
#> 402 NRCS Rangeland Site Ecological Site Description Database
#> 403 NRCS Rangeland Site Ecological Site Description Database
#> 404 NRCS Rangeland Site Ecological Site Description Database
#> 405 NRCS Rangeland Site Ecological Site Description Database
#> 406 NRCS Rangeland Site Ecological Site Description Database
#> 407 NRCS Rangeland Site Ecological Site Description Database
#> 408 NRCS Rangeland Site Ecological Site Description Database
#> 409 NRCS Rangeland Site Ecological Site Description Database
#> 410 NRCS Rangeland Site Ecological Site Description Database
#> 411 NRCS Rangeland Site Ecological Site Description Database
#> 412 NRCS Rangeland Site Ecological Site Description Database
#> 413 NRCS Rangeland Site Ecological Site Description Database
#> 414 NRCS Rangeland Site Ecological Site Description Database
#> 415 NRCS Rangeland Site Ecological Site Description Database
#> 416 NRCS Rangeland Site Ecological Site Description Database
#> 417 NRCS Rangeland Site Ecological Site Description Database
#> 418 NRCS Rangeland Site Ecological Site Description Database
#> 419 NRCS Rangeland Site Ecological Site Description Database
#> 420 NRCS Rangeland Site Ecological Site Description Database
#> 421 NRCS Rangeland Site Ecological Site Description Database
#> 422 NRCS Rangeland Site Ecological Site Description Database
#> 423 NRCS Rangeland Site Ecological Site Description Database
#> 424 NRCS Rangeland Site Ecological Site Description Database
#> 425 NRCS Rangeland Site Ecological Site Description Database
#> 426 NRCS Rangeland Site Ecological Site Description Database
#> 427 NRCS Rangeland Site Ecological Site Description Database
#> 428 NRCS Rangeland Site Ecological Site Description Database
#> 429 NRCS Rangeland Site Ecological Site Description Database
#> 430 NRCS Rangeland Site Ecological Site Description Database
#> 431 NRCS Rangeland Site Ecological Site Description Database
#> 432 NRCS Rangeland Site Ecological Site Description Database
#> 433 NRCS Rangeland Site Ecological Site Description Database
#> 434 NRCS Rangeland Site Ecological Site Description Database
#> 435 NRCS Rangeland Site Ecological Site Description Database
#> 436 NRCS Rangeland Site Ecological Site Description Database
#> 437 NRCS Rangeland Site Ecological Site Description Database
#> 438 NRCS Rangeland Site Ecological Site Description Database
#> 439 NRCS Rangeland Site Ecological Site Description Database
#> 440 NRCS Rangeland Site Ecological Site Description Database
#> 441 NRCS Rangeland Site Ecological Site Description Database
#> 442 NRCS Rangeland Site Ecological Site Description Database
#> 443 NRCS Rangeland Site Ecological Site Description Database
#> 444 NRCS Rangeland Site Ecological Site Description Database
#> 445 NRCS Rangeland Site Ecological Site Description Database
#> 446 NRCS Rangeland Site Ecological Site Description Database
#> 447 NRCS Rangeland Site Ecological Site Description Database
#> 448 NRCS Rangeland Site Ecological Site Description Database
#> 449 NRCS Rangeland Site Ecological Site Description Database
#> 450 NRCS Rangeland Site Ecological Site Description Database
#> 451 NRCS Rangeland Site Ecological Site Description Database
#> 452 NRCS Rangeland Site Ecological Site Description Database
#> 453 NRCS Rangeland Site Ecological Site Description Database
#> 454 NRCS Rangeland Site Ecological Site Description Database
#> 455 NRCS Rangeland Site Ecological Site Description Database
#> 456 NRCS Rangeland Site Ecological Site Description Database
#> 457 NRCS Rangeland Site Ecological Site Description Database
#> 458 NRCS Rangeland Site Ecological Site Description Database
#> 459 NRCS Rangeland Site Ecological Site Description Database
#> 460 NRCS Rangeland Site Ecological Site Description Database
#> 461 NRCS Rangeland Site Ecological Site Description Database
#> 462 NRCS Rangeland Site Ecological Site Description Database
#> 463 NRCS Rangeland Site Ecological Site Description Database
#> 464 NRCS Rangeland Site Ecological Site Description Database
#> 465 NRCS Rangeland Site Ecological Site Description Database
#> 466 NRCS Rangeland Site Ecological Site Description Database
#> 467 NRCS Rangeland Site Ecological Site Description Database
#> 468 NRCS Rangeland Site Ecological Site Description Database
#> 469 NRCS Rangeland Site Ecological Site Description Database
#> 470 NRCS Rangeland Site Ecological Site Description Database
#> 471 NRCS Rangeland Site Ecological Site Description Database
#> 472 NRCS Rangeland Site Ecological Site Description Database
#> 473 NRCS Rangeland Site Ecological Site Description Database
#> 474 NRCS Rangeland Site Ecological Site Description Database
#> 475 NRCS Rangeland Site Ecological Site Description Database
#> 476 NRCS Rangeland Site Ecological Site Description Database
#> 477 NRCS Rangeland Site Ecological Site Description Database
#> 478 NRCS Rangeland Site Ecological Site Description Database
#> 479 NRCS Rangeland Site Ecological Site Description Database
#> 480 NRCS Rangeland Site Ecological Site Description Database
#> 481 NRCS Rangeland Site Ecological Site Description Database
#> 482 NRCS Rangeland Site Ecological Site Description Database
#> 483 NRCS Rangeland Site Ecological Site Description Database
#> 484 NRCS Rangeland Site Ecological Site Description Database
#> 485 NRCS Rangeland Site Ecological Site Description Database
#> 486 NRCS Rangeland Site Ecological Site Description Database
#> 487 NRCS Rangeland Site Ecological Site Description Database
#> 488 NRCS Rangeland Site Ecological Site Description Database
#> 489 NRCS Rangeland Site Ecological Site Description Database
#> 490 NRCS Rangeland Site Ecological Site Description Database
#> 491 NRCS Rangeland Site Ecological Site Description Database
#> 492 NRCS Rangeland Site Ecological Site Description Database
#> 493 NRCS Rangeland Site Ecological Site Description Database
#> 494 NRCS Rangeland Site Ecological Site Description Database
#> 495 NRCS Rangeland Site Ecological Site Description Database
#> 496 NRCS Rangeland Site Ecological Site Description Database
#> 497 NRCS Rangeland Site Ecological Site Description Database
#> 498 NRCS Rangeland Site Ecological Site Description Database
#> 499 NRCS Rangeland Site Ecological Site Description Database
#> 500 NRCS Rangeland Site Ecological Site Description Database
#> 501 NRCS Rangeland Site Ecological Site Description Database
#> 502 NRCS Rangeland Site Ecological Site Description Database
#> 503 NRCS Rangeland Site Ecological Site Description Database
#> 504 NRCS Rangeland Site Ecological Site Description Database
#> 505 NRCS Rangeland Site Ecological Site Description Database
#> 506 NRCS Rangeland Site Ecological Site Description Database
#> 507 NRCS Rangeland Site Ecological Site Description Database
#> 508 NRCS Rangeland Site Ecological Site Description Database
#> 509 NRCS Rangeland Site Ecological Site Description Database
#> 510 NRCS Rangeland Site Ecological Site Description Database
#> 511 NRCS Rangeland Site Ecological Site Description Database
#> 512 NRCS Rangeland Site Ecological Site Description Database
#> 513 NRCS Rangeland Site Ecological Site Description Database
#> 514 NRCS Rangeland Site Ecological Site Description Database
#> 515 NRCS Rangeland Site Ecological Site Description Database
#> 516 NRCS Rangeland Site Ecological Site Description Database
#> 517 NRCS Rangeland Site Ecological Site Description Database
#> 518 NRCS Rangeland Site Ecological Site Description Database
#> 519 NRCS Rangeland Site Ecological Site Description Database
#> 520 NRCS Rangeland Site Ecological Site Description Database
#> 521 NRCS Rangeland Site Ecological Site Description Database
#> 522 NRCS Rangeland Site Ecological Site Description Database
#> 523 NRCS Rangeland Site Ecological Site Description Database
#> 524 NRCS Rangeland Site Ecological Site Description Database
#> 525 NRCS Rangeland Site Ecological Site Description Database
#> 526 NRCS Rangeland Site Ecological Site Description Database
#> 527 NRCS Rangeland Site Ecological Site Description Database
#> 528 NRCS Rangeland Site Ecological Site Description Database
#> 529 NRCS Rangeland Site Ecological Site Description Database
#> 530 NRCS Rangeland Site Ecological Site Description Database
#> 531 NRCS Rangeland Site Ecological Site Description Database
#> 532 NRCS Rangeland Site Ecological Site Description Database
#> 533 NRCS Rangeland Site Ecological Site Description Database
#> 534 NRCS Rangeland Site Ecological Site Description Database
#> 535 NRCS Rangeland Site Ecological Site Description Database
#> 536 NRCS Rangeland Site Ecological Site Description Database
#> 537 NRCS Rangeland Site Ecological Site Description Database
#> 538 NRCS Rangeland Site Ecological Site Description Database
#> 539 NRCS Rangeland Site Ecological Site Description Database
#> 540 NRCS Rangeland Site Ecological Site Description Database
#> 541 NRCS Rangeland Site Ecological Site Description Database
#> 542 NRCS Rangeland Site Ecological Site Description Database
#> 543 NRCS Rangeland Site Ecological Site Description Database
#> 544 NRCS Rangeland Site Ecological Site Description Database
#> 545 NRCS Rangeland Site Ecological Site Description Database
#> 546 NRCS Rangeland Site Ecological Site Description Database
#> 547 NRCS Rangeland Site Ecological Site Description Database
#> 548 NRCS Rangeland Site Ecological Site Description Database
#> 549 NRCS Rangeland Site Ecological Site Description Database
#> 550 NRCS Rangeland Site Ecological Site Description Database
#> 551 NRCS Rangeland Site Ecological Site Description Database
#> 552 NRCS Rangeland Site Ecological Site Description Database
#> 553 NRCS Rangeland Site Ecological Site Description Database
#> 554 NRCS Rangeland Site Ecological Site Description Database
#> 555 NRCS Rangeland Site Ecological Site Description Database
#> 556 NRCS Rangeland Site Ecological Site Description Database
#> 557 NRCS Rangeland Site Ecological Site Description Database
#> 558 NRCS Rangeland Site Ecological Site Description Database
#> 559 NRCS Rangeland Site Ecological Site Description Database
#> 560 NRCS Rangeland Site Ecological Site Description Database
#> 561 NRCS Rangeland Site Ecological Site Description Database
#> 562 NRCS Rangeland Site Ecological Site Description Database
#> 563 NRCS Rangeland Site Ecological Site Description Database
#> 564 NRCS Rangeland Site Ecological Site Description Database
#> 565 NRCS Rangeland Site Ecological Site Description Database
#> 566 NRCS Rangeland Site Ecological Site Description Database
#> 567 NRCS Rangeland Site Ecological Site Description Database
#> 568 NRCS Rangeland Site Ecological Site Description Database
#> 569 NRCS Rangeland Site Ecological Site Description Database
#> 570 NRCS Rangeland Site Ecological Site Description Database
#> 571 NRCS Rangeland Site Ecological Site Description Database
#> 572 NRCS Rangeland Site Ecological Site Description Database
#> 573 NRCS Rangeland Site Ecological Site Description Database
#> 574 NRCS Rangeland Site Ecological Site Description Database
#> 575 NRCS Rangeland Site Ecological Site Description Database
#> 576 NRCS Rangeland Site Ecological Site Description Database
#> 577 NRCS Rangeland Site Ecological Site Description Database
#> 578 NRCS Rangeland Site Ecological Site Description Database
#> 579 NRCS Rangeland Site Ecological Site Description Database
#> 580 NRCS Rangeland Site Ecological Site Description Database
#> 581 NRCS Rangeland Site Ecological Site Description Database
#> 582 NRCS Rangeland Site Ecological Site Description Database
#> 583 NRCS Rangeland Site Ecological Site Description Database
#> 584 NRCS Rangeland Site Ecological Site Description Database
#> 585 NRCS Rangeland Site Ecological Site Description Database
#> 586 NRCS Rangeland Site Ecological Site Description Database
#> 587 NRCS Rangeland Site Ecological Site Description Database
#> 588 NRCS Rangeland Site Ecological Site Description Database
#> 589 NRCS Rangeland Site Ecological Site Description Database
#> 590 NRCS Rangeland Site Ecological Site Description Database
#> 591 NRCS Rangeland Site Ecological Site Description Database
#> 592 NRCS Rangeland Site Ecological Site Description Database
#> 593 NRCS Rangeland Site Ecological Site Description Database
#> 594 NRCS Rangeland Site Ecological Site Description Database
#> 595 NRCS Rangeland Site Ecological Site Description Database
#> 596 NRCS Rangeland Site Ecological Site Description Database
#> 597 NRCS Rangeland Site Ecological Site Description Database
#> 598 NRCS Rangeland Site Ecological Site Description Database
#> 599 NRCS Rangeland Site Ecological Site Description Database
#> 600 NRCS Rangeland Site Ecological Site Description Database
#> 601 NRCS Rangeland Site Ecological Site Description Database
#> 602 NRCS Rangeland Site Ecological Site Description Database
#> 603 NRCS Rangeland Site Ecological Site Description Database
#> 604 NRCS Rangeland Site Ecological Site Description Database
#> 605 NRCS Rangeland Site Ecological Site Description Database
#> 606 NRCS Rangeland Site Ecological Site Description Database
#> 607 NRCS Rangeland Site Ecological Site Description Database
#> 608 NRCS Rangeland Site Ecological Site Description Database
#> 609 NRCS Rangeland Site Ecological Site Description Database
#> 610 NRCS Rangeland Site Ecological Site Description Database
#> 611 NRCS Rangeland Site Ecological Site Description Database
#> 612 NRCS Rangeland Site Ecological Site Description Database
#> 613 NRCS Rangeland Site Ecological Site Description Database
#> 614 NRCS Rangeland Site Ecological Site Description Database
#> 615 NRCS Rangeland Site Ecological Site Description Database
#> 616 NRCS Rangeland Site Ecological Site Description Database
#> 617 NRCS Rangeland Site Ecological Site Description Database
#> 618 NRCS Rangeland Site Ecological Site Description Database
#> 619 NRCS Rangeland Site Ecological Site Description Database
#> 620 NRCS Rangeland Site Ecological Site Description Database
#> 621 NRCS Rangeland Site Ecological Site Description Database
#> 622 NRCS Rangeland Site Ecological Site Description Database
#> 623 NRCS Rangeland Site Ecological Site Description Database
#> 624 NRCS Rangeland Site Ecological Site Description Database
#> 625 NRCS Rangeland Site Ecological Site Description Database
#> 626 NRCS Rangeland Site Ecological Site Description Database
#> 627 NRCS Rangeland Site Ecological Site Description Database
#> 628 NRCS Rangeland Site Ecological Site Description Database
#> 629 NRCS Rangeland Site Ecological Site Description Database
#> 630 NRCS Rangeland Site Ecological Site Description Database
#> 631 NRCS Rangeland Site Ecological Site Description Database
#> 632 NRCS Rangeland Site Ecological Site Description Database
#> 633 NRCS Rangeland Site Ecological Site Description Database
#> 634 NRCS Rangeland Site Ecological Site Description Database
#> 635 NRCS Rangeland Site Ecological Site Description Database
#> 636 NRCS Rangeland Site Ecological Site Description Database
#> 637 NRCS Rangeland Site Ecological Site Description Database
#> 638 NRCS Rangeland Site Ecological Site Description Database
#> 639 NRCS Rangeland Site Ecological Site Description Database
#> 640 NRCS Rangeland Site Ecological Site Description Database
#> 641 NRCS Rangeland Site Ecological Site Description Database
#> 642 NRCS Rangeland Site Ecological Site Description Database
#> 643 NRCS Rangeland Site Ecological Site Description Database
#> 644 NRCS Rangeland Site Ecological Site Description Database
#> 645 NRCS Rangeland Site Ecological Site Description Database
#> 646 NRCS Rangeland Site Ecological Site Description Database
#> 647 NRCS Rangeland Site Ecological Site Description Database
#> 648 NRCS Rangeland Site Ecological Site Description Database
#> 649 NRCS Rangeland Site Ecological Site Description Database
#> 650 NRCS Rangeland Site Ecological Site Description Database
#> 651 NRCS Rangeland Site Ecological Site Description Database
#> 652 NRCS Rangeland Site Ecological Site Description Database
#> 653 NRCS Rangeland Site Ecological Site Description Database
#> 654 NRCS Rangeland Site Ecological Site Description Database
#> 655 NRCS Rangeland Site Ecological Site Description Database
#> 656 NRCS Rangeland Site Ecological Site Description Database
#> 657 NRCS Rangeland Site Ecological Site Description Database
#> 658 NRCS Rangeland Site Ecological Site Description Database
#> 659 NRCS Rangeland Site Ecological Site Description Database
#> 660 NRCS Rangeland Site Ecological Site Description Database
#> 661 NRCS Rangeland Site Ecological Site Description Database
#> 662 NRCS Rangeland Site Ecological Site Description Database
#> 663 NRCS Rangeland Site Ecological Site Description Database
#> 664 NRCS Rangeland Site Ecological Site Description Database
#> 665 NRCS Rangeland Site Ecological Site Description Database
#> 666 NRCS Rangeland Site Ecological Site Description Database
#> 667 NRCS Rangeland Site Ecological Site Description Database
#> 668 NRCS Rangeland Site Ecological Site Description Database
#> 669 NRCS Rangeland Site Ecological Site Description Database
#> 670 NRCS Rangeland Site Ecological Site Description Database
#> 671 NRCS Rangeland Site Ecological Site Description Database
#> 672 NRCS Rangeland Site Ecological Site Description Database
#> 673 NRCS Rangeland Site Ecological Site Description Database
#> 674 NRCS Rangeland Site Ecological Site Description Database
#> 675 NRCS Rangeland Site Ecological Site Description Database
#> 676 NRCS Rangeland Site Ecological Site Description Database
#> 677 NRCS Rangeland Site Ecological Site Description Database
#> 678 NRCS Rangeland Site Ecological Site Description Database
#> 679 NRCS Rangeland Site Ecological Site Description Database
#> 680 NRCS Rangeland Site Ecological Site Description Database
#> 681 NRCS Rangeland Site Ecological Site Description Database
#> 682 NRCS Rangeland Site Ecological Site Description Database
#> 683 NRCS Rangeland Site Ecological Site Description Database
#> 684 NRCS Rangeland Site Ecological Site Description Database
#> 685 NRCS Rangeland Site Ecological Site Description Database
#> 686 NRCS Rangeland Site Ecological Site Description Database
#> 687 NRCS Rangeland Site Ecological Site Description Database
#> 688 NRCS Rangeland Site Ecological Site Description Database
#> 689 NRCS Rangeland Site Ecological Site Description Database
#> 690 NRCS Rangeland Site Ecological Site Description Database
#> 691 NRCS Rangeland Site Ecological Site Description Database
#> 692 NRCS Rangeland Site Ecological Site Description Database
#> 693 NRCS Rangeland Site Ecological Site Description Database
#> 694 NRCS Rangeland Site Ecological Site Description Database
#> 695 NRCS Rangeland Site Ecological Site Description Database
#> 696 NRCS Rangeland Site Ecological Site Description Database
#> 697 NRCS Rangeland Site Ecological Site Description Database
#> 698 NRCS Rangeland Site Ecological Site Description Database
#> 699 NRCS Rangeland Site Ecological Site Description Database
#> 700 NRCS Rangeland Site Ecological Site Description Database
#> 701 NRCS Rangeland Site Ecological Site Description Database
#> 702 NRCS Rangeland Site Ecological Site Description Database
#> 703 NRCS Rangeland Site Ecological Site Description Database
#> 704 NRCS Rangeland Site Ecological Site Description Database
#> 705 NRCS Rangeland Site Ecological Site Description Database
#> 706 NRCS Rangeland Site Ecological Site Description Database
#> 707 NRCS Rangeland Site Ecological Site Description Database
#> 708 NRCS Rangeland Site Ecological Site Description Database
#> 709 NRCS Rangeland Site Ecological Site Description Database
#> 710 NRCS Rangeland Site Ecological Site Description Database
#> 711 NRCS Rangeland Site Ecological Site Description Database
#> 712 NRCS Rangeland Site Ecological Site Description Database
#> 713 NRCS Rangeland Site Ecological Site Description Database
#> 714 NRCS Rangeland Site Ecological Site Description Database
#> 715 NRCS Rangeland Site Ecological Site Description Database
#> 716 NRCS Rangeland Site Ecological Site Description Database
#> 717 NRCS Rangeland Site Ecological Site Description Database
#> 718 NRCS Rangeland Site Ecological Site Description Database
#> 719 NRCS Rangeland Site Ecological Site Description Database
#> 720 NRCS Rangeland Site Ecological Site Description Database
#> 721 NRCS Rangeland Site Ecological Site Description Database
#> 722 NRCS Rangeland Site Ecological Site Description Database
#> 723 NRCS Rangeland Site Ecological Site Description Database
#> 724 NRCS Rangeland Site Ecological Site Description Database
#> 725 NRCS Rangeland Site Ecological Site Description Database