Skip to content

Commit 5442eb8

Browse files
committed
Fix some mispellings
1 parent 74c8b6f commit 5442eb8

13 files changed

Lines changed: 23 additions & 23 deletions

src/content/docs/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ We don't have many rules. Follow the guidelines indicated in the [Contributing](
1717

1818
## Setup a Development Environment
1919

20-
Follow the [WebODM docker installation instructions](https://github.com/WebODM/WebODM##manual-installation-docker), then run:
20+
Follow the [WebODM docker installation instructions](https://github.com/WebODM/WebODM/#manual-installation-docker), then run:
2121

2222
`./webodm.sh start --dev`
2323

src/content/docs/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ WebODM is free and open source software, released under the [AGPLv3](https://git
4343

4444
Nope, sorry!
4545

46-
## Your computer is running out of memory, what can you do?
46+
## Your computer is running out of memory. What can you do?
4747

4848
1. First you can buy more RAM, this is the ultimate and final solution.
4949
2. Alternatively you can resize the images when uploading and/or tweak your quality settings.

src/content/docs/flying-tips.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The 45-degree cross-grid flight provides the basis for a fully tied together mod
1414

1515
## Data Collection Effort, 2D and 2.5D Products
1616

17-
For best in class results 2D and 2.5D products, we recommend the following:
17+
For best in class results for 2D and 2.5D products, we recommend the following:
1818

1919
- 70-80% overlap slightly off-nadir (5-10 degree off nadir)
2020

src/content/docs/ground-control-points.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Ground control points are useful for correcting distortions in the data and refe
77

88
A Ground Control Point (GCP) is a position measurement made on the ground, typically using a high precision GPS.
99

10-
Ground control points can be set existing structures like pavement corners, lines on a parking lot or contrasting color floor tiles, otherwise can be set using targets placed on the ground.
10+
Ground control points can be set on existing structures like pavement corners, lines on a parking lot or contrasting color floor tiles, otherwise can be set using targets placed on the ground.
1111

1212
Targets can be purchased or built with an ample variety of materials ranging from bucket lids to floor tiles.
1313

@@ -17,7 +17,7 @@ Keep ground control points visible for all camera locations. Consider the expect
1717

1818
Procure an evenly horizontal distribution of the GCPs within the project, covering high and low elevations. A minimum of 5 GCP works for most of the jobs, and for larger projects 8–10 are sufficient. Locate some points near the corners and others in the center, considering that GCP spacing should be larger than the image footprint so that you can't see more than one GCP in a single image.
1919

20-
In order to ensure each GCP are found in at least 5 images, separate the points 10 to 30 meters from the perimeter of the project. This distance is dependent of the overlapping, so increasing overlapping should reduce the required distance from the perimeter.
20+
In order to ensure GCPs are found in at least 5 images, separate the points 10 to 30 meters from the perimeter of the project. This distance is dependent on the overlap, so increasing overlap should reduce the required distance from the perimeter.
2121

2222
### GCP File Format
2323

@@ -146,7 +146,7 @@ Each project has specific accuracy needs to be met. For instance assessing the p
146146

147147
### What to Expect
148148

149-
In general terms, one can expect the relative accuracy to be in the order of 1 to 3 times the average GSD for the dataset. And as for the absolute accuracy, one must consider that it is dependent of the GPS unit mounted in the UAV but the horizontal accuracy of a standard GPS is usually in the range of 2 to 6 meters and the vertical accuracy between 3 to 4 times the horizontal accuracy.
149+
In general terms, one can expect the relative accuracy to be in the order of 1 to 3 times the average GSD for the dataset. And as for the absolute accuracy, one must consider that it is dependent on the GPS unit mounted in the UAV but the horizontal accuracy of a standard GPS is usually in the range of 2 to 6 meters and the vertical accuracy between 3 to 4 times the horizontal accuracy.
150150

151151
When using GCP, absolute accuracy can be improved to 2.5 times GSD for the horizontal accuracy and 4 times the GSD for the vertical accuracy (Madawalagama 2016).
152152

src/content/docs/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ If you are planning to process large amounts of data or you're running out of di
7777

7878
| Argument | Description |
7979
| ------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
80-
| `--node-dir` | Path where temporary files will be stored during processing when using the default node. Safe the change. |
81-
| `--media-dir` | Where all files related to a project and task are permanently stored. Try not change this folder after the first startup, unless as part of a [migration](#backup-and-restore). |
80+
| `--node-dir` | Path where temporary files will be stored during processing when using the default node. Safe to change. |
81+
| `--media-dir` | Where all files related to a project and task are permanently stored. Try not to change this folder after the first startup, unless as part of a [migration](#backup-and-restore). |
8282

8383
## Installation on other machines
8484

src/content/docs/options-flags.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ Choose the algorithm for extracting keypoints and computing descriptors.
164164

165165
## force-gps
166166

167-
Use images' GPS exif data for reconstruction, even if there are GCPs present.This flag is useful if you have high precision GPS measurements. If there are no GCPs, this flag does nothing.
167+
Use images' GPS exif data for reconstruction, even if there are GCPs present. This flag is useful if you have high precision GPS measurements. If there are no GCPs, this flag does nothing.
168168

169169
**Default:** `False`
170170

src/content/docs/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ In this tutorial we'll explore how to process an orthophoto from a set of aerial
1515

1616
<aside class="notice">Most of the examples in this document use <a href="http://docs.python-requests.org/en/latest/index.html" target="_blank">requests</a>. Make sure it's installed before running any code:<br/><br/>
1717

18-
<pre class="higlight shell">
18+
<pre class="highlight shell">
1919
$ pip install requests
2020
</pre>
2121
</aside>

src/content/docs/reference/admin.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ email | | "" | User email
9999

100100
`GET /api/admin/users/?email=user@example.com`
101101

102-
Retrieves projects that have a email of "user@example.com".
102+
Retrieves users that have an email of "user@example.com".
103103

104104

105105
## Admin/Groups
@@ -165,16 +165,16 @@ Parameters are the same as above.
165165
`GET /api/admin/groups/{id}/`
166166

167167

168-
### Get list of group
168+
### Get list of groups
169169

170170
`GET /api/admin/groups/`
171171

172172
Parameter | Required | Default | Description
173173
--------- | -------- | ------- | -----------
174174
name | | "" | Group name
175175

176-
#### Example: Filtering by email
176+
#### Example: Filtering by name
177177

178178
`GET /api/admin/groups/?name=Xyz`
179179

180-
Retrieves projects that have a name of "Xyz".
180+
Retrieves groups that have a name of "Xyz".

src/content/docs/reference/task.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,13 @@ Parameters are the same as above.
9494

9595
`POST /api/projects/{project_id}/tasks/import`
9696

97-
Import task that have been processed by another WebODM instance (or via [webodm.net](https://webodm.net) or NodeODX)
97+
Import tasks that have been processed by another WebODM instance (or via [webodm.net](https://webodm.net) or NodeODX)
9898

9999
Parameter | Required | Default | Description
100100
--------- | -------- | ------- | ----------
101101
name | | Imported Task | User defined name for the task.
102102
filename | */ | "" | File with assets. Must be a zip.
103-
url | /* | "" | URL to zipped zipped assets.
103+
url | /* | "" | URL to zipped assets.
104104

105105
You have to provide either `filename` or `url` parameter (but not both) in order to import created assets.
106106

@@ -246,5 +246,5 @@ Status | Code | Description
246246
QUEUED | 10 | [Task](/reference/task/)'s files have been uploaded to a [Processing Node](/reference/processingnode/) and are waiting to be processed.
247247
RUNNING | 20 | [Task](/reference/task/) is currently being processed.
248248
FAILED | 30 | [Task](/reference/task/) has failed for some reason (not enough images, out of memory, Piero forgot to close a parenthesis, etc.)
249-
COMPLETED | 40 | [Task](/reference/task/) has completed. Assets are be ready to be downloaded.
249+
COMPLETED | 40 | [Task](/reference/task/) has completed. Assets are ready to be downloaded.
250250
CANCELED | 50 | [Task](/reference/task/) was manually canceled by the user.

src/content/docs/tutorials/large-datasets.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ WebODM can also automatically distribute the processing of each submodel to mult
3939

4040
### Getting Started with Distributed Split-Merge
4141

42-
The first step is start ClusterODX:
42+
The first step is to start ClusterODX:
4343

4444
```bash
4545
docker run -ti -p 3001:3000 -p 8080:8080 webodm/clusterodx
@@ -176,7 +176,7 @@ The 45-degree cross-grid flight provides the basis for a fully tied together mod
176176

177177
### Data Collection Effort, 2D and 2.5D Products
178178

179-
For best in class results 2D and 2.5D products and 5cm resolution, it is feasible to collect 2–4 km² per person, per day. This requires the following set of flights:
179+
For best in class results for 2D and 2.5D products and 5cm resolution, it is feasible to collect 2–4 km² per person, per day. This requires the following set of flights:
180180

181181
- 70-80% overlap slightly off-nadir (5-10 degree off nadir)
182182

0 commit comments

Comments
 (0)