Extends QGIS processing with additional algorithms.
- Unzip File (
unzipfile): Extracts a ZIP archive to a destination folder. - Update Field (
updatefield): Evaluate an expression per feature and write the result to a field (optional feature filter). - Glob Files (
globfiles): Search a directory with a glob pattern and return matching paths. - Copy File (
copyfile): Copy a file to a destination (optional overwrite). - Make Folder (
makefolder): Create a folder (no error if it already exists). - File Path Operations (
filepathops): Return parts of a path (parent, basename, name, extension).
- Unzip:
- Input: path to
archive.zip - Output: folder where files are extracted
- Input: path to
- Glob Files (recursive):
- Input folder:
C:\data - Pattern:
*.shp - Recursive: true
- Output: list of file paths as strings
- Input folder:
- Update Field:
- Target layer: vector layer
- Field to update:
my_field - Expression:
length($geometry)(or any valid QGIS expression) - Filter: optionally
population > 1000
Open issues or send pull requests in the repository.
GPLv2 or later