OSGeo4Wディストリビューションのスタンドアロンpythonからsextanteを実行する方法を見つけようとするのはちょっと行き詰まっています。これを実行したいのは、モデルビルダーからモデルをテストするたびにダイアログにパラメーターを入力するのが面倒だったからです。
だからここにそれを呼ぶPythonスクリプトがあります test.py
# as per http://qgis.org/pyqgis-cookbook/intro.html#using-pyqgis-in-custom-application
from qgis.core import *
# supply path to where is your qgis installed
QgsApplication.setPrefixPath("C:/OSGeo4W/apps/qgis", True)
# load providers
QgsApplication.initQgis()
from sextante.core.Sextante import Sextante
Sextante.alglist()
Sextante.alghelp("saga:slopeaspectcurvature")
バッチファイルから呼び出していること
@echo off
set OSGEO4W_ROOT=C:\OSGeo4W
set PYTHONPATH=%OSGEO4W_ROOT%\apps\qgis\python;%OSGEO4W_ROOT%\apps\qgis\python\plugins;%HOME%/.qgis/python/plugins
set PATH=%OSGEO4W_ROOT%\bin;%OSGEO4W_ROOT%\apps\qgis\bin;%OSGEO4W_ROOT%\apps\qgis\plugins
python test.py
問題は、Algorithm not found
QGIS pythonコンソールから意味のある出力が得られるのにそれが言うことです。
何かを初期化するのに欠けているような気がします。しかし、何ですか?
GUIを使用して大量のパラメーターを入力する以外に、モデルをテストするより良い方法はありますか?
アップデート7/2/2012
「マイン」アルゴリズムでテストするための一般的なpythonicソリューションを探しています。前述のアルゴリズムは、何かがおそらく初期化されなかったことを示す単なる例です。
アップデート7/27/2012
スクリプトランナーの代わりに、IPythonコンソールを使用してスクリプトをデバッグします。それ以外は何も実行せずに六分儀で簡単な単体テストを行う方法はないようです:(
アップデート7/30/2012
Victor Olayaが示唆するように、私は以下のコードのようにSextanteを初期化しようとします。
#!/usr/bin/env python
import sys
from PyQt4.QtGui import QApplication
from sextante.core.Sextante import Sextante
def main():
""" main function or something """
# as per http://qgis.org/pyqgis-cookbook/intro.html#using-pyqgis-in-custom-application
from qgis.core import *
import qgis.utils
app = QApplication(sys.argv)
# supply path to where is your qgis installed
QgsApplication.setPrefixPath("C:/OSGeo4W/apps/qgis", True)
# load providers
QgsApplication.initQgis()
# how???
# qgis.utils.iface = QgisInterface.instance()
Sextante.initialize()
run_script(qgis.utils.iface)
def run_script(iface):
""" this shall be called from Script Runner"""
Sextante.alglist()
Sextante.alghelp("saga:slopeaspectcurvature")
if __name__=="__main__":
main()
しかし、私は次のようなものを得ます
Traceback (most recent call last):
File "test.py", line 29, in
main()
File "test.py", line 20, in main
Sextante.initialize()
File "C:\Documents and Settings\user\.qgis\python\plugins\sextante\core\Sextante.py", line 94, in initialize
Sextante.addProvider(GrassAlgorithmProvider())
File "C:\Documents and Settings\user\.qgis\python\plugins\sextante\grass\GrassAlgorithmProvider.py", lin
e 17, in __init__
self.actions.append(DefineGrassRegionAction())
File "C:\Documents and Settings\user\.qgis\python\plugins\sextante\grass\DefineGrassRegionAction.py", li
ne 16, in __init__
canvas = QGisLayers.iface.mapCanvas()
AttributeError: 'NoneType' object has no attribute 'mapCanvas'
まあ...それはすべて同じようにメーリングリストの議論になります。おそらく、SEの代わりにqgis-userまたはqgis-developerに移行する価値があります。
iface
スタンドアロンのQGISスクリプトではアクセスできません。iface
サイドQGISで実行する場合にのみ使用します。