[Qgis-developer] SAGA modules (version 2.1.0) through SEXTANTE on Mac OSX

Victor Olaya volayaf at gmail.com
Thu Dec 20 14:09:34 PST 2012


There is actually the following check in the case of mac and linux:

            command = ["saga_cmd"]
            proc = subprocess.Popen(command, shell=True,
stdout=subprocess.PIPE,
stdin=subprocess.PIPE,stderr=subprocess.STDOUT,
universal_newlines=True).stdout
            for line in iter(proc.readline, ""):
                if "________" in line:
                    settings.setValue(SAGA_INSTALLED, True)
                    return
            return "It seems that SAGA is not correctly installed in
your system.\nPlease install it before running SAGA algorithms."

basically, it is a naive check to see if executing saga_cmd in a
console returns something that looks like the SAGA CMD header. It
works fin in linux, but it seems it is not working in Mac. Are you
sure saga is in your path? if so, what do you see when you execute
saga_cmd? maybe the header is different for some reason?

Thanks in advance!

2012/12/20 John C. Tull <jctull at gmail.com>:
> On Dec 19, 2012, at 2:49 AM, Victor Olaya <volayaf at gmail.com> wrote:
>
>> Olav,
>>
>> Thanks for your contribution!
>>
>>>
>>> There is no option "SAGA folder" in the SEXTANTE configuration like you have
>>> when installing on Windows. I haven't checked on Linux, but I guess the
>>> Unixes don't need this, as long as saga_cmd is in the path, right?
>>
>> Right, Mac and Linux should work in the same way. Let me check,
>> because maybe in Mac it is performing the same check as in windows
>> (that is, checking that the SAGA folder is set...)
>>
>> Looks like an easy to solve problem...i hope
>>
>> Will keep you posted
>>
>> Thanks again!
>>
>>
>> Victor
>
> It looks like I'm a little late to the party on this. I confirm the same. I look forward to a solution on this for OS X. We can work on grass, perhaps, once that is resolved.
>
> Regards,
> John
>


More information about the Qgis-developer mailing list