|updatedisclaimer| Shapes grid =========== Add grid values to points ------------------------- Description ........... Creates a new vector layer as a result of the union of a points layer with the interpolated value of one or more base background grid layer(s). This way, the new layer created will have a new column in the attribute table that reflects the interpolated value of the background grid. Parameters .......... ``Points`` [vector: point] Input layer. ``Grids`` [multipleinput: rasters] Background grid layer(s) ``Interpolation`` [selection] interpolation method to use. Options: * 0 --- [0] Nearest Neighbor * 1 --- [1] Bilinear Interpolation * 2 --- [2] Inverse Distance Interpolation * 3 --- [3] Bicubic Spline Interpolation * 4 --- [4] B-Spline Interpolation Default: *0* Outputs ....... ``Result`` [vector] The resulting layer. Console usage ............. :: processing.runalg('saga:addgridvaluestopoints', shapes, grids, interpol, result) See also ........ Add grid values to shapes ------------------------- Description ........... Parameters .......... ``Shapes`` [vector: any] ``Grids`` [multipleinput: rasters] ``Interpolation`` [selection] Options: * 0 --- [0] Nearest Neighbor * 1 --- [1] Bilinear Interpolation * 2 --- [2] Inverse Distance Interpolation * 3 --- [3] Bicubic Spline Interpolation * 4 --- [4] B-Spline Interpolation Default: *0* Outputs ....... ``Result`` [vector] Console usage ............. :: processing.runalg('saga:addgridvaluestoshapes', shapes, grids, interpol, result) See also ........ Clip grid with polygon ---------------------- Description ........... Parameters .......... ``Input`` [raster] ``Polygons`` [vector: polygon] Outputs ....... ``Output`` [raster] Console usage ............. :: processing.runalg('saga:clipgridwithpolygon', input, polygons, output) See also ........ Contour lines from grid ----------------------- Description ........... Parameters .......... ``Grid`` [raster] ``Minimum Contour Value`` [number] Default: *0.0* ``Maximum Contour Value`` [number] Default: *10000.0* ``Equidistance`` [number] Default: *100.0* Outputs ....... ``Contour Lines`` [vector] Console usage ............. :: processing.runalg('saga:contourlinesfromgrid', input, zmin, zmax, zstep, contour) See also ........ Gradient vectors from directional components -------------------------------------------- Description ........... Parameters .......... ``X Component`` [raster] ``Y Component`` [raster] ``Step`` [number] Default: *1* ``Size Range Min`` [number] Default: *25.0* ``Size Range Max`` [number] Default: *100.0* ``Aggregation`` [selection] Options: * 0 --- [0] nearest neighbour * 1 --- [1] mean value Default: *0* ``Style`` [selection] Options: * 0 --- [0] simple line * 1 --- [1] arrow * 2 --- [2] arrow (centered to cell) Default: *0* Outputs ....... ``Gradient Vectors`` [vector] Console usage ............. :: processing.runalg('saga:gradientvectorsfromdirectionalcomponents', x, y, step, size_min, size_max, aggr, style, vectors) See also ........ Gradient vectors from direction and length ------------------------------------------ Description ........... Parameters .......... ``Direction`` [raster] ``Length`` [raster] ``Step`` [number] Default: *1* ``Size Range Min`` [number] Default: *25.0* ``Size Range Max`` [number] Default: *100.0* ``Aggregation`` [selection] Options: * 0 --- [0] nearest neighbour * 1 --- [1] mean value Default: *0* ``Style`` [selection] Options: * 0 --- [0] simple line * 1 --- [1] arrow * 2 --- [2] arrow (centered to cell) Default: *0* Outputs ....... ``Gradient Vectors`` [vector] Console usage ............. :: processing.runalg('saga:gradientvectorsfromdirectionandlength', dir, len, step, size_min, size_max, aggr, style, vectors) See also ........ Gradient vectors from surface ----------------------------- Description ........... Parameters .......... ``Surface`` [raster] ``Step`` [number] Default: *1* ``Size Range Min`` [number] Default: *25.0* ``Size Range Max`` [number] Default: *100.0* ``Aggregation`` [selection] Options: * 0 --- [0] nearest neighbour * 1 --- [1] mean value Default: *0* ``Style`` [selection] Options: * 0 --- [0] simple line * 1 --- [1] arrow * 2 --- [2] arrow (centered to cell) Default: *0* Outputs ....... ``Gradient Vectors`` [vector] Console usage ............. :: processing.runalg('saga:gradientvectorsfromsurface', surface, step, size_min, size_max, aggr, style, vectors) See also ........ Grid statistics for polygons ---------------------------- Description ........... Parameters .......... ``Grids`` [multipleinput: rasters] ``Polygons`` [vector: polygon] ``Number of Cells`` [boolean] Default: *True* ``Minimum`` [boolean] Default: *True* ``Maximum`` [boolean] Default: *True* ``Range`` [boolean] Default: *True* ``Sum`` [boolean] Default: *True* ``Mean`` [boolean] Default: *True* ``Variance`` [boolean] Default: *True* ``Standard Deviation`` [boolean] Default: *True* ``Quantiles`` [number] Default: *0* Outputs ....... ``Statistics`` [vector] Console usage ............. :: processing.runalg('saga:gridstatisticsforpolygons', grids, polygons, count, min, max, range, sum, mean, var, stddev, quantile, result) See also ........ Grid values to points (randomly) -------------------------------- Description ........... Parameters .......... ``Grid`` [raster] ``Frequency`` [number] Default: *100* Outputs ....... ``Points`` [vector] Console usage ............. :: processing.runalg('saga:gridvaluestopointsrandomly', grid, freq, points) See also ........ Grid values to points --------------------- Description ........... Parameters .......... ``Grids`` [multipleinput: rasters] ``Polygons`` [vector: any] Optional. ``Exclude NoData Cells`` [boolean] Default: *True* ``Type`` [selection] Options: * 0 --- [0] nodes * 1 --- [1] cells Default: *0* Outputs ....... ``Shapes`` [vector] Console usage ............. :: processing.runalg('saga:gridvaluestopoints', grids, polygons, nodata, type, shapes) See also ........ Local minima and maxima ----------------------- Description ........... Parameters .......... ``Grid`` [raster] Outputs ....... ``Minima`` [vector] ``Maxima`` [vector] Console usage ............. :: processing.runalg('saga:localminimaandmaxima', grid, minima, maxima) See also ........ Vectorising grid classes ------------------------ Description ........... Parameters .......... ``Grid`` [raster] ``Class Selection`` [selection] Options: * 0 --- [0] one single class specified by class identifier * 1 --- [1] all classes Default: *0* ``Class Identifier`` [number] Default: *0* ``Vectorised class as...`` [selection] Options: * 0 --- [0] one single (multi-)polygon object * 1 --- [1] each island as separated polygon Default: *0* Outputs ....... ``Polygons`` [vector] Console usage ............. :: processing.runalg('saga:vectorisinggridclasses', grid, class_all, class_id, split, polygons) See also ........