retrieve the OTB module folder content and parses the module names

parseOTBAlgorithms(gili = NULL)

Arguments

gili

optional list of avalailable `OTB` binaries if not provided `linkOTB()` is called

Examples

if (FALSE) {
## link to the OTB binaries
otblink<-link2GI::linkOTB()

 if (otblink$exist) {

 ## parse all modules
 moduleList<-parseOTBAlgorithms(gili = otblink)

 ## print the list
 print(moduleList)
 
 } 
}