本文整理匯總了Python中sextante.saga.SagaUtils.SagaUtils.checkSagaIsInstalled方法的典型用法代碼示例。如果您正苦於以下問題:Python SagaUtils.checkSagaIsInstalled方法的具體用法?Python SagaUtils.checkSagaIsInstalled怎麽用?Python SagaUtils.checkSagaIsInstalled使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類sextante.saga.SagaUtils.SagaUtils
的用法示例。
在下文中一共展示了SagaUtils.checkSagaIsInstalled方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: checkBeforeOpeningParametersDialog
# 需要導入模塊: from sextante.saga.SagaUtils import SagaUtils [as 別名]
# 或者: from sextante.saga.SagaUtils.SagaUtils import checkSagaIsInstalled [as 別名]
def checkBeforeOpeningParametersDialog(self):
msg = SagaUtils.checkSagaIsInstalled()
if msg is not None:
html = ("<p>This algorithm requires SAGA to be run."
"Unfortunately, it seems that SAGA is not installed in your system, or it is not correctly configured to be used from QGIS</p>")
html += '<p><a href= "http://docs.qgis.org/html/en/docs/user_manual/sextante/3rdParty.html">Click here</a> to know more about how to install and configure SAGA to be used with SEXTANTE</p>'
return html
示例2: getPostProcessingErrorMessage
# 需要導入模塊: from sextante.saga.SagaUtils import SagaUtils [as 別名]
# 或者: from sextante.saga.SagaUtils.SagaUtils import checkSagaIsInstalled [as 別名]
def getPostProcessingErrorMessage(self, wrongLayers):
html = AlgorithmProvider.getPostProcessingErrorMessage(self, wrongLayers)
msg = SagaUtils.checkSagaIsInstalled(True)
html += ("<p>This algorithm requires SAGA to be run. A test to check if SAGA is correctly installed "
"and configured in your system has been performed, with the following result:</p><ul><i>")
if msg is None:
html += "Saga seems to be correctly installed and configured</li></ul>"
else:
html += msg + "</i></li></ul>"
html += '<p><a href= "http://docs.qgis.org/html/en/docs/user_manual/sextante/3rdParty.html">Click here</a> to know more about how to install and configure SAGA to be used with SEXTANTE</p>'
return html