Rutherford County soil features(?) as downloaded from:
https://websoilsurvey.sc.egov.usda.gov/App/WebSoilSurvey.aspx
Map key:
GRA Gravelly spot MAR Marsh or swamp MPI Mine or quarry ROC Rock outcrop SNK Sinkhole STN Stony spot WET Wet spot
There was another map with many more regions - possibly soil types. It’s huge, though.
# Installing and loading required packages
if (!require("tidyverse")) install.packages("tidyverse")
if (!require("sf")) install.packages("sf")
if (!require("mapview")) install.packages("mapview")
library(tidyverse)
library(sf)
library(mapview)
mapdata <- st_read("soilsf_p_tn149.shp")
Map <- mapview(mapdata, zcol = "FEATSYM")
Map