bleutner / RStoolbox

Remote Sensing Data Analysis in R 🛰
260 stars 82 forks source link

error in evaluating the argument 'y' in selecting a method for function 'intersect': non-character object(s) #96

Closed jebyrnes closed 9 months ago

jebyrnes commented 9 months ago

I'm working on a simple landsat query, and get the following

records <-  getLandsat_records(time_range = c("2018-01-01", "2018-08-30"), 
                            products = "landsat_ot_c2_l2",
                            aoi = casco_extent,
                            rename_cols = FALSE)

Searching records for product name 'landsat_ot_c2_l2'...
Recieving available product levels from USGS-EROS ESPA...
Found a total of 682 records.
Error in h(simpleError(msg, call)) : 
  error in evaluating the argument 'y' in selecting a method for function 'intersect': non-character object(s)

Note - rename_cols is FALSE as when I set it to TRUE this fails with a different error.

Thoughts?