Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Sceki committed Nov 25, 2024
1 parent c721bb6 commit 0e22ae5
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 28 deletions.
25 changes: 0 additions & 25 deletions doc/_templates/custom-class-template.rst

This file was deleted.

9 changes: 7 additions & 2 deletions doc/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ $\partial$SGP4 API
newton_method
sgp4init
sgp4init_batch
mldsgp4
mldsgp4.mldsgp4

.. currentmodule:: dsgp4

.. toctree::
:maxdepth: 2
:caption: dsgp4 ML-dSGP4 Module

dsgp4.mldsgp4
3 changes: 2 additions & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import dsgp4
import sys
import os
sys.path.insert(0, os.path.abspath('../dsgp4'))
sys.path.insert(0, os.path.abspath('../')) # Add the root directory of your repo

release = dsgp4.__version__

Expand Down Expand Up @@ -105,6 +105,7 @@
"covariance_propagation.ipynb",
"mldsgp4.ipynb"
]
autosummary_ignore_module = ['dsgp4.mldsgp4']

latex_engine = "xelatex"

Expand Down
13 changes: 13 additions & 0 deletions doc/dsgp4.mldsgp4.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.. _mldsgp4:

mldsgp4 model
##############

This module defines the ``mldsgp4`` class within the ``dsgp4`` library.

.. currentmodule:: dsgp4

.. autoclass:: dsgp4.mldsgp4.mldsgp4
:members: __init__, forward, load_model
:undoc-members:
:exclude-members: __del__

0 comments on commit 0e22ae5

Please sign in to comment.