Skip to content

Commit 31fa01c

Browse files
author
paolo.cavallini
committedJun 1, 2012
Corrected several misprints in help.
git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@208 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d
1 parent c470be2 commit 31fa01c

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed
 

‎src/sextante/help/_sources/3rdParty.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ A note on vector layer selections
6262
By default, when an external algorithm takes a vector layer, it will use
6363
all its features, even if a selection exist in QGIS. You can make an
6464
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.
6666
When you do so, each time you execute an external algorithm that uses a
6767
vector layer, the selected features of that layer will be exported to a
6868
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
100100
the algorithm descriptions (needed to create the parameters dialog and
101101
give SEXTANTE the information it needs about the algorithm) are not
102102
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
104104
installed SEXTANTE. Running the algorithm, however, needs SAGA binaries
105105
installed in your system.
106106

@@ -111,7 +111,7 @@ Most of SAGA algorithms that require several input raster layers,
111111
require them to have the same grid system. That is, to cover the same
112112
geographic area and have the same cellsize, so their corresponding grids
113113
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
115115
are used as input for a SAGA algorithm, SEXTANTE resamples them to a
116116
common grid system and then passes them to SAGA (unless the SAGA
117117
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
235235
pts=spsample(polyg,numpoints,type="random")
236236

237237
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
239239
``numpoints`` one, which indicates the number of points to add to the
240240
created sample grid.
241241

@@ -269,7 +269,7 @@ layer:
269269
>lillie.test(layer[[field]])
270270

271271
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
273273
automatically by SEXTANTE).
274274

275275
If your algorithm creates any kind of graphics (using the ``plot()``

‎src/sextante/help/_sources/console.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ algorithms: ``runalg``. Its syntax is as follows:
128128
> runalg{name_of_the_algorithm, param1, param2, ..., paramN,
129129
Output1, Output2, ..., OutputN)
130130

131-
The list of parameters and ouputs to add depends on the algorithm you
131+
The list of parameters and outputs to add depends on the algorithm you
132132
want to run, and is exactly the list that the ``describealg`` method
133133
gives you, in the same order as shown.
134134

@@ -190,7 +190,7 @@ For output data objects, type the filepath to be used to save it, just
190190
as it is done from the toolbox. If you want to save the result to a
191191
temporary file, use ``None``. The extension of the file determines the
192192
file format. If you enter a file extension not included in the ones
193-
supportede by the algorithm, the default file format for that output
193+
supported by the algorithm, the default file format for that output
194194
type will be used, and its corresponding extension appended to the given
195195
filepath.
196196

@@ -289,7 +289,7 @@ SEXTANTE supports in its scripts, their syntax and some examples.
289289

290290
The parameter name is the name that will be shown to the user when
291291
executing the algorithm, and also the variable name to use in the script
292-
code. The value entered by the user for that parameter will be asigned
292+
code. The value entered by the user for that parameter will be assigned
293293
to a variable with that name.
294294

295295
Layers and tables values are strings containing the filepath of the
@@ -310,7 +310,7 @@ Outputs are defined in a similar manner, using the following tags:
310310

311311
- ``output file``
312312

313-
The value asigned to the output variables is always a string with a
313+
The value assigned to the output variables is always a string with a
314314
filepath. It will correspond to a temporary filepath in case the user
315315
has not entered any output filename.
316316

@@ -320,7 +320,7 @@ method does not load the layers it produces, the final TWI layer will be
320320
loaded, since it is saved to the file entered by the user, which is the
321321
value of the corresponding output.
322322

323-
Do not use the ``load()`` method in your scripta algorithms, but just
323+
Do not use the ``load()`` method in your script algorithms, but just
324324
when working with the console line. If a layer is created as output of
325325
an algorithm, it should be declared as such. Otherwise, you will not be
326326
able to properly use the algorithm in the modeler, since its syntax (as

‎src/sextante/help/_sources/intro.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ Basic elements of the SEXTANTE GUI
1414
----------------------------------
1515

1616
There are four basic elements in the SEXTANTE GUI, which are used to run
17-
SEXTANTE algorithms for different purposes. Chosing one tool or another
17+
SEXTANTE algorithms for different purposes. Choosing one tool or another
1818
will depend on the kind of analysis that is to be performed and the
1919
particular characteristics of each user and project. All of them (except
2020
for the batch processing interface, which is called from the toolbox, as
21-
we will see) can be accesed from the *SEXTANTE* menu item (you will see
21+
we will see) can be accessed from the *SEXTANTE* menu item (you will see
2222
more than four entries. The remaining ones are not used to execute
2323
algorithms and will be explained later in this chapter).
2424

‎src/sextante/help/_sources/toolbox.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ the plugin manager), making them more useful, since they can be executed
3030
from elements such as the modeler or the batch processing interface,
3131
which we will soon describe.
3232

33-
Additionaly, two more providers can be found, namely Models and
33+
Additionally, two more providers can be found, namely Models and
3434
*Scripts*. This providers include user-created algorithms, and allow you
3535
to define your own workflows and processing tasks. We will devote a full
3636
section to them a bit later.
@@ -249,7 +249,7 @@ left-hand side of the dialog.
249249

250250
Along with the aforementioned *Output folder* entry, the *General* block
251251
contains parameters for setting the default rendering style for SEXTANTE
252-
layers (that is, layers generated by using algorihtms from any of the
252+
layers (that is, layers generated by using algorithms from any of the
253253
SEXTANTE components). Just create the style you want using QGIS, save it
254254
to a file, and then enter the path to that file in the settings so
255255
SEXTANTE can use it. Whenever a layer is loaded by SEXTANTE and added to

0 commit comments

Comments
 (0)
Please sign in to comment.