本文整理匯總了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
示例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