Skip to content

Commit

Permalink
Remove plots to fix documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
duncaneddy committed May 28, 2024
1 parent 4b61985 commit 0e7eef3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ makedocs(
canonical="https://sisl.github.io/SatelliteDynamics.jl",
edit_link="main",
assets=String[],
prettyurls = false # get(ENV, "CI", nothing) == "true"
prettyurls = get(ENV, "CI", nothing) == "true"
),
sitename = "SatelliteDynamics.jl",
authors = "Duncan Eddy",
Expand Down
8 changes: 4 additions & 4 deletions docs/src/tutorials/orbit_propagation_example.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ t, epc, eci = sim!(orb, epcf)
And that's it! All it took was 6 lines of code with the SatelliteDynamics
module to propagate an orbit.

We can visualize the orbit in inertial space:
<!-- We can visualize the orbit in inertial space:
![](../plots/keplerian_orbit.svg)
Or the evolution of the orbital elements:
![](../plots/keplerian_elements.svg)
![](../plots/keplerian_elements.svg) -->

## Full Force Model

Expand Down Expand Up @@ -112,7 +112,7 @@ orb = EarthInertialState(epc0, eci0, dt=1.0,
t, epc, eci = sim!(orb, epcf)
```

We can visualize the orbit in inertial space:
<!-- We can visualize the orbit in inertial space:
![](../plots/fullforce_orbit.svg)
Expand All @@ -121,4 +121,4 @@ Or the evolution of the orbital elements:
![](../plots/fullforce_elements.svg)
From these plots we can see the effect of the orbit perturbations on each of the
orbital elements.
orbital elements. -->

0 comments on commit 0e7eef3

Please sign in to comment.