Skip to content

Commit 6e0e6ec

Browse files
authored
Merge pull request #3 from icweaver/icweaver/docs
2 parents a9b878a + 47d7adb commit 6e0e6ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/gettingstarted.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
## Keplerian Orbits
55

6-
Let's dive straight into some of the features Orbits.jl offers. Keplerian orbits are the backbone of astrodynamics, and we provide a "kitchen-sink" style [`KeplerianOrbit`](@ref). This means it wall try and parse whichever keyword arguments you provide, with units, uncertainties, and more thanks to Julia's composability. Here we present the orbital solution for the binary system SAO 136799, as derived by Tokovinin et al. 2015[^1]
6+
Let's dive straight into some of the features Orbits.jl offers. Keplerian orbits are the backbone of astrodynamics, and we provide a "kitchen-sink" style [`KeplerianOrbit`](@ref). This means it will try and parse whichever keyword arguments you provide, with units, uncertainties, and more thanks to Julia's composability. Here we present the orbital solution for the binary system SAO 136799, as derived by Tokovinin et al. 2015[^1]
77

88
```@example kep
99
using Measurements
@@ -37,7 +37,7 @@ scatter!([0], [0], c=:black, marker=:+, lab="SAO 136799A")
3737

3838
## Calculating ephemerides
3939

40-
Using out above orbit, let's figure out the position of the secondary star on a specific date
40+
Using our above orbit, let's figure out the position of the secondary star on a specific date
4141

4242
```@example kep
4343
using Dates
@@ -80,7 +80,7 @@ scatter([deg2rad(pa - 270)], [sep], proj=:polar, lab="SAO 136799B")
8080

8181
### SkyCoords.jl
8282

83-
These ephemerides can be translated into SkyCoords easily-
83+
These ephemerides can be translated into [SkyCoords](http://juliaastro.org/SkyCoords.jl/stable/) easily
8484

8585
```@example kep
8686
using AstroAngles

0 commit comments

Comments
 (0)