Ho cercato, insieme a questo post , di eseguire uno script in OSGeo4w Shell , al di fuori di QGIS. Ma ottengo il seguente errore:
ImportError: nessun modulo chiamato qgis.core
Ho anche letto i seguenti post e ho provato a importare vari moduli ma senza risultati:
- Come eseguire algoritmi sestanti al di fuori della console Python di QGIS?
- Come eseguire un semplice script Python per QGIS dall'esterno (ad esempio Sublime Text)?
- Scrivere script Python autonomi usando PyQGIS?
Ecco un semplice script che crea una griglia e ritaglia un file di forma poligonale su di esso.
Nota: questo script è stato testato e funziona correttamente durante l'esecuzione in QGIS.
##Test=name
import os
import glob
import sys
sys.path.append("C:\Program Files\QGIS Brighton\lib;%OSGEO4W_ROOT:\=/%/apps/qgis;%OSGEO4W_ROOT%\apps\qgis\bin;%OSGEO4W_ROOT%\apps\grass\grass-6.4.3\lib;%PATH%")
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from qgis.core import *
QgsApplication.setPrefixPath("C:\Program Files\QGIS Brighton\apps\qgis", True)
QgsApplication.initQgis()
from os.path import expanduser
home = expanduser("~")
# Folder path of the Results for shapefiles
path_dir = home + "\Desktop\Test\\"
path_res = path_dir + "Results\\"
def run():
# Set directory, search for all polygon .shp files and run the Create Grid and Clip algorithms then output results into Results folder
os.chdir(path_dir + "Shapefiles\\")
for fname in glob.glob("*.shp"):
outputs_1=processing.runalg("qgis:creategrid", 1000, 1000, 24108, 18351.157175, 258293.802316, 665638.226408, 1, 'EPSG:7405', None)
outputs_2=processing.runalg("qgis:clip", outputs_1['SAVENAME'], fname, path_res + "/"+ fname)
run()
QgsApplication.exitQgis()
# Remove the above line when running in QGIS
Seguendo la risposta e lo script pubblicato da @gcarrillo, posso finalmente importare i qgis.core.
moduli con successo. Lo script fornito da @gcarrillo viene eseguito ma viene visualizzato un errore Traceback:
Traceback (most recent call last):
File "Test.py", line 55, in <module>
run()
File "Test.py", line 53, in run
algClip.processAlgorithm(progress)
File "C:\Users\username\.qgis2\python\plugins\processing\algs\qgis\ftools\Clip.py", line 59, in processAlgorithm
layerA.pendingFields(),
AttributeError: 'NoneType' object has no attribute 'pendingFields'