Yield records are extracted from lithology observations and added to the wells data.
Arguments
- wells_sub
sf spatial data frame. Subset of wells data output by
wells_subset()
Examples
if (FALSE) { # interactive()
library(sf)
# Load a shape file defining the region of interest
creek_sf <- st_read("misc/data/Clinton_Creek.shp")
# Get wells within this region
creek_wells <- wells_subset(creek_sf)
# Get yield data for these wells
creek_yield <- wells_yield(creek_wells)
}