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


Python GrassUtils.checkGrassIsInstalled方法代碼示例

本文整理匯總了Python中sextante.grass.GrassUtils.GrassUtils.checkGrassIsInstalled方法的典型用法代碼示例。如果您正苦於以下問題:Python GrassUtils.checkGrassIsInstalled方法的具體用法?Python GrassUtils.checkGrassIsInstalled怎麽用?Python GrassUtils.checkGrassIsInstalled使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在sextante.grass.GrassUtils.GrassUtils的用法示例。


在下文中一共展示了GrassUtils.checkGrassIsInstalled方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: checkBeforeOpeningParametersDialog

# 需要導入模塊: from sextante.grass.GrassUtils import GrassUtils [as 別名]
# 或者: from sextante.grass.GrassUtils.GrassUtils import checkGrassIsInstalled [as 別名]
 def checkBeforeOpeningParametersDialog(self):
     msg = GrassUtils.checkGrassIsInstalled()
     if msg is not None:
         html = ("<p>This algorithm requires GRASS to be run."
         "Unfortunately, it seems that GRASS 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 GRASS to be used with SEXTANTE</p>'
         return html
開發者ID:PepSalehi,項目名稱:Quantum-GIS,代碼行數:9,代碼來源:GrassAlgorithm.py

示例2: getPostProcessingErrorMessage

# 需要導入模塊: from sextante.grass.GrassUtils import GrassUtils [as 別名]
# 或者: from sextante.grass.GrassUtils.GrassUtils import checkGrassIsInstalled [as 別名]
    def getPostProcessingErrorMessage(self, wrongLayers):
        html = AlgorithmProvider.getPostProcessingErrorMessage(self, wrongLayers)
        msg = GrassUtils.checkGrassIsInstalled(True)
        html += ("<p>This algorithm requires GRASS to be run. A test to check if GRASS is correctly installed "
                "and configured in your system has been performed, with the following result:</p><ul><i>")
        if msg is None:
            html += "GRASS seems to be correctly installed and configured</li></ul>"
        else:
            html += msg + "</i></li></ul>"
            html += '<p><a href= "http://docs.qgis.org/2.0/html/en/docs/user_manual/sextante/3rdParty.html">Click here</a> to know more about how to install and configure GRASS to be used with SEXTANTE</p>'

        return html
開發者ID:JoeyPinilla,項目名稱:Quantum-GIS,代碼行數:14,代碼來源:GrassAlgorithmProvider.py


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