Skip to main content

QGIS plugin with a map tool to reshape a continuous segment topogically.

Project description

segment-reshape-qgis-plugin

QGIS plugin with a map tool to reshape a continuous segment topogically.

Plugin

Segment reshape tool plugin is available from the QGIS plugin repository. It provides a simple toolbar with one action. Action will activate a segment reshape map tool, with which a common segment portion can be clicked and a new segment can be digitized. After digitizing the features are edited to match the new common segment.

Library

To use this library as an external dependency in your plugin or other Python code, install it using pip install segment-reshape-qgis-plugin and use imports from the provided segment_reshape package. If used in a plugin, library must be installed in the runtime QGIS environment or use qgis-plugin-dev-tools to bundle your plugin with runtime dependencies included.

API documentation

Simple use case can be seen in integration test.

Finding common segment

segment_reshape.topology.find_related.find_segment_to_reshape calculates the line segment between features that share equal sequence of vertices along their edges at the trigger location. By default all QGIS project layers are used to find connected features if topological editing is enabled. Custom list of layers can also be passed as an argument.

Return values are:

  • Common segment (None if not found)
  • Features that share the common segment (and relevant vertex indices)
  • Features that share the end points of the common segment (and relevant vertex index)

Editing geometries partially

segment_reshape.geometry.reshape.make_reshape_edits reshapes the provided common parts and edges, so that common part shared vertex indices are replaced and edges are moved to match the reshaped geometry. Output of find_segment_to_reshape (common parts & edges) can be used as input for this function.

Map tool

Map tool is found in segment_reshape.map_tool.segment_reshape_tool.SegmentReshapeTool, it can be subclassed or used as is in custom plugins.

The Map Tool should be taken into use as follows:

from segment_reshape.map_tool.segment_reshape_tool import (
    SegmentReshapeTool,
    SegmentReshapeToolHandler,
)

class SegmentReshapePlugin(QObject):
    def __init__(self, iface) -> None:
        super().__init__(parent=None)
        self.iface = iface

        self.segment_reshape_tool = SegmentReshapeTool(iface.mapCanvas())

    def initGui(self) -> None:
        self.segment_reshape_tool_action = QAction(
            QIcon(resources_path("icons/segment_reshape.svg")),
            self.tr("Reshape common segment"),
            self.iface.mainWindow(),
        )
        self.segment_reshape_tool_handler = SegmentReshapeToolHandler(
            self.segment_reshape_tool, self.segment_reshape_tool_action
        )
        self.iface.registerMapToolHandler(self.segment_reshape_tool_handler)

        self.toolbar = iface.addToolBar(
            self.tr("Segment reshape toolbar"),
        )
        self.toolbar.addAction(self.segment_reshape_tool_action)

Development of segment-reshape-qgis-plugin

See development readme.

License & copyright

Licensed under GNU GPL v3.0.

Copyright (C) 2022 National Land Survey of Finland.

CHANGELOG

0.1.4 - 2023-04-14

  • Feature: Change the mouse cursor to the wait cursor when finding common segment os editing is in progress
  • Performance improvments. Finding a common segment should now be a magnitude faster with large geometries.

0.1.3 - 2023-03-23

  • Feature: Digitizing the new geometry for a segment behaves now as the native QGIS digitizing tools. It supports etc. snapping, tracing and advanced cad tools.
  • Feature: Map tool button is enabled only when a line or polygon layer is active. This is implemented through MapToolHandler which ensures that the tool behaves like rest of the map tools. This means also that the tool can be deactivated only by selecting another map tool.
  • Fix: Color of the start point indicator line was changed to grey to make difference to the digitized line.

0.1.2 - 2023-02-23

  • Feature: Set z coordinate values of the reshaped geometry to QGIS's default z coordinate value instead of NaN

0.1.1 - 2023-01-17

  • Fix: Correcly move multiple edges for same feature.

0.1.0 - 2022-12-14

  • Feature: Add support for key commands (backspace and esc) in vertex editing.
  • Fix: In cases where segment was split from the middle the start and end parts of the line is correctly merged back together.
  • Fix: Geometry comparison was fixed so that only common vertices between geometries are taken into account. Before edges were split if an edge crossed other edge also from non vertex point.
  • Feature: Preserve source feature z coordinate for calculated segment.

0.0.3 - 2022-11-17

  • Fix: Fix missing toolbar icon by including resource files in setuptools build.

0.0.2 - 2022-11-09

  • Feature: Implement a QGIS plugin with a simple toolbar.
  • Feature: Add map tool for selecting and drawing the reshape geometry.
  • Feature: Support complex calculation for the common segment.
  • Feature: Add snapping support when drawing the reshape geometry.

0.0.1 - 2022-10-28

  • Initial release: API for finding common segments and making reshape edits.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

segment-reshape-qgis-plugin-0.1.4.tar.gz (31.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

segment_reshape_qgis_plugin-0.1.4-py3-none-any.whl (36.7 kB view details)

Uploaded Python 3

File details

Details for the file segment-reshape-qgis-plugin-0.1.4.tar.gz.

File metadata

File hashes

Hashes for segment-reshape-qgis-plugin-0.1.4.tar.gz
Algorithm Hash digest
SHA256 210608c3a34634a7fa280114ff8506120414d7be00324ef68af534add41acd24
MD5 b24d17765b265b3f4b1374845c44d4d6
BLAKE2b-256 98549a80bc9b7ad80b20f8cb717b70c94aa34709fa91882fe4275ca3ac4b57a5

See more details on using hashes here.

File details

Details for the file segment_reshape_qgis_plugin-0.1.4-py3-none-any.whl.

File metadata

File hashes

Hashes for segment_reshape_qgis_plugin-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 79ffeaf41bce3dd3279193a48ad1febd3dc948dfaf8c9e1a1bd2c56a5453687d
MD5 7344b3bcf393fb5f809fb876e87c8cea
BLAKE2b-256 8a2c2ccb8af9dc90e18b657c2f08ecda97531914d268b07b3ac7dc7f41249826

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page