We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1e651fb + 9d7d68f commit a138792Copy full SHA for a138792
pyorbital/orbital.py
@@ -807,8 +807,12 @@ def propagate(self, utc_time):
807
if self.mode == SGDP4_ZERO_ECC:
808
raise NotImplementedError("Mode SGDP4_ZERO_ECC not implemented")
809
elif self.mode == SGDP4_NEAR_SIMP:
810
- raise NotImplementedError('Mode "Near-space, simplified equations"'
811
- ' not implemented')
+ tempa = 1.0 - ts * self.c1
+ tempe = self.bstar * ts * self.c4
812
+ templ = ts * ts * self.t2cof
813
+ a = self.aodp * tempa * tempa
814
+ e = em - tempe
815
+ xl = xmp + omega + xnode + self.xnodp * templ
816
elif self.mode == SGDP4_NEAR_NORM:
817
delm = self.xmcof * \
818
((1.0 + self.eta * np.cos(xmp))**3 - self.delmo)
0 commit comments