From effe070ef6327aee90d06ca9fd136d1da4951ae1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Br=C3=A9mond?= Date: Mon, 20 Jan 2020 16:23:12 -0800 Subject: [PATCH 1/2] [misc] Remove binder --- binder/postBuild | 14 -------------- binder/requirements.txt | 19 ------------------- binder/runtime.txt | 12 ------------ binder/start | 16 ---------------- 4 files changed, 61 deletions(-) delete mode 100755 binder/postBuild delete mode 100644 binder/requirements.txt delete mode 100644 binder/runtime.txt delete mode 100755 binder/start diff --git a/binder/postBuild b/binder/postBuild deleted file mode 100755 index 5aa43144c..000000000 --- a/binder/postBuild +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -################################################################################################################################################################ - -# @project Open Space Toolkit ▸ Astrodynamics -# @file binder/postBuild -# @author Lucas Brémond -# @license Apache License 2.0 - -################################################################################################################################################################ - -jupyter labextension install @jupyterlab/plotly-extension - -################################################################################################################################################################ diff --git a/binder/requirements.txt b/binder/requirements.txt deleted file mode 100644 index fdb2dde33..000000000 --- a/binder/requirements.txt +++ /dev/null @@ -1,19 +0,0 @@ -################################################################################################################################################################ - -# @project Open Space Toolkit ▸ Astrodynamics -# @file binder/requirements.txt -# @author Lucas Brémond -# @license Apache License 2.0 - -################################################################################################################################################################ - -pandas - -plotly -ipympl - -jupyterlab_launcher>=0.5.0 - -open-space-toolkit-astrodynamics>=0.3.0 - -################################################################################################################################################################ diff --git a/binder/runtime.txt b/binder/runtime.txt deleted file mode 100644 index 0bab82e0c..000000000 --- a/binder/runtime.txt +++ /dev/null @@ -1,12 +0,0 @@ -################################################################################################################################################################ - -# @project Open Space Toolkit ▸ Astrodynamics -# @file binder/runtime.txt -# @author Lucas Brémond -# @license Apache License 2.0 - -################################################################################################################################################################ - -python-3.7 - -################################################################################################################################################################ diff --git a/binder/start b/binder/start deleted file mode 100755 index c7fa769bc..000000000 --- a/binder/start +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash - -################################################################################################################################################################ - -# @project Open Space Toolkit ▸ Astrodynamics -# @file binder/start -# @author Lucas Brémond -# @license Apache License 2.0 - -################################################################################################################################################################ - -export LD_LIBRARY_PATH=/srv/conda/lib/ - -exec "$@" - -################################################################################################################################################################ From 585107b9f6786550239a0aaa65d7aa701baeedd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Br=C3=A9mond?= Date: Mon, 20 Jan 2020 16:23:17 -0800 Subject: [PATCH 2/2] [misc] Update README --- README.md | 41 +++++++++++++++++++++++------------------ 1 file changed, 23 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 1a0a1c6e3..6a013daed 100644 --- a/README.md +++ b/README.md @@ -108,9 +108,18 @@ Install from [PyPI](https://pypi.org/project/open-space-toolkit-astrodynamics/): pip install open-space-toolkit-astrodynamics ``` -## Structure +## Documentation + +Documentation is available here: + +- [C++](https://open-space-collective.github.io/open-space-toolkit-astrodynamics) +- [Python](./bindings/python/docs) + +
+Structure +

-The **Astrodynamics** library exhibits the following structure: +The library exhibits the following structure: ```txt ├── Trajectory @@ -132,12 +141,8 @@ The **Astrodynamics** library exhibits the following structure: └── State Profile ``` -## Documentation - -Documentation is available here: - -- [C++](https://open-space-collective.github.io/open-space-toolkit-astrodynamics) -- [Python](./bindings/python/docs) +

+
## Tutorials @@ -197,16 +202,16 @@ Or to run them manually: ## Dependencies -| Name | Version | License | Link | -|-------------|---------|------------------------|--------------------------------------------------------------------------------------------------------------------------------------------| -| Boost | 1.69.0 | Boost Software License | [boost.org](https://www.boost.org) | -| Eigen | 3.3.7 | MPL2 | [eigen.tuxfamily.org](http://eigen.tuxfamily.org/index.php) | -| SGP4 | master | Apache License 2.0 | [github.com/dnwrnr/sgp4](https://github.com/dnwrnr/sgp4) | -| NLopt | master | LGPL | [github.com/stevengj/nlopt](https://github.com/stevengj/nlopt) | -| Core | master | Apache License 2.0 | [github.com/open-space-collective/open-space-toolkit-core](https://github.com/open-space-collective/open-space-toolkit-core) | -| I/O | master | Apache License 2.0 | [github.com/open-space-collective/open-space-toolkit-io](https://github.com/open-space-collective/open-space-toolkit-io) | -| Mathematics | master | Apache License 2.0 | [github.com/open-space-collective/open-space-toolkit-mathematics](https://github.com/open-space-collective/open-space-toolkit-mathematics) | -| Physics | master | Apache License 2.0 | [github.com/open-space-collective/open-space-toolkit-astrodynamics](https://github.com/open-space-collective/open-space-toolkit-astrodynamics) | +| Name | Version | License | Link | +| ----------- | ------- | ---------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | +| Boost | 1.69.0 | Boost Software License | [boost.org](https://www.boost.org) | +| Eigen | 3.3.7 | MPL2 | [eigen.tuxfamily.org](http://eigen.tuxfamily.org/index.php) | +| SGP4 | master | Apache License 2.0 | [github.com/dnwrnr/sgp4](https://github.com/dnwrnr/sgp4) | +| NLopt | master | LGPL | [github.com/stevengj/nlopt](https://github.com/stevengj/nlopt) | +| Core | master | Apache License 2.0 | [github.com/open-space-collective/open-space-toolkit-core](https://github.com/open-space-collective/open-space-toolkit-core) | +| I/O | master | Apache License 2.0 | [github.com/open-space-collective/open-space-toolkit-io](https://github.com/open-space-collective/open-space-toolkit-io) | +| Mathematics | master | Apache License 2.0 | [github.com/open-space-collective/open-space-toolkit-mathematics](https://github.com/open-space-collective/open-space-toolkit-mathematics) | +| Physics | master | Apache License 2.0 | [github.com/open-space-collective/open-space-toolkit-astrodynamics](https://github.com/open-space-collective/open-space-toolkit-astrodynamics) | ## Contribution