@@ -62,7 +62,7 @@ A note on vector layer selections
62
62
By default, when an external algorithm takes a vector layer, it will use
63
63
all its features, even if a selection exist in QGIS. You can make an
64
64
external algorithm aware of that selection by checking the *Use selected
65
- features in eternal applications* item in the *General* settings group.
65
+ features in external applications* item in the *General* settings group.
66
66
When you do so, each time you execute an external algorithm that uses a
67
67
vector layer, the selected features of that layer will be exported to a
68
68
new layer, and the algorithm will work with that new layer instead.
@@ -100,7 +100,7 @@ parameter values, SEXTANTE will show an error message. This is because
100
100
the algorithm descriptions (needed to create the parameters dialog and
101
101
give SEXTANTE the information it needs about the algorithm) are not
102
102
included with SAGA, but with SEXTANTE instead. That is, they are part of
103
- SEXTANTE, so you have them in yur installation even if you have not
103
+ SEXTANTE, so you have them in your installation even if you have not
104
104
installed SEXTANTE. Running the algorithm, however, needs SAGA binaries
105
105
installed in your system.
106
106
@@ -111,7 +111,7 @@ Most of SAGA algorithms that require several input raster layers,
111
111
require them to have the same grid system. That is, to cover the same
112
112
geographic area and have the same cellsize, so their corresponding grids
113
113
match. When calling SAGA algorithms from SEXTANTE, you can use any
114
- layer, regarless of its cellsize and extent. When multiple raster layers
114
+ layer, regardless of its cellsize and extent. When multiple raster layers
115
115
are used as input for a SAGA algorithm, SEXTANTE resamples them to a
116
116
common grid system and then passes them to SAGA (unless the SAGA
117
117
algorithm can operate with layers from different grid systems).
@@ -235,7 +235,7 @@ Knowing that, we can now understand the first line of our example script
235
235
pts=spsample(polyg,numpoints,type="random")
236
236
237
237
The variable ``polygon`` already contains a ``SpatialPolygonsDataFrame``
238
- object, so it can be usedto call the ``spsample`` method, just like the
238
+ object, so it can be used to call the ``spsample`` method, just like the
239
239
``numpoints`` one, which indicates the number of points to add to the
240
240
created sample grid.
241
241
@@ -269,7 +269,7 @@ layer:
269
269
>lillie.test(layer[[field]])
270
270
271
271
The output ot the last line is printed, but the output of the first is
272
- not (and neither are the otputs from other command lines added
272
+ not (and neither are the outputs from other command lines added
273
273
automatically by SEXTANTE).
274
274
275
275
If your algorithm creates any kind of graphics (using the ``plot()``
0 commit comments