tleread() loading incorrect data

9 ビュー (過去 30 日間)
am
am 2024 年 8 月 8 日
編集済み: Kurt 2024 年 9 月 20 日
Hello,
I'm trying to load TLE data to MATLAB using tleread function. Examining the MeanMotion values, they seem to either be loaded incorrectly or some conversion is going on. I tried to look in the help files for the tleread but couldn't find any details.
For instance, this is the tle data for the Iridium constellation: https://celestrak.org/NORAD/elements/gp.php?GROUP=iridium&FORMAT=tle
When saved as a .tle file and loaded to MATLAB, the MeanMotion values are incorrect.
I'm using MATLAB online, so version R2024a. I also tried it on a locally installed MATLAB (2024a), and getting the same results.
Am I missing something?
  3 件のコメント
am
am 2024 年 8 月 8 日
Thank you for your reply! I have just submitted a bug report.
Kurt
Kurt 2024 年 9 月 20 日
編集済み: Kurt 2024 年 9 月 20 日
I ran into this too. Apparently Matlab is converting Mean Motion to orbits per second, not orbits per day. The conversion factor is 0.0041667 which equals 360/86400. It took me a while to track down this magic number.

サインインしてコメントする。

採用された回答

Gayathri
Gayathri 2024 年 8 月 9 日
Hi @am,
The TLE data contains “mean motion” in revolutions/day unit. The “tleread” function in MATLAB reads the “mean motion” in degree/second unit. Hence the change in values is observed.
1 revolution/day = (360/(24*60*60)) degree/second
Hence, all the mean motion values in original TLE data are divided by 240 and this is the value seen in the data read by “tleread” function.
E.g. The first “mean motion” value 14.35329424426931 rev/day is converted to (14.35329424426931/240) degree/second = 0.0598 degree/second.
Hope you find this information helpful.
  6 件のコメント
dpb
dpb 2024 年 8 月 12 日
編集済み: dpb 2024 年 8 月 12 日
I'd write back and ask why they think they should mung on the file data in the first place...
Kurt
Kurt 2024 年 9 月 20 日
Agreed, it really threw my Mean Anomaly calculations for a loop.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInstall Products についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by