给QGIS开发一个卷帘工具

2024-04-01 01:08
文章标签 工具 开发 qgis 卷帘

本文主要是介绍给QGIS开发一个卷帘工具,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

版权声明:未经作者允许不得转载,此插件不得用于商业用途。

目录

开发环境

插件开发

__init__.py

map_swipe_plugin.py

map_swipe_tool.py

active

deactivate

canvasPressEvent

canvasReleaseEvent

canvasMoveEvent

swipe_map.py

实现结果


开发环境

  • QGIS 3.2
  • python(QGIS自带)

插件开发

关于QGIS中使用python开发插件的方法,自行查看官方文档

__init__.py

from .map_swipe_plugin import MapSwipePlugindef classFactory(iface):return MapSwipePlugin(iface)

map_swipe_plugin.py

import osfrom PyQt5.QtGui import QIcon
from PyQt5.QtWidgets import QWidget, QHBoxLayout, QComboBox, QPushButton
from qgis.core import QgsProject
from qgis.gui import QgsMapToolPanfrom .map_swipe_tool import MapSwipeToolplugin_path = os.path.dirname(__file__)class MapSwipePlugin:def __init__(self, iface):self.iface = ifaceself.canvas = iface.mapCanvas()# 图层变化信号QgsProject.instance().layerTreeRoot().layerOrderChanged.connect(self.combobox_add_items)def initGui(self):self.menu = self.title = "卷帘工具"self._create_widget()self.tool = MapSwipeTool(plugin_path, self.combobox, self.iface)self.tool.deactivated.connect(self.tool_deactivated)self.widget_action = self.iface.addToolBarWidget(self.widget)def unload(self):self.canvas.setMapTool(QgsMapToolPan(self.iface.mapCanvas()))self.iface.removeToolBarIcon(self.widget_action)del self.widget_actiondef run(self):if self.canvas.mapTool() != self.tool:self.prevTool = self.canvas.mapTool()self.canvas.setMapTool(self.tool)else:self.canvas.setMapTool(self.prevTool)if self.pushbutton.isChecked() and self.combobox.isHidden():self.combobox.show()self.combobox_add_items()else:self.combobox.hide()def _create_widget(self):icon = QIcon(os.path.join(plugin_path, 'icon.png'))# 新建widgetself.widget = QWidget(self.iface.mainWindow())self.hlayout = QHBoxLayout(self.widget)self.hlayout.setContentsMargins(0, 0, 0, 0)self.pushbutton = QPushButton(icon, '', self.widget)self.pushbutton.setCheckable(True)self.pushbutton.setFlat(True)self.combobox = QComboBox(self.widget)self.hlayout.addWidget(self.pushbutton)self.hlayout.addWidget(self.combobox)self.combobox.hide()self.combobox_add_items()self.pushbutton.clicked.connect(self.run)def combobox_add_items(self):self.combobox.clear()layers = QgsProject.instance().layerTreeRoot().layerOrder()self.combobox.addItems([layer.name() for layer in layers])def tool_deactivated(self):'''tool非激活状态'''self.pushbutton.setChecked(False)self.combobox.hide()

map_swipe_tool.py

import os
from PyQt5.QtCore import Qt, QPoint
from PyQt5.QtGui import QCursor, QPixmap
from qgis.gui import QgsMapTool
from qgis.core import QgsProject, QgsMapSettings, QgsMapRendererParallelJob
from .swipe_map import SwipeMapclass MapSwipeTool(QgsMapTool):def __init__(self, plugin_path, combobox, iface):super(MapSwipeTool, self).__init__(iface.mapCanvas())self.combobox = comboboxself.map_canvas = iface.mapCanvas()self.view = iface.layerTreeView()self.swipe = SwipeMap(self.map_canvas)self.hasSwipe = Noneself.start_point = QPoint()self.cursorSV = QCursor(QPixmap(os.path.join(plugin_path, 'images/split_v.png')))self.cursorSH = QCursor(QPixmap(os.path.join(plugin_path, 'images/split_h.png')))self.cursorUP = QCursor(QPixmap(os.path.join(plugin_path, 'images/up.png')))self.cursorDOWN = QCursor(QPixmap(os.path.join(plugin_path, 'images/down.png')))self.cursorLEFT = QCursor(QPixmap(os.path.join(plugin_path, 'images/left.png')))self.cursorRIGHT = QCursor(QPixmap(os.path.join(plugin_path, 'images/right.png')))def activate(self):self.map_canvas.setCursor(QCursor(Qt.CrossCursor))self._connect()self.hasSwipe = Falseself.setLayersSwipe()def canvasPressEvent(self, e):self.hasSwipe = Truedirection = Nonew, h = self.map_canvas.width(), self.map_canvas.height()if 0.25 * w < e.x() < 0.75 * w and e.y() < 0.5 * h:direction = 0  # '⬇'self.swipe.isVertical = Falseif 0.25 * w < e.x() < 0.75 * w and e.y() > 0.5 * h:direction = 1  # '⬆'self.swipe.isVertical = Falseif e.x() < 0.25 * w:direction = 2  # '➡'self.swipe.isVertical = Trueif e.x() > 0.75 * w:direction = 3  # '⬅'self.swipe.isVertical = Trueself.swipe.set_direction(direction)self.map_canvas.setCursor(self.cursorSH if self.swipe.isVertical else self.cursorSV)self.swipe.set_img_extent(e.x(), e.y())def canvasReleaseEvent(self, e):self.hasSwipe = Falseself.canvasMoveEvent(e)# 鼠标释放后,移除绘制的线self.swipe.set_img_extent(-9999, -9999)def canvasMoveEvent(self, e):if self.hasSwipe:self.swipe.set_img_extent(e.x(), e.y())else:# 设置当前cursorw, h = self.map_canvas.width(), self.map_canvas.height()if e.x() < 0.25 * w:self.canvas().setCursor(self.cursorRIGHT)if e.x() > 0.75 * w:self.canvas().setCursor(self.cursorLEFT)if 0.25 * w < e.x() < 0.75 * w and e.y() < 0.5 * h:self.canvas().setCursor(self.cursorDOWN)if 0.25 * w < e.x() < 0.75 * w and e.y() > 0.5 * h:self.canvas().setCursor(self.cursorUP)def _connect(self, isConnect=True):signal_slot = ({'signal': self.map_canvas.mapCanvasRefreshed, 'slot': self.setMap},{'signal': self.combobox.currentIndexChanged, 'slot': self.setLayersSwipe},{'signal': QgsProject.instance().removeAll, 'slot': self.disable})if isConnect:for item in signal_slot:item['signal'].connect(item['slot'])else:for item in signal_slot:item['signal'].disconnect(item['slot'])def setLayersSwipe(self, ):current_layer = QgsProject.instance().mapLayersByName(self.combobox.currentText())if len(current_layer) == 0:returnlayers = QgsProject.instance().layerTreeRoot().layerOrder()layer_list = []for layer in layers:if layer.id() == current_layer[0].id():continuelayer_list.append(layer)self.swipe.clear()self.swipe.setLayersId(layer_list)self.setMap()def disable(self):self.swipe.clear()self.hasSwipe = Falsedef deactivate(self):self.deactivated.emit()self.swipe.clear()self._connect(False)def setMap(self):def finished():self.swipe.setContent(job.renderedImage(), self.map_canvas.extent())if len(self.swipe.layers) == 0:returnsettings = QgsMapSettings(self.map_canvas.mapSettings())settings.setLayers(self.swipe.layers)job = QgsMapRendererParallelJob(settings)job.start()job.finished.connect(finished)job.waitForFinished()

MapSwipeTool继承了QgsMapTool类,重新实现了activate、deactivate、canvasPressEvent、canvasReleaseEvent、canvasMoveEvent方法,还用到了QgsMapRendererParallelJob类,QgsMapRendererParallelJob是QGIS提供的并行绘图类,不做详解,下面对重新实现的方法详细说明:

active

工具激活后执行此函数

deactivate

工具非激活状态执行此函数

canvasPressEvent

    def canvasPressEvent(self, e):self.hasSwipe = Truedirection = Nonew, h = self.map_canvas.width(), self.map_canvas.height()if 0.25 * w < e.x() < 0.75 * w and e.y() < 0.5 * h:direction = 0  # '⬇'self.swipe.isVertical = Falseif 0.25 * w < e.x() < 0.75 * w and e.y() > 0.5 * h:direction = 1  # '⬆'self.swipe.isVertical = Falseif e.x() < 0.25 * w:direction = 2  # '➡'self.swipe.isVertical = Trueif e.x() > 0.75 * w:direction = 3  # '⬅'self.swipe.isVertical = Trueself.swipe.set_direction(direction)self.map_canvas.setCursor(self.cursorSH if self.swipe.isVertical else self.cursorSV)self.swipe.set_img_extent(e.x(), e.y())

画布的鼠标按压事件,将画布分为四个部分,获得卷帘的方向,然后设置鼠标光标,具体实现方式自行脑补,原理如下图:

canvasReleaseEvent

    def canvasReleaseEvent(self, e):self.hasSwipe = Falseself.canvasMoveEvent(e)# 鼠标释放后,移除绘制的线self.swipe.set_img_extent(-9999, -9999)

画布的鼠标释放事件,鼠标释放后要把绘制的线移出画布

self.swipe.set_img_extent(-9999, -9999)

canvasMoveEvent

    def canvasMoveEvent(self, e):if self.hasSwipe:self.swipe.set_img_extent(e.x(), e.y())else:# 设置当前cursorw, h = self.map_canvas.width(), self.map_canvas.height()if e.x() < 0.25 * w:self.canvas().setCursor(self.cursorRIGHT)if e.x() > 0.75 * w:self.canvas().setCursor(self.cursorLEFT)if 0.25 * w < e.x() < 0.75 * w and e.y() < 0.5 * h:self.canvas().setCursor(self.cursorDOWN)if 0.25 * w < e.x() < 0.75 * w and e.y() > 0.5 * h:self.canvas().setCursor(self.cursorUP)

画布的鼠标移动事件,当使用卷帘时,获得鼠标的位置(e.x(),e.y()),当不使用卷帘时,根据鼠标的位置设置鼠标的光标形状,原理与canvasPressEvent相同

swipe_map.py

from PyQt5.QtCore import QRectF, QPointF, Qt
from PyQt5.QtGui import QPen, QColor
from qgis.gui import QgsMapCanvasItemclass SwipeMap(QgsMapCanvasItem):def __init__(self, canvas):super(SwipeMap, self).__init__(canvas)self.length = 0self.isVertical = Trueself.layers = []self.is_paint = Falsedef setContent(self, image, rect):self.copyimage = imageself.setRect(rect)def clear(self):del self.layers[:]self.is_paint = Falsedef setLayersId(self, layers):del self.layers[:]for item in layers:self.layers.append(item)def set_direction(self, direction):# 0:'⬇', 1:'⬆', 2:'➡', 3:'⬅'if direction == 0:self.direction = 0elif direction == 1:self.direction = 1elif direction == 2:self.direction = 2else:self.direction = 3self.startx, self.starty, self.endx, self.endy = 0, 0, self.boundingRect().width(), self.boundingRect().height()def set_img_extent(self, x, y):self.x = xself.y = yif self.direction == 0:  # 0:'⬇'self.endy = yelif self.direction == 1:  # 1:'⬆'self.starty = yelif self.direction == 2:  # 2:'➡'self.endx = xelse:  # 3:'⬅'self.startx = xself.is_paint = Trueself.update()def paint(self, painter, *args):if len(self.layers) == 0 or self.is_paint == False:returnw = self.boundingRect().width()h = self.boundingRect().height()pen = QPen(Qt.DashDotDotLine)pen.setColor(QColor(18, 150, 219))pen.setWidth(4)if self.isVertical:painter.setPen(pen)painter.drawLine(QPointF(self.x, 0), QPointF(self.x, h))else:painter.setPen(pen)painter.drawLine(QPointF(0, self.y), QPointF(w, self.y))image = self.copyimage.copy(self.startx, self.starty, self.endx, self.endy)painter.drawImage(QRectF(self.startx, self.starty, self.endx, self.endy), image)

此模块为绘制地图模块,首先获得绘制地图的范围

self.startx, self.starty, self.endx, self.endy = 0, 0, self.boundingRect().width(), self.boundingRect().height()

然后重写绘制函数paint

    def paint(self, painter, *args):if len(self.layers) == 0 or self.is_paint == False:returnw = self.boundingRect().width()h = self.boundingRect().height()pen = QPen(Qt.DashDotDotLine)pen.setColor(QColor(18, 150, 219))pen.setWidth(4)if self.isVertical:painter.setPen(pen)painter.drawLine(QPointF(self.x, 0), QPointF(self.x, h))else:painter.setPen(pen)painter.drawLine(QPointF(0, self.y), QPointF(w, self.y))image = self.copyimage.copy(self.startx, self.starty, self.endx, self.endy)painter.drawImage(QRectF(self.startx, self.starty, self.endx, self.endy), image)

实现结果

项目地址:MapSwipeTool

这篇关于给QGIS开发一个卷帘工具的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/865850

相关文章

Spring Boot集成/输出/日志级别控制/持久化开发实践

《SpringBoot集成/输出/日志级别控制/持久化开发实践》SpringBoot默认集成Logback,支持灵活日志级别配置(INFO/DEBUG等),输出包含时间戳、级别、类名等信息,并可通过... 目录一、日志概述1.1、Spring Boot日志简介1.2、日志框架与默认配置1.3、日志的核心作用

PyQt5 GUI 开发的基础知识

《PyQt5GUI开发的基础知识》Qt是一个跨平台的C++图形用户界面开发框架,支持GUI和非GUI程序开发,本文介绍了使用PyQt5进行界面开发的基础知识,包括创建简单窗口、常用控件、窗口属性设... 目录简介第一个PyQt程序最常用的三个功能模块控件QPushButton(按钮)控件QLable(纯文本

基于Python实现简易视频剪辑工具

《基于Python实现简易视频剪辑工具》这篇文章主要为大家详细介绍了如何用Python打造一个功能完备的简易视频剪辑工具,包括视频文件导入与格式转换,基础剪辑操作,音频处理等功能,感兴趣的小伙伴可以了... 目录一、技术选型与环境搭建二、核心功能模块实现1. 视频基础操作2. 音频处理3. 特效与转场三、高

基于Python开发一个图像水印批量添加工具

《基于Python开发一个图像水印批量添加工具》在当今数字化内容爆炸式增长的时代,图像版权保护已成为创作者和企业的核心需求,本方案将详细介绍一个基于PythonPIL库的工业级图像水印解决方案,有需要... 目录一、系统架构设计1.1 整体处理流程1.2 类结构设计(扩展版本)二、核心算法深入解析2.1 自

Python办公自动化实战之打造智能邮件发送工具

《Python办公自动化实战之打造智能邮件发送工具》在数字化办公场景中,邮件自动化是提升工作效率的关键技能,本文将演示如何使用Python的smtplib和email库构建一个支持图文混排,多附件,多... 目录前言一、基础配置:搭建邮件发送框架1.1 邮箱服务准备1.2 核心库导入1.3 基础发送函数二、

基于Python实现一个图片拆分工具

《基于Python实现一个图片拆分工具》这篇文章主要为大家详细介绍了如何基于Python实现一个图片拆分工具,可以根据需要的行数和列数进行拆分,感兴趣的小伙伴可以跟随小编一起学习一下... 简单介绍先自己选择输入的图片,默认是输出到项目文件夹中,可以自己选择其他的文件夹,选择需要拆分的行数和列数,可以通过

Python使用pip工具实现包自动更新的多种方法

《Python使用pip工具实现包自动更新的多种方法》本文深入探讨了使用Python的pip工具实现包自动更新的各种方法和技术,我们将从基础概念开始,逐步介绍手动更新方法、自动化脚本编写、结合CI/C... 目录1. 背景介绍1.1 目的和范围1.2 预期读者1.3 文档结构概述1.4 术语表1.4.1 核

Python使用OpenCV实现获取视频时长的小工具

《Python使用OpenCV实现获取视频时长的小工具》在处理视频数据时,获取视频的时长是一项常见且基础的需求,本文将详细介绍如何使用Python和OpenCV获取视频时长,并对每一行代码进行深入解析... 目录一、代码实现二、代码解析1. 导入 OpenCV 库2. 定义获取视频时长的函数3. 打开视频文

Linux中压缩、网络传输与系统监控工具的使用完整指南

《Linux中压缩、网络传输与系统监控工具的使用完整指南》在Linux系统管理中,压缩与传输工具是数据备份和远程协作的桥梁,而系统监控工具则是保障服务器稳定运行的眼睛,下面小编就来和大家详细介绍一下它... 目录引言一、压缩与解压:数据存储与传输的优化核心1. zip/unzip:通用压缩格式的便捷操作2.

sqlite3 命令行工具使用指南

《sqlite3命令行工具使用指南》本文系统介绍sqlite3CLI的启动、数据库操作、元数据查询、数据导入导出及输出格式化命令,涵盖文件管理、备份恢复、性能统计等实用功能,并说明命令分类、SQL语... 目录一、启动与退出二、数据库与文件操作三、元数据查询四、数据操作与导入导出五、查询输出格式化六、实用功