findCLD returns Raster land cover data from the USDA Cropland Data Layer Dataset (Cropscape) for an AOI.

findCDL(AOI, year = 2017)

Arguments

AOI

A Spatial* or simple features geometry, can be piped from getAOI

year

the year(s) to download. Options include 2008-2017 for most locations. Default = 2017

Value

a list() of minimum length 2: AOI and cld

Examples

# NOT RUN {
 dt = getAOI(clip = list("Devil Tower")) %>% findCDL()
 dt = getAOI(clip = list("Devil Tower")) %>% findCDL(2011:2016)
# }