python - QGIS 渲染 shapefile 时如何让 Python 等待

标签 python pyqt pyqt4 shapefile qgis

我已经为我的 QGIS 2.8.1 编写代码,它可以成功截取一个形状文件的屏幕截图,但不幸的是,当我尝试使用多个形状文件时它不起作用。

所以基本上,如果我将下面代码中的 allFiles = ["C:/Shapefiles/Map_00721.shp"] 替换为 allFiles = ["C:/Shapefiles/Map_00721.shp", "C:/Shapefiles/Map_00711.shp", "C:/Shapefiles/Map_00731.shp", "C:/Shapefiles/Map_00791.shp", "C:/Shapefiles/Map_00221.shp"],循环遍历数组而不等待渲染和快照过程发生。

我尝试在下面的代码中使用 time.sleep,但它也停止了 shapefile 的渲染,结果没有达到预期。

import ogr,os
from PyQt4.QtGui import *
from PyQt4.QtCore import *
from qgis.core import *
import qgis.utils
import glob
from time import sleep
import math
import processing
from processing.core.Processing import Processing
from PyQt4.QtCore import QTimer

Processing.initialize()
Processing.updateAlgsList()

OutputFileName = "ABC"    # Temprory global placeholder for filename
canvas = iface.mapCanvas()


def startstuffs():
    qgis.utils.iface.zoomToActiveLayer()    # Zoom to Layer
    scale=canvas.scale()    # Get current Scale
    scale =  scale * 1.5
    canvas.zoomScale(scale)   # Zoomout a bit
    QTimer.singleShot(2000,saveImg)   # Jump to save img

def saveImg():
    qgis.utils.iface.mapCanvas().saveAsImage(OutputFileName)
    QgsMapLayerRegistry.instance().removeAllMapLayers()


# Add array of address below
allFiles = ["C:/Shapefiles/Map_00721.shp"]
filesLen = len(allFiles)

TexLayer = "C:/US_County_NAD27.shp"

for lop in range(filesLen):

    currentShpFile = allFiles[lop]
    currentShpFileName = currentShpFile.strip("C:/Shapefiles/")
    OutputFileName = "C:/ImageOut/" + currentShpFileName + ".png"
    wb = QgsVectorLayer(currentShpFile, currentShpFileName, 'ogr')
    wbTex = QgsVectorLayer(TexLayer, 'CountyGrid', 'ogr')
    QgsMapLayerRegistry.instance().addMapLayer(wb)    # Add the shapefile
    QgsMapLayerRegistry.instance().addMapLayer(wbTex)    # Add the county shapefile
    qgis.utils.iface.setActiveLayer(wb)   # Makes wb as active shapefile

    QTimer.singleShot(3000, startstuffs)    # This start stuffs

print "Done!"

最佳答案

避免使用 time.sleep(),因为这会完全拖延您的整个程序。相反,使用 processEvents() 允许您的程序在后台呈现。

import time

def spin(seconds):
    """Pause for set amount of seconds, replaces time.sleep so program doesn't stall"""

    time_end = time.time() + seconds
    while time.time() < time_end:
        QtGui.QApplication.processEvents()

此方法对于快速修复应该很有效,但从长远来看,它可能会产生难以跟踪的问题。最好使用带有事件循环的 QTimer 作为永久解决方案。

关于python - QGIS 渲染 shapefile 时如何让 Python 等待,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55301747/

相关文章:

linux - 在没有x11的Linux上运行spynner脚本

python - 具有重叠值的列表的排列

python - 实现 "diamond inheritance"的 Pythonic 方式是什么?

python - PyQt 中的自定义/所有者绘制控件?

Python PYQT QTreeWidgetItem 选定的单元格

python - 为类动态添加装饰器

python - QListView 中的复选框选择

python - 这对于将重力建模为二阶 ODE 是否正确?

python - 来自现有字典值的新字典

python - PYQT:QTableView。日期之间的筛选