CRAN policies require that functions that depend on internet connection should "fail gracefully" when there is internet connection problems. This means that, in such cases, the function should:
NOT throw and ERROR
return an informative message
I've made a few small changes to make sure read_od() and read_map() fail gracefully. I've also updated the documentation of the download function used internally in the package.
CRAN policies require that functions that depend on internet connection should "fail gracefully" when there is internet connection problems. This means that, in such cases, the function should:
I've made a few small changes to make sure
read_od()
andread_map()
fail gracefully. I've also updated the documentation of the download function used internally in the package.