You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The binary packages are hosted using [GitHub Releases](https://github.com/open-space-collective/open-space-toolkit-astrodynamics/releases).
24
-
25
-
*Note: Don't forget to set the desired version number in the URLs!*
*Nothing to download or install! This will automatically start a [JupyterLab](https://jupyterlab.readthedocs.io/en/stable/) environment in your browser with Open Space Toolkit libraries and example notebooks ready to use.*
The binary packages are hosted on [PyPI](https://pypi.org/project/open-space-toolkit-astrodynamics/):
30
+
[Docker](https://www.docker.com/) must be installed on your system.
56
31
57
-
```bash
58
-
pip install open-space-toolkit-astrodynamics
59
-
```
32
+
##### iPython
60
33
61
-
## Getting Started
62
-
63
-
Want to quickly get started? It's pretty simple.
64
-
65
-
Install [Docker](https://www.docker.com/) and try this:
34
+
The following command will start an [iPython](https://ipython.org/) shell within a container where the OSTk components are already installed:
66
35
67
36
```bash
68
37
docker run -it openspacecollective/open-space-toolkit-astrodynamics-python
69
38
```
70
39
71
-
This will start an [iPython](https://ipython.org/) shell within a container where the OSTk Astrodynamics component is already installed.
72
-
73
40
Once the shell is up and running, playing with it is easy:
74
41
75
42
```py
@@ -91,8 +58,56 @@ orbit = Orbit(SGP4(tle), earth) # Construct orbit using SGP4 model
91
58
orbit.get_state_at(Instant.now()) # Compute and display current satellite state (position, velocity)
92
59
```
93
60
61
+
By default, OSTk fetches the ephemeris from JPL, Earth Orientation Parameters (EOP) and leap second count from IERS.
62
+
63
+
As a result, when running OSTk for the first time, it may take a minute to fetch all the necessary data.
64
+
94
65
*Tip: Use tab for auto-completion!*
95
66
67
+
##### JupyterLab
68
+
69
+
The following command will start a [JupyterLab](https://jupyterlab.readthedocs.io/en/stable/) server within a container where the OSTk components are already installed:
70
+
71
+
```bash
72
+
docker run --publish=8888:8888 openspacecollective/open-space-toolkit-astrodynamics-jupyter
73
+
```
74
+
75
+
Once the container is running, access [http://localhost:8888/lab](http://localhost:8888/lab) and create a Python 3 Notebook.
76
+
77
+
## Installation
78
+
79
+
### C++
80
+
81
+
The binary packages are hosted using [GitHub Releases](https://github.com/open-space-collective/open-space-toolkit-astrodynamics/releases):
0 commit comments