當前位置: 首頁>>代碼示例>>Python>>正文


Python SagaUtils.checkSagaIsInstalled方法代碼示例

本文整理匯總了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
開發者ID:drgalindog,項目名稱:Quantum-GIS,代碼行數:9,代碼來源:SagaAlgorithm.py

示例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
開發者ID:jesusjl,項目名稱:Quantum-GIS,代碼行數:14,代碼來源:SagaAlgorithmProvider.py


注:本文中的sextante.saga.SagaUtils.SagaUtils.checkSagaIsInstalled方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。