You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried running the "Parallelized download of MODIS data" example and when I ran this line:
records <- getMODIS_query(time_range = time_range, name = grep("MOD09GA", product_names, value = T))
I got this error message: Error in isFALSE(quiet) : could not find function "isFALSE"
I also tried records <- getMODIS_query(time_range = time_range, name = "MODIS_MYD14A1_V6")
and I got the same error message.
The text was updated successfully, but these errors were encountered:
Thanks for pointing this out. Which version of R are you running? isFALSE has been introduced with R 3.5 which is why getSpatialData is not working with any version older than that. Are you using a machine where you could easily update R?
I will add isFALSE as a native function to getSpatialData to make it downward compatible
I tried running the "Parallelized download of MODIS data" example and when I ran this line:
records <- getMODIS_query(time_range = time_range, name = grep("MOD09GA", product_names, value = T))
I got this error message: Error in isFALSE(quiet) : could not find function "isFALSE"
I also tried records <- getMODIS_query(time_range = time_range, name = "MODIS_MYD14A1_V6")
and I got the same error message.
The text was updated successfully, but these errors were encountered: