-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1bad954
commit 23117b2
Showing
51 changed files
with
1,024 additions
and
1,090 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,6 @@ test.toml | |
.idea/ | ||
.mypy_cache/ | ||
*.bin | ||
/animation/ | ||
|
||
~$* | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Animation Only | ||
|
||
If you would like to animate a satellite constellation, use the `animate.py` | ||
program in the root of the repository like so: | ||
|
||
```sh | ||
python3 animate.py ./path/to/configuration.toml | ||
``` | ||
|
||
![Constellation Animation](../docs/assets/celestial-constellation.gif) | ||
|
||
In the [`animation`](./animation) directory, you can find two example | ||
configuration files. | ||
|
||
`starlink.toml` has all parameters for the complete Starlink phase I | ||
constellation, so use that to animate that constellation: | ||
|
||
```sh | ||
# in /celestial root directory | ||
python3 animate.py ./animation/starlink.toml | ||
``` | ||
|
||
`geostationary.toml` has a single geo-stationary satellite in orbit | ||
around earth. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
FROM debian:bullseye@sha256:bdf44f19d09b558203306836a612cc8e42a1106b2f731fbeb000e2696c04f9c8 | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
--no-install-recommends \ | ||
--no-install-suggests \ | ||
ca-certificates \ | ||
wget \ | ||
make \ | ||
unzip \ | ||
python3 \ | ||
git \ | ||
python3-pip && \ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
RUN wget https://github.com/protocolbuffers/protobuf/releases/download/v3.15.8/protoc-3.15.8-linux-x86_64.zip && \ | ||
unzip protoc-3.15.8-linux-x86_64.zip -d protoc-3.15.8 && \ | ||
mv protoc-3.15.8 /usr/local/protoc && \ | ||
rm protoc-3.15.8-linux-x86_64.zip && \ | ||
chmod +x /usr/local/protoc/bin/* && \ | ||
ln -s /usr/local/protoc/bin/protoc /usr/local/bin/protoc | ||
|
||
RUN wget https://go.dev/dl/go1.18.1.linux-amd64.tar.gz && \ | ||
rm -rf /usr/local/go && \ | ||
tar -C /usr/local -xzf go1.18.1.linux-amd64.tar.gz && \ | ||
echo 'export PATH="$PATH:/usr/local/go/bin"' >> /etc/profile && \ | ||
echo 'export PATH="$PATH:/root/go/bin"' >> /etc/profile && \ | ||
echo 'export GOPATH=/root/go' >> /etc/profile && \ | ||
echo 'export GOBIN="/root/go/bin"' >> /etc/profile && \ | ||
rm -rf go1.18.1.linux-amd64.tar.gz | ||
|
||
ENV PATH $PATH:/usr/local/go/bin | ||
ENV PATH $PATH:/root/go/bin | ||
ENV GOPATH /root/go | ||
ENV GOBIN /root/go/bin | ||
|
||
RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.26.0 && \ | ||
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.1 | ||
|
||
COPY requirements.txt requirements.txt | ||
RUN python3 -m pip install -r requirements.txt -U | ||
|
||
WORKDIR /celestial | ||
|
||
ENTRYPOINT [ "make" ] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
layout: default | ||
title: Contribution | ||
title: Contributing | ||
nav_order: 2 | ||
--- | ||
|
||
|
Oops, something went wrong.