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.6 - 2023-09-06
- update author email
0.1.5 - 2023-08-16
- Fix: Add support for reshaping closed linestrings
- Fix: Add support for reshaping closed linestring partially, when the reshaped segment falls on the wraparound location
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file segment-reshape-qgis-plugin-0.1.6.tar.gz
.
File metadata
- Download URL: segment-reshape-qgis-plugin-0.1.6.tar.gz
- Upload date:
- Size: 33.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4122a74a22640f8e0718bda3aa360458457bae1b0c2932151c8859ccee78d59 |
|
MD5 | 46e6a42adefdfa4bbd9aad3f3e187512 |
|
BLAKE2b-256 | 0508ad109751b4ea93af55d4ef26acd16effd150625148c05eff461450d2436e |
File details
Details for the file segment_reshape_qgis_plugin-0.1.6-py3-none-any.whl
.
File metadata
- Download URL: segment_reshape_qgis_plugin-0.1.6-py3-none-any.whl
- Upload date:
- Size: 37.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a19bf466ad4a69602971aa4a4de67e8de1cccffb1eac868ed45ea716dc32fbe |
|
MD5 | 04141271f0aabf31eccd6a87e3752e0a |
|
BLAKE2b-256 | 19868ea7104d3ab474c307d256f03e980b84fdd4fc946a77d2d9cceb6886b258 |