MagicWand

(★ 48)

A QGIS plugin to make polygon easily and automatically with MapCanvas.

File Explorer

  • .gitignore
  • __init__.py
  • click_tool.py
  • conftest.py
  • icon.png
  • image_analyzer.py
  • LICENSE
  • magic_wand.py
  • magic_wand_dockwidget.py
  • metadata.txt
  • polygon_maker.py
  • preview_session.py
  • pyproject.toml
  • README.md
  • uv.lock

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

pip3

View Details ▼

This command is an alias of `pip`.

tldr pip

View documentation for the original command:

🔍

qgis_process

View Details ▼

Run QGIS processing algorithms from the command line without opening the GUI.
See also: `qgis`.

qgis_process list

List all available processing algorithms:

qgis_process help {{algorithm_id}}

Display help for a specific algorithm:

qgis_process run {{algorithm_id}} {{--PARAMETER1=value1 --PARAMETER2=value2 ...}}

Run a processing algorithm with parameters:

🔍

uv run

View Details ▼

Run a command or script in the project environment.

uv run {{path/to/script.py}}

Run a Python script:

uv run {{[-m|--module]}} {{module_name}}

Run a Python module:

uv run {{[-w|--with]}} {{package}} {{command}}

Run a command with additional packages installed temporarily:

🔍

uv sync

View Details ▼

Update the project's environment to match the lockfile.

uv sync

Sync the project environment with the lockfile:

uv sync --all-extras

Sync and include all optional dependencies:

uv sync --extra {{extra_name}}

Sync with specific optional dependencies:

🔍

xvfb-run

View Details ▼

Run a command in a virtual X server environment.

xvfb-run {{command}}

Run the specified command in a virtual X server:

xvfb-run {{[-a|--auto-servernum]}} {{command}}

Try to get a free server number, if the default (99) is not available:

xvfb-run {{[-s|--server-args]}} "{{-screen 0 1024x768x24}}" {{command}}

Pass arguments to the Xvfb server:

// repository documentation