Skip to content

Commit

Permalink
another attempt that works locally
Browse files Browse the repository at this point in the history
  • Loading branch information
Sceki committed Nov 25, 2024
1 parent d0cf779 commit e4b3b66
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
7 changes: 1 addition & 6 deletions doc/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,5 @@ $\partial$SGP4 API
newton_method
sgp4init
sgp4init_batch
mldsgp4

.. autosummary::
:toctree: _autosummary/
:template: custom-class-template.rst

mldsgp4.mldsgp4

4 changes: 2 additions & 2 deletions dsgp4/__init__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
__version__ = '1.0.2'
__version__ = '1.1.2'

import torch
torch.set_default_dtype(torch.float64)
from .sgp4 import sgp4
from .mldsgp4 import mldsgp4
from .initl import initl
from .sgp4init import sgp4init
from .sgp4init_batch import sgp4init_batch
from .newton_method import newton_method, update_TLE
from .sgp4_batched import sgp4_batched
from .util import propagate, initialize_tle, propagate_batch
from .plot import plot_orbit, plot_tles
from .mldsgp4 import mldsgp4
from . import tle
from .tle import TLE

0 comments on commit e4b3b66

Please sign in to comment.