Closed brownag closed 8 months ago
In #30 I replaced the unset value returned by Sys.getenv() for GEOTARGETS_GDAL_RASTER_CREATION_OPTIONS
unset
Sys.getenv()
Calling strsplit("", ";)[[1]] returns character(0), which will cause an error in Sys.getenv(). This PR gets us the intended default value of ""
strsplit("", ";)[[1]]
character(0)
""
Nice work! That's a good catch. I think writing a test here would be a good idea (I'm very happy to tackle that!) - lodged #41
In #30 I replaced the
unset
value returned bySys.getenv()
for GEOTARGETS_GDAL_RASTER_CREATION_OPTIONSCalling
strsplit("", ";)[[1]]
returnscharacter(0)
, which will cause an error inSys.getenv()
. This PR gets us the intended default value of""