ฉันได้ลองใช้พร้อมกับโพสต์นี้เพื่อเรียกใช้สคริปต์ในOSGeo4w Shellนอก QGIS แต่ฉันได้รับข้อผิดพลาดต่อไปนี้:
ImportError: ไม่มีโมดูลชื่อ qgis.core
ฉันได้อ่านโพสต์ต่อไปนี้แล้วและพยายามนำเข้าโมดูลต่างๆ แต่ก็ไม่มีประโยชน์:
- วิธีการเรียกใช้อัลกอริทึม sextante นอกคอนโซล QGIS หลาม?
- วิธีการเรียกใช้สคริปต์ python อย่างง่ายสำหรับ QGIS จากภายนอก (เช่น Sublime Text)
- การเขียนสคริปต์ Python แบบสแตนด์อโลนโดยใช้ PyQGIS?
นี่เป็นสคริปต์ง่าย ๆ ที่สร้างกริดและคลิปไฟล์รูปหลายเหลี่ยมเข้าไว้
หมายเหตุ:สคริปต์นี้ได้รับการทดสอบและทำงานได้สำเร็จเมื่อทำงานใน 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
ทำตามคำตอบและสคริปต์ที่โพสต์โดย @gcarrillo ในที่สุดฉันก็สามารถนำเข้าqgis.core.
โมดูลได้สำเร็จ สคริปต์ที่จัดทำโดย @gcarrillo ทำงาน แต่ฉันได้รับข้อผิดพลาด 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'