findNearestHUC12
returns a SpatialPolygonDataFrame
of the 'n' number of HUC12 basins closest to a declared point.
findNearestHUC12(point = NULL, n = 1, ids = FALSE, bb = FALSE)
point | a point described by lat/long, can be piped from geocode |
---|---|
n | the number of basins to find (default = 5) |
ids | If TRUE, a vector of basin HUC IDs is added to retuned list (default = |
bb | If TRUE, the geometry of the minimum bounding area of the features is added to returned list (default = |
a list() of minimum length 2: AOI and wbd
findWBD
# NOT RUN { pt = geocode("UCSB") %>% findNearestHUC12(n = 5) # }