__init__.py
fft_filter_dialog.py
Makefile
resources.qrc
resources.py
Other pregenerated files were changed:
fft_filter_dialog_base.ui
fft_filter_dialog_base.py
fft_filter.py
icon.png
metadata.txt
README.html
README.txt
Other files are new:
LICENSE.txt - GPL 3.0
docs/ - subdirectory for documentation
docs/version0.1.1.txt - what's new in current version
docs/documentation.html
docs/documentation.txt
examples/ - example data
examples/metadata.txt - documentation of examples
examples/smallaster.img - raster example taken from Chris Garrard's Python for Geoprocessing course materials
__init__
tr
add_action
initGui
unload
select_output_file
Other methods are new:
parameters:
in_layer - input layer as an object of class QgsRasterLayer.
out_path - path to the output layer.
size (optional) - size of the filtering buffer in pixels. Default is 10.
edge (optional) - either False for smoothing or True for edge detection. Default is False.
new_crs (optional) - coordinate system as an object of class QgsCoordinateReferenceSystem. Default is None.
tiled (optional) - True means the windowed algorithm will be used. Default is False.
tilerows (optional) - size of the tile's x-axis. Default 0 means that either tilecols, raster's native blocks or windows computed from the filter size will be used (in this order).
tilecols (optional) - size of the tile's y-axis. Default 0 means that either tilerows, raster's native blocks or windows computed from the filter size will be used (in this order).
add_layer (optional) - True means the output layer will be added to the map. Default is True.
Return value: void
parameters:
in_path - path to the output layer.
out_path - path to the output layer.
size (optional) - size of the filtering buffer in pixels. Default is 10.
edge (optional) - either False for smoothing or True for edge detection. Default is False.
new_crs (optional) - coordinate system as an object of class QgsCoordinateReferenceSystem. Default is None.
tiled (optional) - True means the windowed algorithm will be used. Default is False.
tilerows (optional) - size of the tile's x-axis. Default 0 means that either tilecols, raster's native blocks or windows computed from the filter size will be used (in this order).
tilecols (optional) - size of the tile's y-axis. Default 0 means that either tilerows, raster's native blocks or windows computed from the filter size will be used (in this order).
add_layer (optional) - True means the output layer will be added to the map. Default is True.
Return value: output layer - QgsRasterLayer
Return value: either generator or array of windows