Skip to content

Commit 0eb6706

Browse files
committed
fixed some typos
1 parent d389252 commit 0eb6706

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# geodesics
1+
# vincenty
22

33
Solver for the inverse geodesic problem in Swift.
44

55
The inverse geodesic problem must be solved to compute the distance between two points on an oblate spheroid, or
66
ellipsoid in general. The generalization to ellipsoids, which are not oblate spheroids is not further considered here,
77
hence the term ellipsoid will be used synonymous with oblate spheroid.
88

9-
The distance between two points is also know as the
9+
The distance between two points is also known as the
1010
[Vincenty distance](https://en.wikipedia.org/wiki/Vincenty's_formulae).
1111

1212
Here is an example to compute the distance between two points (the poles in this case) on the
@@ -15,7 +15,7 @@ Here is an example to compute the distance between two points (the poles in this
1515
import geodesics
1616
let d = try distance((lat: Double.pi / 2,lon: 0), (lat: -Double.pi / 2, lon: 0))
1717

18-
and that it.
18+
and that's it.
1919

2020
## Implementation Details
2121

@@ -35,7 +35,7 @@ Convergence and the accuracy of the result can be controlled via two parameters.
3535
By default the
3636
[WGS 84 ellipsoid](https://en.wikipedia.org/wiki/World_Geodetic_System)
3737
is employed, but different parameters can be specified, e.g. for the
38-
[GRS 80 ellipsoid](https://en.wikipedia.org/wiki/GRS_80)
38+
[GRS 80 ellipsoid](https://en.wikipedia.org/wiki/GRS_80).
3939

4040
try distance((lat: Double.pi / 2, lon: 0), (lat: -Double.pi / 2, lon: 0),
4141
ellipsoid (a: 6378137.0, f: 1/298.257222100882711))

0 commit comments

Comments
 (0)