Internal function to load the paths of executables from the JSON where they are saved when installed.
load_binpaths(bins = NULL)
bins | Character vector with one of more of the following values:
"gdal", sen2cor", "aria2", "python".
If an executable corresponding to the passed |
---|
The list of the paths
License: GPL 3.0
# \donttest{ # Load only existing paths binpaths <- load_binpaths() binpaths#> $gdalinfo #> [1] "/usr/bin/gdalinfo" #> #> $gdal_calc #> [1] "/usr/bin/gdal_calc.py" #> #> $gdal_fillnodata #> [1] "/usr/bin/gdal_fillnodata.py" #> #> $aria2c #> [1] "/usr/bin/aria2c" #> #> $ogrinfo #> [1] "/usr/bin/ogrinfo" #> #> $gdal_translate #> [1] "/usr/bin/gdal_translate" #> #> $gdalwarp #> [1] "/usr/bin/gdalwarp" #> #> $gdalbuildvrt #> [1] "/usr/bin/gdalbuildvrt" #> #> $gdaldem #> [1] "/usr/bin/gdaldem" #> #> $gdal_polygonize #> [1] "/usr/bin/gdal_polygonize.py" #> #> $sen2cor #> [1] "/home/lranghetti/.sen2r/sen2cor_versions/sen2cor_255_cci/bin/L2A_Process" #> #> $python #> [1] "/usr/bin/python3.6" #> #> attr(,"path") #> [1] "/home/lranghetti/.sen2r/paths.json"# } if (FALSE) { # Load paths, forcing to check GDAL and sen2cor binpaths <- load_binpaths(c("gdal", "sen2cor")) binpaths }