Compare commits

...

29 Commits
0.1 ... main

Author SHA1 Message Date
Jeff Moe d1c035bbfd Update python usage 2023-06-23 13:39:10 -06:00
Jeff Moe f804c9eb38 put yer best gif forward 2022-06-20 16:01:00 -06:00
Jeff Moe 3095b5cf2d time lapse 2022-05-23 02:43:29 -06:00
Jeff Moe d6b691c391 gif orbits, best orbits 2022-05-23 02:20:00 -06:00
Jeff Moe d1756265a8 whence galileo-gnss 2022-05-23 01:05:37 -06:00
Jeff Moe 28fa76c14b Update .ssc example, fix Radius CAPS 2022-05-23 00:56:20 -06:00
Jeff Moe c7d6247f18 run pic 2022-05-23 00:52:48 -06:00
Jeff Moe b12b099d9c its tle2ssc 2022-05-23 00:45:31 -06:00
Jeff Moe ef2bde054d Moon, MultiView screenshots 2022-05-23 00:32:47 -06:00
Jeff Moe 47cc7ca712 hubble be gone 2022-05-22 23:52:27 -06:00
Jeff Moe 81acb8a1b9 python-satellitetle linky 2022-05-22 23:51:33 -06:00
Jeff Moe 688fa0734a like this 2022-05-22 23:39:28 -06:00
Jeff Moe febb7a1045 orbit screenshot 2022-05-22 23:29:42 -06:00
Jeff Moe 9c7bf2ef2a use 2022-05-22 23:22:25 -06:00
Jeff Moe edd7f19268 orbits screenshot 2022-05-22 23:20:18 -06:00
Jeff Moe 6909596088 quicker, dirtier, install 2022-05-22 16:38:13 -06:00
Jeff Moe 698d32d27f Orbit propagation figure ref 2022-05-22 16:22:02 -06:00
Jeff Moe a56c920bd0 TLEs for everyone! 2022-05-22 16:07:08 -06:00
Jeff Moe 5124e18cec shrink hoomans 2022-05-22 16:03:32 -06:00
Jeff Moe a20948c634 WTF TLE 2022-05-22 15:59:10 -06:00
Jeff Moe de4ec2be97 3d model screenshot 2022-05-22 15:42:56 -06:00
Jeff Moe c9d7aebcf6 TODO 2022-05-22 15:30:42 -06:00
Jeff Moe d0ad9cc08c Add Galileo 3D model in cmod format 2022-05-22 14:34:33 -06:00
Jeff Moe ff53901ec0 Get fresh TLE 2022-05-22 12:49:52 -06:00
Jeff Moe 17dcf44de6 license, cleanup, thread 2022-05-22 12:16:00 -06:00
Jeff Moe 749e666e76 quick install 2022-05-21 22:36:50 -06:00
Jeff Moe 7075614eac Get all satellites from celestrak and make SSC file 2022-05-21 22:31:23 -06:00
Jeff Moe 056a98eba9 Get satellite name from TLE 2022-05-21 21:49:49 -06:00
Jeff Moe 475c42b2ea round digits, works in Celestia 2022-05-21 21:38:00 -06:00
30 changed files with 7156 additions and 1025 deletions

194
README.md
View File

@ -2,57 +2,91 @@
Celestia is a "real-time space simulation that lets you experience our
universe in three dimensions".
It contains many celestial objects, but few that are man made, such
as Hubble. It has a TLE for the ISS, but it doesn't update it.
The present repo contains the `tle2ssc` Python script which converts
NORAD Two-Line Element sets (TLE) from CelesTrak into into
Solar System Catalog (SSC) files that can be read by Celestia.
There is a spreadsheet that you can enter a TLE into it and it
generates an `.ssc` file that Celestia can read. Using a spreadsheet
is a bit awkward, and hard to automate.
The `tle2ssc` script is set by default to retrieve the latest orbits
for various GNSS ("GPS") satellite systems.
It could be easily updated for any other source of TLEs.
It would be real swell to be able to add TLEs to Celestia more easily.
Then all the GNSS satellites could be added. Or SatNOGS...
*Celestia Animated Time Lapse GNSS Orbits*
![celestia-gnss-orbits-anim](pics/celestia-gnss-orbits-anim.gif)
It will take the data that generates this:
![spacecruft-galileo](pics/galileo.png)
# Quick & Dirty Install
If you just want to import the pre-generated file into Celestia for
a look, just copy these files into your `extras` folder or similar.
And render it in this application:
![celestia-screenshot](pics/celestia-screenshot.png)
```
# crufty below, private dir better
sudo mkdir -p /usr/share/celestia/extras-standard/gnss/models/
# Whatever user...
sudo chown -R debian:debian /usr/share/celestia/extras-standard/gnss
# Get SSC file
wget -O /usr/share/celestia/extras-standard/gnss/gnss.ssc \
https://spacecruft.org/spacecruft/celestia-gnss/raw/branch/main/extras/gnss/gnss.ssc
# Get 3D model
wget -O /usr/share/celestia/extras-standard/gnss/models/galileo-gnss.cmod \
https://spacecruft.org/spacecruft/celestia-gnss/raw/branch/main/extras/gnss/models/galileo-gnss.cmod
# Then (re)start Celestia.
```
# Install celestia-gnss
Install thusly.
Install thusly to generate your own `.ssc` files.
```
git clone https://spacecruft.org/spacecruft/celestia-gnss
cd celestia-gnss
sudo apt update
sudo apt install python3-pip
sudo apt install python3-pip python3-virtualenv
# Many ways to do python setup, here is one:
pip3 install --upgrade --user pip
# Make sure your path includes `~/.local/bin`, if not, add it.
which pip
# Should be ~/.local/bin/pip
pip install --user -r requirements.txt
virtualenv -p python3 env
source env/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
```
# Run celestia-gnss
Run thusly.
Example (crufty example, if you have perms):
Convert a TLE, example:
```
./tle2ssc extras/galileo-gnss/galileo.txt
./tle2ssc > /usr/share/celestia/extras-standard/gnss/gnss.ssc
```
# Use in Celestia
Use thusly, hooman.
*Celestia Showing GNSS Satellites with Labels*
![celestia-gnss-screenshot](pics/celestia-gnss-screenshot.png)
Then copy the satellites you want into your Celestia extras dir.
Crufty bad way to do it, example:
```
sudo cp -a extras/galileo-gnss/ /usr/share/celestia/extras-standard/
sudo cp -a extras/gnss/gnss.ssc /usr/share/celestia/extras-standard/
```
Each system, GPS, Galileo, Glonass, Beidou, can be used,
or the GNSS files which include all four, plus more regional systems.
# Screenshots
Screenshots of running Celestia with GNSS satellites.
*GNSS Satellites Orbiting Earth*
![celestia-gnss-orbits](pics/celestia-gnss-orbits.png)
*Celestia with Moon orbit, Earth, and GNSS satellites.*
![celestia-moon-gnss](pics/celestia-moon-gnss.png)
*Celestia MultiView.*
![celestia-multiview-gnss](pics/celestia-multiview-gnss.png)
# See Also
@ -70,14 +104,43 @@ Upstream Celestia:
* https://github.com/CelestiaProject/Celestia
Celestia forum thread about celestia-gnss:
* https://celestia.space/forum/viewtopic.php?f=6&t=22559
## TLE Conversion
TLE Conversion Spreadsheet by Grant Hutchison from July 2003.
TLE Conversion Spreadsheet by Grant Hutchison from July 2003,
the basis for the formulas in the `tle2ssc` script.
* https://www.classe.cornell.edu/~seb/celestia/hutchison/spreadsheets.html
* https://www.classe.cornell.edu/~seb/celestia/hutchison/tle-xls.zip
Useful formula from here too:
* https://kaitlyn.guru/projects/two-line-elements-tle/
I had this exact printout on my desk (trimmed to size!) when I came across
this gem from @fisadev via Poliastro docs:
***How are satellite orbits disseminated?***
<img src="pics/wtf-tle.jpg" width="600">
* https://docs.poliastro.space/en/latest/examples/Loading%20OMM%20and%20TLE%20satellite%20data.html
Perhaps from page 7 of the PDF,
*Strategic Center for Networking, Integration, and Communications
Orbit Propagation Front-End Software Development*.
* https://ntrs.nasa.gov/citations/20180008672
Not used, but perhaps could be useful from Libre Space Foundation:
* https://gitlab.com/librespacefoundation/python-satellitetle
## Solar System Catalog
*"Solar System Catalog" files are primarily used to define the objects which
can be found in a stellar system, such as planets, moons, asteroids, comets,
@ -91,38 +154,40 @@ Info on `.ssc` files:
* https://en.wikibooks.org/wiki/Celestia/SSC_File
In Celestia name "Galileo" is used for the *other* spacecraft, not
for the EU GNSS. So the name used in development here adds `-gnss`,
ala, `galileo-gnss.ssc`, whereas the other GNSS don't.
In Celestia the name "Galileo" is used for the *other* spacecraft, not
for the EU GNSS. So the name used in here adds `-gnss`,
ala, `galileo-gnss.ssc`, whereas the other GNSS don't have it appended.
Example `.ssc` file contents:
```
"1997-035A" "Sol/Earth" {
Class "spacecraft"
# Mesh
Radius 0.005
"GSAT0101 (PRN E11)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
Radius 0.005
EllipticalOrbit {
Epoch 2459718.94467728
Period 0.49859567
SemiMajorAxis 26560.345
Eccentricity 0.0057297
Inclination 55.5062
AscendingNode 156.8049
ArgOfPericenter 51.2220
MeanAnomaly 309.3262
Epoch 2459722.35154914
Period 0.58659637
SemiMajorAxis 29600.176
Eccentricity 0.00041090
Inclination 56.9865
AscendingNode 22.0582
ArgOfPericenter 29.0248
MeanAnomaly 331.0391
}
Obliquity 55.5062
EquatorAscendingNode 156.8049
RotationOffset 80.2289
Obliquity 56.9865
EquatorAscendingNode 22.0582
RotationOffset 296.9294
# Orientation [ ]
}
```
## TLE Sources
GNSS (All)
* https://celestrak.com/NORAD/elements/gnss.txt
Beidou (China)
* https://celestrak.com/NORAD/elements/beidou.txt
@ -132,9 +197,6 @@ Galileo (Europe)
Glonass (Russia)
* https://celestrak.com/NORAD/elements/glo-ops.txt
GNSS (All)
* https://celestrak.com/NORAD/elements/gnss.txt
GPS (USA)
* https://celestrak.com/NORAD/elements/gps-ops.txt
@ -164,48 +226,42 @@ Galileo 3D models are from the ESA:
* https://gssc.esa.int/education/galileo3d/
![celestia-galileo-screenshot](pics/celestia-galileo-screenshot.png)
## 3D Model Conversion
Recent versions of Blender don't export `.3ds` format. But old versions
of Blender, such as 2.79b do work. Get an old version here:
The `galileo.obj` file from the ESA can be read by `cmodview` in
the `celestia-tools` package. The file can be saved in `cmodview`
as `galileo-gnss.cmod` and then read by Celestia.
* https://download.blender.org/release/Blender2.79/
The ESA supplies textures, but the aren't applied in the Celestia model (yet).
Launch `blender`, import, export.
### Blender
`blender-2.79b` didn't work to convert a `.obj` file to `.3ds`
that rendered in Celestia.
```
# Go to https://gssc.esa.int/education/galileo3d/
# and download the Galileo_3D.zip file.
# It generates a unique URL, afaict.
unzip Galileo_3D.zip
# Get old Blender
wget https://download.blender.org/release/Blender2.79/blender-2.79b-linux-glibc219-x86_64.tar.bz2
tar xf blender-2.79b-linux-glibc219-x86_64.tar.bz2
cd blender-2.79b-linux-glibc219-x86_64
./blender
```
# TODO
Do.
Blender creates a new file on launch.
* All GNSS satellites are using the Galileo 3D model.
Go to `File --> Import --> Wavefront (.obj)`.
* Textures need to be added to 3D models.
Import the file, such as `galileo.obj`.
* Orientation of satellite 3D models is incorrect.
Go to `File --> Export --> 3D Studio (.3ds)`.
Save the file, such as `galileo-gnss.3ds`.
The `galileo-gnss.3ds` file created this way didn't render in Celestia. `:(`
* Confirm orbits are reasonably correct.
# Status
Alpha, under development.
Output works in Celestia. Orbits are not confirmed correct.
# License / Copyright
Upstream sources under their respective copyrights.
Copyright (C) 2022 Jeff Moe.
Copyright (C) 2022, 2023 Jeff Moe.
License: GPLv2 or any later version.

150
beidou.txt 100644
View File

@ -0,0 +1,150 @@
BEIDOU 3 (C01)
1 36287U 10001A 22142.55830235 -.00000291 00000+0 00000+0 0 9991
2 36287 1.8413 46.5422 0004685 18.8645 156.1325 1.00268459 45257
BEIDOU 5 (C06)
1 36828U 10036A 22142.02885015 -.00000084 00000+0 00000+0 0 9998
2 36828 54.1897 176.4699 0027890 191.1812 348.5776 1.00253761 43310
BEIDOU 6 (C04)
1 37210U 10057A 22142.63028733 -.00000122 00000+0 00000+0 0 9993
2 37210 0.8147 44.6031 0002216 134.6413 87.8930 1.00271922 42371
BEIDOU 7 (C07)
1 37256U 10068A 22142.33651556 -.00000214 00000+0 00000+0 0 9999
2 37256 50.2547 289.9570 0021005 184.7993 353.3703 1.00257851 41881
BEIDOU 8 (C08)
1 37384U 11013A 22141.49190306 -.00000208 00000+0 00000+0 0 9992
2 37384 60.2550 54.5263 0017835 189.7998 279.5068 1.00263257 40754
BEIDOU 9 (C09)
1 37763U 11038A 22142.02554344 -.00000045 00000+0 00000+0 0 9995
2 37763 54.4733 178.9594 0097263 227.7412 296.7666 1.00284844 39734
BEIDOU 10 (C10)
1 37948U 11073A 22142.19445531 -.00000160 00000+0 00000+0 0 9992
2 37948 50.3768 289.5964 0079017 216.9659 257.0877 1.00258961 38499
BEIDOU 11 (C05)
1 38091U 12008A 22142.54202707 .00000047 00000+0 00000+0 0 9999
2 38091 1.5069 66.6752 0015286 333.1085 94.1750 1.00274163 37573
BEIDOU 12 (C11)
1 38250U 12018A 22141.86193378 -.00000091 00000+0 00000+0 0 9994
2 38250 56.7005 354.4367 0020321 255.6596 126.5251 1.86234440 68593
BEIDOU 13 (C12)
1 38251U 12018B 22141.85843263 -.00000091 00000+0 00000+0 0 9999
2 38251 56.6190 353.7639 0011140 261.2064 162.8616 1.86234293 68598
BEIDOU 15 (C14)
1 38775U 12050B 22142.53853834 .00000047 00000+0 00000+0 0 9997
2 38775 55.3868 112.5565 0015643 321.1845 35.2304 1.86231277 65976
BEIDOU 16 (C02)
1 38953U 12059A 22142.54708573 -.00000185 00000+0 00000+0 0 9998
2 38953 1.9271 84.4154 0012460 301.6009 135.1441 1.00269918 35001
BEIDOU 17 (C31)
1 40549U 15019A 22142.34696559 -.00000149 00000+0 00000+0 0 9999
2 40549 51.9328 313.0557 0036958 187.8420 313.8973 1.00249573 26178
BEIDOU 18 (C57)
1 40748U 15037A 22141.96496826 -.00000091 00000+0 00000+0 0 9998
2 40748 55.8721 352.6425 0005407 32.3314 12.6175 1.86233391 46426
BEIDOU 19 (C58)
1 40749U 15037B 22141.77465595 -.00000091 00000+0 00000+0 0 9997
2 40749 55.8766 352.6374 0005051 355.7676 56.2216 1.86232287 46419
BEIDOU 20 (C18)
1 40938U 15053A 22142.19628054 -.00000138 00000+0 00000+0 0 9995
2 40938 51.5419 276.1732 0046432 193.8051 292.8278 1.00252947 24447
BEIDOU IGSO-6 (C13)
1 41434U 16021A 22141.53919605 -.00000180 00000+0 00000+0 0 9992
2 41434 58.0646 53.1140 0044387 219.6295 255.3847 1.00288409 22562
BEIDOU-2 G7 (C03)
1 41586U 16037A 22142.55231882 -.00000364 00000+0 00000+0 0 9998
2 41586 1.9239 69.5048 0009027 5.1090 114.9233 1.00270722 21888
BEIDOU-3 M1 (C19)
1 43001U 17069A 22142.34436966 .00000047 00000+0 00000+0 0 9992
2 43001 55.5402 112.5601 0012501 293.0589 89.4207 1.86231749 30916
BEIDOU-3 M2 (C20)
1 43002U 17069B 22142.57765223 .00000047 00000+0 00000+0 0 9999
2 43002 55.5398 112.5878 0010703 310.6802 271.2713 1.86231380 30906
BEIDOU-3 M3 (C27)
1 43107U 18003A 22141.99326222 -.00000094 00000+0 00000+0 0 9994
2 43107 55.3231 353.5701 0005928 54.6431 301.5949 1.86232554 29656
BEIDOU-3 M4 (C28)
1 43108U 18003B 22142.22683588 -.00000094 00000+0 00000+0 0 9993
2 43108 55.3150 353.5507 0001778 266.3302 290.5487 1.86231002 29661
BEIDOU-3 M5 (C21)
1 43207U 18018A 22141.30457319 .00000044 00000+0 00000+0 0 9992
2 43207 55.4979 112.7099 0007678 325.3001 34.6187 1.86231667 29031
BEIDOU-3 M6 (C22)
1 43208U 18018B 22141.37119744 .00000044 00000+0 00000+0 0 9997
2 43208 55.4967 112.7121 0010410 301.1590 58.7074 1.86231670 29034
BEIDOU-3 M7 (C29)
1 43245U 18029A 22142.32693102 -.00000092 00000+0 00000+0 0 9995
2 43245 55.2386 351.3300 0001437 44.3900 85.9616 1.86232717 28203
BEIDOU-3 M8 (C30)
1 43246U 18029B 22142.60475863 -.00000093 00000+0 10000-3 0 9995
2 43246 55.2331 351.3508 0004889 10.6600 352.4694 1.86232895 28206
BEIDOU IGSO-7 (C16)
1 43539U 18057A 22141.96021479 -.00000091 00000+0 00000+0 0 9992
2 43539 55.0725 175.9388 0048923 227.0886 293.5333 1.00266368 14241
BEIDOU-3 M9 (C23)
1 43581U 18062A 22142.38270157 -.00000032 00000+0 00000+0 0 9996
2 43581 54.2820 232.9761 0003283 270.4292 154.7683 1.86231922 25944
BEIDOU-3 M10 (C24)
1 43582U 18062B 22142.13695978 -.00000029 00000+0 00000+0 0 9998
2 43582 54.2826 232.9753 0004397 6.4004 345.7887 1.86232168 25937
BEIDOU-3 M11 (C25)
1 43602U 18067A 22142.13514411 -.00000028 00000+0 00000+0 0 9997
2 43602 54.3644 231.5873 0006735 9.2369 23.2025 1.86231796 25433
BEIDOU-3 M12 (C26)
1 43603U 18067B 22142.16541125 -.00000028 00000+0 00000+0 0 9993
2 43603 54.3621 231.5529 0003845 357.8006 325.3101 1.86231711 25445
BEIDOU-3 M13 (C32)
1 43622U 18072A 22142.45634220 .00000046 00000+0 00000+0 0 9990
2 43622 55.4655 112.2265 0009009 290.3587 257.1573 1.86231740 24963
BEIDOU-3 M14 (C33)
1 43623U 18072B 22142.29911944 .00000046 00000+0 00000+0 0 9994
2 43623 55.4665 112.2241 0006977 308.3578 223.9833 1.86231763 24965
BEIDOU-3 M15 (C34)
1 43647U 18078A 22141.30666927 -.00000091 00000+0 10000-3 0 9991
2 43647 55.1320 351.5255 0007318 13.3550 109.1103 1.86232581 24450
BEIDOU-3 M16 (C35)
1 43648U 18078B 22141.64242010 -.00000091 00000+0 00000+0 0 9997
2 43648 55.1283 351.5203 0005648 22.5477 232.8760 1.86232381 24479
BEIDOU-3 G1 (C59)
1 43683U 18085A 22142.48645944 -.00000287 00000+0 00000+0 0 9997
2 43683 0.8675 170.1944 0003357 328.3091 56.7829 1.00271338 13154
BEIDOU-3 M17 (C36)
1 43706U 18093A 22142.48689951 -.00000033 00000+0 00000+0 0 9997
2 43706 54.3640 232.8571 0009499 271.5065 88.4241 1.86231797 23858
BEIDOU-3 M18 (C37)
1 43707U 18093B 22142.30503637 -.00000031 00000+0 00000+0 0 9993
2 43707 54.3658 232.8535 0007427 300.8914 28.3043 1.86232227 23836
BEIDOU-3 IGSO-1 (C38)
1 44204U 19023A 22141.60447130 -.00000240 00000+0 00000+0 0 9999
2 44204 56.5231 53.2584 0019116 202.1132 320.2167 1.00266223 11447
BEIDOU-2 G8
1 44231U 19027A 22142.61180188 -.00000257 00000+0 00000+0 0 9990
2 44231 0.8006 74.8958 0004032 117.8633 52.2550 1.00271085 11161
BEIDOU-3 IGSO-2 (C39)
1 44337U 19035A 22142.48209854 -.00000092 00000+0 00000+0 0 9990
2 44337 55.1122 171.9553 0023251 198.1884 161.7207 1.00260828 10789
BEIDOU-3 M23 (C45)
1 44542U 19061A 22142.42266951 -.00000032 00000+0 00000+0 0 9996
2 44542 54.5905 232.9963 0007468 333.7934 26.2081 1.86231157 18103
BEIDOU-3 M24 (C46)
1 44543U 19061B 22142.54655175 -.00000033 00000+0 00000+0 0 9991
2 44543 54.5881 232.9611 0004704 324.8985 29.4369 1.86231706 18096
BEIDOU-3 IGSO-3
1 44709U 19073A 22142.39491939 -.00000195 00000+0 00000+0 0 9996
2 44709 57.3054 296.6516 0022103 173.2158 31.1077 1.00264313 9547
BEIDOU-3 M21
1 44793U 19078A 22142.54724447 -.00000093 00000+0 10000-3 0 9996
2 44793 54.9812 351.5077 0007316 17.0367 171.1150 1.86232330 16963
BEIDOU-3 M22
1 44794U 19078B 22142.14971616 -.00000093 00000+0 00000+0 0 9990
2 44794 54.9572 351.5126 0005169 19.5886 173.6503 1.86232513 16950
BEIDOU-3 M19
1 44864U 19090A 22142.28315513 .00000046 00000+0 00000+0 0 9992
2 44864 55.3997 112.4453 0018916 273.2323 203.9511 1.86231921 16543
BEIDOU-3 M20
1 44865U 19090B 22142.23724134 .00000046 00000+0 00000+0 0 9991
2 44865 55.4023 112.4777 0017380 285.5683 250.7078 1.86231903 16518
BEIDOU-3 G2
1 45344U 20017A 22142.54630076 -.00000153 00000+0 00000+0 0 9990
2 45344 2.0847 350.8188 0004552 102.7677 63.2566 1.00271165 8359
BEIDOU-3 G3
1 45807U 20040A 22142.55231882 -.00000365 00000+0 00000+0 0 9998
2 45807 1.4993 302.6593 0005656 332.7602 274.1336 1.00272790 7163

File diff suppressed because it is too large Load Diff

View File

@ -1,150 +0,0 @@
BEIDOU 3 (C01)
1 36287U 10001A 22140.83613831 -.00000288 00000+0 00000+0 0 9997
2 36287 1.8382 46.5258 0004661 17.4955 255.8633 1.00269195 45237
BEIDOU 5 (C06)
1 36828U 10036A 22140.65345476 -.00000081 00000+0 00000+0 0 9994
2 36828 54.1897 176.4829 0027874 190.8910 212.4573 1.00254231 43308
BEIDOU 6 (C04)
1 37210U 10057A 22140.57617112 -.00000118 00000+0 00000+0 0 9994
2 37210 0.8118 44.5356 0002199 135.4013 65.6929 1.00272079 42357
BEIDOU 7 (C07)
1 37256U 10068A 22140.23005830 -.00000210 00000+0 00000+0 0 9990
2 37256 50.2627 289.9819 0020318 182.6120 315.2724 1.00258591 41861
BEIDOU 8 (C08)
1 37384U 11013A 22140.23923653 -.00000206 00000+0 00000+0 0 9990
2 37384 60.2535 54.5388 0017858 189.9459 187.2142 1.00263598 40749
BEIDOU 9 (C09)
1 37763U 11038A 22140.42056622 -.00000039 00000+0 00000+0 0 9996
2 37763 54.4730 178.9740 0097179 227.7163 77.3401 1.00285178 39712
BEIDOU 10 (C10)
1 37948U 11073A 22140.39592791 -.00000156 00000+0 00000+0 0 9998
2 37948 50.3816 289.6179 0079035 216.9170 327.9768 1.00259344 38470
BEIDOU 11 (C05)
1 38091U 12008A 22140.90833652 .00000050 00000+0 00000+0 0 9990
2 38091 1.5029 66.6351 0015287 332.5667 225.0098 1.00273857 37551
BEIDOU 12 (C11)
1 38250U 12018A 22140.14357701 -.00000087 00000+0 00000+0 0 9991
2 38250 56.7008 354.4937 0020350 255.7347 54.3681 1.86234472 68552
BEIDOU 13 (C12)
1 38251U 12018B 22139.84783811 -.00000085 00000+0 00000+0 0 9990
2 38251 56.6179 353.8302 0011185 261.1667 254.8882 1.86234333 68558
BEIDOU 15 (C14)
1 38775U 12050B 22140.39688730 .00000039 00000+0 00000+0 0 9991
2 38775 55.3856 112.6287 0015647 321.1449 39.3980 1.86231328 65948
BEIDOU 16 (C02)
1 38953U 12059A 22140.53794189 -.00000181 00000+0 00000+0 0 9999
2 38953 1.9216 84.4126 0012565 301.5403 129.9479 1.00270098 34981
BEIDOU 17 (C31)
1 40549U 15019A 22140.46709792 -.00000150 00000+0 00000+0 0 9996
2 40549 51.9369 313.0776 0036964 187.7719 355.5168 1.00249887 26158
BEIDOU 18 (C57)
1 40748U 15037A 22140.75191789 -.00000089 00000+0 00000+0 0 9991
2 40748 55.8726 352.6832 0005439 31.6183 280.0357 1.86233391 46393
BEIDOU 19 (C58)
1 40749U 15037B 22140.31598762 -.00000087 00000+0 00000+0 0 9994
2 40749 55.8770 352.6868 0005069 355.5612 158.4644 1.86232315 46387
BEIDOU 20 (C18)
1 40938U 15053A 22140.24362542 -.00000131 00000+0 00000+0 0 9999
2 40938 51.5454 276.1956 0046233 193.8147 308.0670 1.00253142 24421
BEIDOU IGSO-6 (C13)
1 41434U 16021A 22140.55412426 -.00000178 00000+0 00000+0 0 9999
2 41434 58.0632 53.1245 0044392 219.6117 259.7541 1.00288625 22550
BEIDOU-2 G7 (C03)
1 41586U 16037A 22140.54317498 -.00000360 00000+0 00000+0 0 9999
2 41586 1.9190 69.4620 0009100 4.6095 110.1976 1.00271612 21869
BEIDOU-3 M1 (C19)
1 43001U 17069A 22140.43020463 .00000039 00000+0 00000+0 0 9992
2 43001 55.5388 112.6246 0012503 293.0169 246.1051 1.86231756 30873
BEIDOU-3 M2 (C20)
1 43002U 17069B 22140.87240752 .00000042 00000+0 00000+0 0 9990
2 43002 55.5388 112.6451 0010695 310.5664 208.1021 1.86231404 30872
BEIDOU-3 M3 (C27)
1 43107U 18003A 22139.79818075 -.00000088 00000+0 00000+0 0 9994
2 43107 55.3234 353.6456 0005909 54.1821 270.3595 1.86232590 29610
BEIDOU-3 M4 (C28)
1 43108U 18003B 22140.61986484 -.00000090 00000+0 00000+0 0 9991
2 43108 55.3155 353.6060 0001807 269.3812 290.1104 1.86231034 29637
BEIDOU-3 M5 (C21)
1 43207U 18018A 22139.69371364 .00000036 00000+0 00000+0 0 9997
2 43207 55.4970 112.7638 0007680 325.3469 34.5671 1.86231679 29009
BEIDOU-3 M6 (C22)
1 43208U 18018B 22139.76033599 .00000037 00000+0 00000+0 0 9992
2 43208 55.4956 112.7661 0010421 301.0672 58.7935 1.86231682 29009
BEIDOU-3 M7 (C29)
1 43245U 18029A 22139.94676103 -.00000086 00000+0 00000+0 0 9994
2 43245 55.2386 351.4117 0001459 43.2689 291.2881 1.86232700 28158
BEIDOU-3 M8 (C30)
1 43246U 18029B 22140.20704101 -.00000087 00000+0 10000-3 0 9992
2 43246 55.2343 351.4327 0004918 10.3847 185.1859 1.86232917 28155
BEIDOU IGSO-7 (C16)
1 43539U 18057A 22140.41687293 -.00000087 00000+0 00000+0 0 9998
2 43539 55.0724 175.9522 0048815 226.9564 96.5710 1.00266863 14229
BEIDOU-3 M9 (C23)
1 43581U 18062A 22140.71086955 -.00000009 00000+0 00000+0 0 9996
2 43581 54.2832 233.0338 0003183 271.5570 112.7496 1.86231934 25915
BEIDOU-3 M10 (C24)
1 43582U 18062B 22139.91546977 .00000003 00000+0 00000+0 0 9995
2 43582 54.2824 233.0507 0004443 6.2384 296.5359 1.86232188 25899
BEIDOU-3 M11 (C25)
1 43602U 18067A 22139.94582404 .00000004 00000+0 00000+0 0 9992
2 43602 54.3653 231.6622 0006773 9.6435 354.9529 1.86231802 25392
BEIDOU-3 M12 (C26)
1 43603U 18067B 22140.66529747 -.00000007 00000+0 00000+0 0 9999
2 43603 54.3623 231.6040 0003838 357.8579 39.4936 1.86231735 25426
BEIDOU-3 M13 (C32)
1 43622U 18072A 22140.29626980 .00000038 00000+0 00000+0 0 9995
2 43622 55.4638 112.2988 0009048 290.3491 248.9406 1.86231752 24925
BEIDOU-3 M14 (C33)
1 43623U 18072B 22140.69787523 .00000040 00000+0 00000+0 0 9994
2 43623 55.4655 112.2780 0007011 308.0337 230.7499 1.86231786 24938
BEIDOU-3 M15 (C34)
1 43647U 18078A 22140.04702203 -.00000087 00000+0 10000-3 0 9994
2 43647 55.1327 351.5687 0007316 13.2664 344.6640 1.86232584 24421
BEIDOU-3 M16 (C35)
1 43648U 18078B 22139.44847950 -.00000085 00000+0 00000+0 0 9999
2 43648 55.1280 351.5956 0005689 22.0098 202.4802 1.86232362 24435
BEIDOU-3 G1 (C59)
1 43683U 18085A 22140.54901859 -.00000283 00000+0 00000+0 0 9998
2 43683 0.8660 170.5611 0003334 326.5097 78.8277 1.00271878 13133
BEIDOU-3 M17 (C36)
1 43706U 18093A 22139.80217651 .00000005 00000+0 00000+0 0 9991
2 43706 54.3651 232.9490 0009429 271.7637 88.1766 1.86231743 23806
BEIDOU-3 M18 (C37)
1 43707U 18093B 22139.70497374 .00000007 00000+0 00000+0 0 9995
2 43707 54.3664 232.9423 0007393 301.3926 84.5713 1.86232251 23791
BEIDOU-3 IGSO-1 (C38)
1 44204U 19023A 22139.64308759 -.00000238 00000+0 00000+0 0 9990
2 44204 56.5201 53.2799 0019102 202.3393 332.0053 1.00266799 11429
BEIDOU-2 G8
1 44231U 19027A 22140.83701049 -.00000253 00000+0 00000+0 0 9993
2 44231 0.7963 74.7430 0003958 122.9220 126.6821 1.00271792 11141
BEIDOU-3 IGSO-2 (C39)
1 44337U 19035A 22139.94570194 -.00000088 00000+0 00000+0 0 9990
2 44337 55.1126 171.9778 0023240 198.0792 326.3231 1.00261681 10769
BEIDOU-3 M23 (C45)
1 44542U 19061A 22140.27488522 -.00000002 00000+0 00000+0 0 9994
2 44542 54.5912 233.0693 0007454 334.4129 25.5973 1.86231096 18061
BEIDOU-3 M24 (C46)
1 44543U 19061B 22140.40910397 -.00000004 00000+0 00000+0 0 9992
2 44543 54.5890 233.0336 0004720 325.1777 36.0937 1.86231702 18061
BEIDOU-3 IGSO-3
1 44709U 19073A 22140.32967436 -.00000194 00000+0 00000+0 0 9996
2 44709 57.3100 296.6727 0022038 173.0641 5.7965 1.00264923 9523
BEIDOU-3 M21
1 44793U 19078A 22139.85347597 -.00000087 00000+0 10000-3 0 9996
2 44793 54.9822 351.6003 0007374 16.4900 165.6198 1.86232375 16918
BEIDOU-3 M22
1 44794U 19078B 22138.35702471 -.00000081 00000+0 00000+0 0 9996
2 44794 54.9573 351.6444 0005313 15.5544 154.8629 1.86232807 16881
BEIDOU-3 M19
1 44864U 19090A 22140.70281104 .00000040 00000+0 00000+0 0 9999
2 44864 55.3985 112.4985 0018938 273.2570 224.3801 1.86231945 16510
BEIDOU-3 M20
1 44865U 19090B 22140.65929168 .00000040 00000+0 00000+0 0 9993
2 44865 55.4012 112.5310 0017391 285.4695 272.8651 1.86231918 16488
BEIDOU-3 G2
1 45344U 20017A 22140.53706972 -.00000148 00000+0 00000+0 0 9990
2 45344 2.0864 350.7081 0004588 101.5704 59.2654 1.00271178 8331
BEIDOU-3 G3
1 45807U 20040A 22140.54317498 -.00000361 00000+0 00000+0 0 9999
2 45807 1.5044 302.6094 0005626 333.7056 267.9550 1.00273654 7144

Binary file not shown.

View File

@ -1,22 +1,588 @@
"2011-060A" "Sol/Earth" {
Class "spacecraft"
# Fails to render
# Mesh "galileo-gnss.3ds"
Radius 0.005
"GSAT0101 (PRN E11)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459719.59549104
Period 0.58659651
SemiMajorAxis 29600.181
Eccentricity 0.0004117
Inclination 56.9858
AscendingNode 22.1062
ArgOfPericenter 28.0726
MeanAnomaly 331.9949
Epoch 2459722.35154914
Period 0.58659637
SemiMajorAxis 29600.176
Eccentricity 0.00041090
Inclination 56.9865
AscendingNode 22.0582
ArgOfPericenter 29.0248
MeanAnomaly 331.0391
}
Obliquity 56.9858
EquatorAscendingNode 22.1062
RotationOffset 312.7348
Obliquity 56.9865
EquatorAscendingNode 22.0582
RotationOffset 296.9294
# Orientation [ ]
}
"GSAT0102 (PRN E12)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58659533
SemiMajorAxis 29600.141
Eccentricity 0.00041630
Inclination 56.9873
AscendingNode 22.0682
ArgOfPericenter 358.8598
MeanAnomaly 181.1039
}
Obliquity 56.9873
EquatorAscendingNode 22.0682
RotationOffset 506.3656
# Orientation [ ]
}
"GSAT0103 (PRN E19)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58660099
SemiMajorAxis 29600.332
Eccentricity 0.00055600
Inclination 55.1303
AscendingNode 142.4444
ArgOfPericenter 269.3848
MeanAnomaly 90.5551
}
Obliquity 55.1303
EquatorAscendingNode 142.4444
RotationOffset 309.2122
# Orientation [ ]
}
"GSAT0104 (PRN E20)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58660003
SemiMajorAxis 29600.299
Eccentricity 0.00031240
Inclination 55.1308
AscendingNode 142.4466
ArgOfPericenter 270.4711
MeanAnomaly 89.4967
}
Obliquity 55.1308
EquatorAscendingNode 142.4466
RotationOffset 269.7379
# Orientation [ ]
}
"GSAT0201 (PRN E18)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.53902921
SemiMajorAxis 27977.544
Eccentricity 0.16291190
Inclination 50.3015
AscendingNode 333.3858
ArgOfPericenter 123.0195
MeanAnomaly 253.7246
}
Obliquity 50.3015
EquatorAscendingNode 333.3858
RotationOffset 529.6328
# Orientation [ ]
}
"GSAT0202 (PRN E14)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.53902741
SemiMajorAxis 27977.481
Eccentricity 0.16261290
Inclination 50.3264
AscendingNode 332.3922
ArgOfPericenter 123.8775
MeanAnomaly 252.6950
}
Obliquity 50.3264
EquatorAscendingNode 332.3922
RotationOffset 426.6599
# Orientation [ ]
}
"GSAT0203 (PRN E26)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58659424
SemiMajorAxis 29600.104
Eccentricity 0.00016100
Inclination 56.7817
AscendingNode 22.1173
ArgOfPericenter 290.6433
MeanAnomaly 69.3820
}
Obliquity 56.7817
EquatorAscendingNode 22.1173
RotationOffset 502.9514
# Orientation [ ]
}
"GSAT0204 (PRN E22)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58659509
SemiMajorAxis 29600.133
Eccentricity 0.00007770
Inclination 56.7871
AscendingNode 22.1226
ArgOfPericenter 253.6504
MeanAnomaly 106.3830
}
Obliquity 56.7871
EquatorAscendingNode 22.1226
RotationOffset 310.4353
# Orientation [ ]
}
"GSAT0205 (PRN E24)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58660042
SemiMajorAxis 29600.312
Eccentricity 0.00042410
Inclination 55.6423
AscendingNode 262.7355
ArgOfPericenter 25.0848
MeanAnomaly 334.9296
}
Obliquity 55.6423
EquatorAscendingNode 262.7355
RotationOffset 481.0142
# Orientation [ ]
}
"GSAT0206 (PRN E30)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58660025
SemiMajorAxis 29600.307
Eccentricity 0.00023450
Inclination 55.6409
AscendingNode 262.7253
ArgOfPericenter 16.3512
MeanAnomaly 343.6504
}
Obliquity 55.6409
EquatorAscendingNode 262.7253
RotationOffset 409.1127
# Orientation [ ]
}
"GSAT0209 (PRN E09)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58659820
SemiMajorAxis 29600.238
Eccentricity 0.00056010
Inclination 55.1467
AscendingNode 142.1595
ArgOfPericenter 302.5044
MeanAnomaly 57.4440
}
Obliquity 55.1467
EquatorAscendingNode 142.1595
RotationOffset 539.3267
# Orientation [ ]
}
"GSAT0208 (PRN E08)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58659807
SemiMajorAxis 29600.233
Eccentricity 0.00048820
Inclination 55.1456
AscendingNode 142.1198
ArgOfPericenter 301.7567
MeanAnomaly 58.2008
}
Obliquity 55.1456
EquatorAscendingNode 142.1198
RotationOffset 353.5533
# Orientation [ ]
}
"GSAT0211 (PRN E02)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58659517
SemiMajorAxis 29600.136
Eccentricity 0.00028910
Inclination 55.7864
AscendingNode 262.6574
ArgOfPericenter 334.2974
MeanAnomaly 25.6822
}
Obliquity 55.7864
EquatorAscendingNode 262.6574
RotationOffset 528.5072
# Orientation [ ]
}
"GSAT0210 (PRN E01)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58659473
SemiMajorAxis 29600.121
Eccentricity 0.00021110
Inclination 55.7853
AscendingNode 262.6186
ArgOfPericenter 287.7193
MeanAnomaly 72.2499
}
Obliquity 55.7853
EquatorAscendingNode 262.6186
RotationOffset 407.3511
# Orientation [ ]
}
"GSAT0207 (PRN E07)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58660282
SemiMajorAxis 29600.393
Eccentricity 0.00058200
Inclination 54.8076
AscendingNode 142.3231
ArgOfPericenter 291.8817
MeanAnomaly 68.0607
}
Obliquity 54.8076
EquatorAscendingNode 142.3231
RotationOffset 378.7142
# Orientation [ ]
}
"GSAT0212 (PRN E03)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58660220
SemiMajorAxis 29600.372
Eccentricity 0.00042830
Inclination 54.8049
AscendingNode 142.4222
ArgOfPericenter 307.1523
MeanAnomaly 52.8209
}
Obliquity 54.8049
EquatorAscendingNode 142.4222
RotationOffset 257.1551
# Orientation [ ]
}
"GSAT0213 (PRN E04)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58660230
SemiMajorAxis 29600.376
Eccentricity 0.00055810
Inclination 54.8068
AscendingNode 142.3523
ArgOfPericenter 275.1988
MeanAnomaly 84.7405
}
Obliquity 54.8068
EquatorAscendingNode 142.3523
RotationOffset 496.9692
# Orientation [ ]
}
"GSAT0214 (PRN E05)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58660242
SemiMajorAxis 29600.380
Eccentricity 0.00046540
Inclination 54.8057
AscendingNode 142.3103
ArgOfPericenter 278.6875
MeanAnomaly 81.2648
}
Obliquity 54.8057
EquatorAscendingNode 142.3103
RotationOffset 457.8661
# Orientation [ ]
}
"GSAT0215 (PRN E21)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58659796
SemiMajorAxis 29600.230
Eccentricity 0.00014750
Inclination 55.7641
AscendingNode 262.5647
ArgOfPericenter 280.5096
MeanAnomaly 79.4583
}
Obliquity 55.7641
EquatorAscendingNode 262.5647
RotationOffset 442.7355
# Orientation [ ]
}
"GSAT0216 (PRN E25)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58659741
SemiMajorAxis 29600.211
Eccentricity 0.00032690
Inclination 55.7630
AscendingNode 262.5080
ArgOfPericenter 280.2508
MeanAnomaly 79.7058
}
Obliquity 55.7630
EquatorAscendingNode 262.5080
RotationOffset 217.7513
# Orientation [ ]
}
"GSAT0217 (PRN E27)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58659765
SemiMajorAxis 29600.219
Eccentricity 0.00029170
Inclination 55.7604
AscendingNode 262.4696
ArgOfPericenter 298.4787
MeanAnomaly 61.4858
}
Obliquity 55.7604
EquatorAscendingNode 262.4696
RotationOffset 202.5150
# Orientation [ ]
}
"GSAT0218 (PRN E31)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58659768
SemiMajorAxis 29600.220
Eccentricity 0.00037320
Inclination 55.7601
AscendingNode 262.4609
ArgOfPericenter 274.6392
MeanAnomaly 85.3118
}
Obliquity 55.7601
EquatorAscendingNode 262.4609
RotationOffset 339.2238
# Orientation [ ]
}
"GSAT0221 (PRN E15)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58659488
SemiMajorAxis 29600.126
Eccentricity 0.00027540
Inclination 57.1646
AscendingNode 21.8981
ArgOfPericenter 311.1855
MeanAnomaly 48.8317
}
Obliquity 57.1646
EquatorAscendingNode 21.8981
RotationOffset 376.3335
# Orientation [ ]
}
"GSAT0222 (PRN E33)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58659505
SemiMajorAxis 29600.132
Eccentricity 0.00028620
Inclination 57.1661
AscendingNode 21.9245
ArgOfPericenter 325.3460
MeanAnomaly 34.6782
}
Obliquity 57.1661
EquatorAscendingNode 21.9245
RotationOffset 528.9695
# Orientation [ ]
}
"GSAT0219 (PRN E36)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58659516
SemiMajorAxis 29600.135
Eccentricity 0.00026480
Inclination 57.1652
AscendingNode 22.0317
ArgOfPericenter 330.4509
MeanAnomaly 29.5845
}
Obliquity 57.1652
EquatorAscendingNode 22.0317
RotationOffset 479.9972
# Orientation [ ]
}
"GSAT0220 (PRN E13)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58659593
SemiMajorAxis 29600.161
Eccentricity 0.00024650
Inclination 57.1664
AscendingNode 21.9303
ArgOfPericenter 324.6636
MeanAnomaly 35.3633
}
Obliquity 57.1664
EquatorAscendingNode 21.9303
RotationOffset 536.9674
# Orientation [ ]
}
"GSAT0223" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58659574
SemiMajorAxis 29600.155
Eccentricity 0.00010660
Inclination 57.1581
AscendingNode 21.8877
ArgOfPericenter 106.7385
MeanAnomaly 98.9565
}
Obliquity 57.1581
EquatorAscendingNode 21.8877
RotationOffset 32.3055
# Orientation [ ]
}
"GSAT0224" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35154914
Period 0.58659572
SemiMajorAxis 29600.154
Eccentricity 0.00014750
Inclination 57.1596
AscendingNode 21.8438
ArgOfPericenter 80.2722
MeanAnomaly 97.7137
}
Obliquity 57.1596
EquatorAscendingNode 21.8438
RotationOffset 188.9291
# Orientation [ ]
}

Binary file not shown.

View File

@ -1,75 +0,0 @@
COSMOS 2433 (720)
1 32275U 07052A 22140.18815104 -.00000066 00000+0 00000+0 0 9991
2 32275 66.0824 5.6073 0000891 294.3159 242.2533 2.13104135113364
COSMOS 2432 (719)
1 32276U 07052B 22140.24634775 -.00000066 00000+0 00000+0 0 9992
2 32276 66.0951 5.7092 0010360 340.8980 188.7246 2.13103495113362
COSMOS 2434 (721)
1 32393U 07065A 22140.56974145 .00000001 00000+0 00000+0 0 9997
2 32393 64.3888 242.3768 0003130 89.7281 269.0547 2.13103248112071
COSMOS 2436 (723)
1 32395U 07065C 22139.92141977 .00000010 00000+0 00000+0 0 9996
2 32395 64.3983 242.4551 0015159 2.7713 354.5348 2.13103063111993
COSMOS 2456 (730)
1 36111U 09070A 22140.13191821 .00000062 00000+0 00000+0 0 9999
2 36111 64.3466 122.0265 0006299 303.3581 245.4998 2.13099331 96737
COSMOS 2457 (733)
1 36112U 09070B 22140.46507763 .00000063 00000+0 00000+0 0 9993
2 36112 64.3296 121.8915 0004161 200.9821 10.5303 2.13101508 96745
COSMOS 2461 (735)
1 36401U 10007B 22140.35080008 -.00000066 00000+0 00000+0 0 9996
2 36401 65.9687 4.4449 0021753 10.6188 148.1932 2.13103892 95094
COSMOS 2460 (732)
1 36402U 10007C 22140.43430926 -.00000067 00000+0 00000+0 0 9995
2 36402 65.9556 4.3927 0002514 48.0211 123.0051 2.13106490 95097
COSMOS 2464 (736)
1 37139U 10041C 22140.29065709 .00000005 00000+0 00000+0 0 9999
2 37139 63.9890 241.4761 0028751 11.7403 351.3743 2.13100869 91156
COSMOS 2476 (744)
1 37867U 11064A 22139.86598119 .00000062 00000+0 00000+0 0 9993
2 37867 64.6359 123.3813 0023136 241.8502 8.2653 2.13101934 82079
COSMOS 2477 (745)
1 37868U 11064B 22140.47037186 .00000065 00000+0 00000+0 0 9998
2 37868 64.6438 123.4252 0020530 243.2094 288.6956 2.13101728 82041
COSMOS 2475 (743)
1 37869U 11064C 22140.36322600 .00000065 00000+0 00000+0 0 9995
2 37869 64.6515 123.4363 0025285 258.8441 148.8421 2.13102036 82059
COSMOS 2485 (747)
1 39155U 13019A 22139.79910407 .00000062 00000+0 00000+0 0 9997
2 39155 64.8002 123.8052 0023505 237.7489 5.4496 2.13102011 70546
COSMOS 2492 (754)
1 39620U 14012A 22140.14272183 -.00000065 00000+0 00000+0 0 9995
2 39620 65.8413 4.0868 0013075 333.5276 207.7939 2.13103266 63505
COSMOS 2500 (755)
1 40001U 14032A 22140.38823870 -.00000066 00000+0 00000+0 0 9994
2 40001 65.7834 3.9430 0004324 189.0293 39.3894 2.13102549 61723
COSMOS 2501 (702K)
1 40315U 14075A 22140.34555839 .00000004 00000+0 00000+0 0 9993
2 40315 63.6958 242.1530 0017811 207.4088 156.1123 2.13101616 58133
COSMOS 2514 (751)
1 41330U 16008A 22140.32022640 -.00000066 00000+0 00000+0 0 9995
2 41330 65.5817 3.6431 0007944 204.0580 155.9555 2.13102651 48890
COSMOS 2516 (753)
1 41554U 16032A 22140.43055000 .00000003 00000+0 00000+0 0 9998
2 41554 63.9220 242.4181 0014060 214.0972 132.7047 2.13106402 46497
COSMOS 2522 (752)
1 42939U 17055A 22139.76168906 .00000012 00000+0 00000+0 0 9996
2 42939 64.1550 242.8284 0007195 239.0731 171.8804 2.13101996 36243
COSMOS 2527 (756)
1 43508U 18053A 22139.92403200 .00000063 00000+0 00000+0 0 9991
2 43508 64.9626 123.7947 0009784 243.7619 323.8480 2.13102603 30535
COSMOS 2529 (757)
1 43687U 18086A 22140.68889176 -.00000001 00000+0 00000+0 0 9993
2 43687 64.3702 243.1057 0009018 264.7899 93.0023 2.13102167 27567
COSMOS 2534 (758)
1 44299U 19030A 22140.51719274 .00000002 00000+0 00000+0 0 9996
2 44299 64.4435 242.9929 0011556 288.0314 72.6317 2.13102101 23212
COSMOS 2544 (759)
1 44850U 19088A 22140.29853748 .00000065 00000+0 00000+0 0 9991
2 44850 64.9490 123.6357 0014704 264.1209 274.2871 2.13102366 18972
COSMOS 2545 (760)
1 45358U 20018A 22139.78075001 -.00000066 00000+0 00000+0 0 9992
2 45358 64.9184 4.2931 0006925 255.4632 95.2286 2.13102775 16914
COSMOS 2547 (705K)
1 46805U 20075A 22140.43212407 .00000004 00000+0 00000+0 0 9991
2 46805 64.6674 242.4121 0006579 243.2601 99.7356 2.13103305 12177

View File

@ -1,20 +1,525 @@
"2007-052A" "Sol/Earth" {
Class "spacecraft"
# Mesh
Radius 0.005
"COSMOS 2433 (720)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459719.68815104
Period 0.46925415
SemiMajorAxis 25507.827
Eccentricity 0.0000891
Inclination 66.0824
AscendingNode 5.6073
ArgOfPericenter 294.3159
MeanAnomaly 242.2533
Epoch 2459722.35410604
Period 0.46925417
SemiMajorAxis 25507.828
Eccentricity 0.00008650
Inclination 66.0825
AscendingNode 5.5445
ArgOfPericenter 294.9339
MeanAnomaly 253.2224
}
Obliquity 66.0824
EquatorAscendingNode 5.6073
RotationOffset 183.6393
Obliquity 66.0825
EquatorAscendingNode 5.5445
RotationOffset 464.1986
# Orientation [ ]
}
"COSMOS 2432 (719)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46925558
SemiMajorAxis 25507.879
Eccentricity 0.00103510
Inclination 66.0953
AscendingNode 5.6536
ArgOfPericenter 340.8876
MeanAnomaly 16.9795
}
Obliquity 66.0953
EquatorAscendingNode 5.6536
RotationOffset 506.9199
# Orientation [ ]
}
"COSMOS 2434 (721)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46925614
SemiMajorAxis 25507.899
Eccentricity 0.00031130
Inclination 64.3882
AscendingNode 242.3124
ArgOfPericenter 89.7374
MeanAnomaly 283.6438
}
Obliquity 64.3882
EquatorAscendingNode 242.3124
RotationOffset 392.9036
# Orientation [ ]
}
"COSMOS 2436 (723)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46925650
SemiMajorAxis 25507.912
Eccentricity 0.00151480
Inclination 64.3976
AscendingNode 242.3738
ArgOfPericenter 1.9988
MeanAnomaly 40.0624
}
Obliquity 64.3976
EquatorAscendingNode 242.3738
RotationOffset 152.6654
# Orientation [ ]
}
"COSMOS 2456 (730)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46926480
SemiMajorAxis 25508.213
Eccentricity 0.00062540
Inclination 64.3473
AscendingNode 121.9468
ArgOfPericenter 303.5021
MeanAnomaly 230.2461
}
Obliquity 64.3473
EquatorAscendingNode 121.9468
RotationOffset 392.2613
# Orientation [ ]
}
"COSMOS 2457 (733)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46925997
SemiMajorAxis 25508.038
Eccentricity 0.00041610
Inclination 64.3305
AscendingNode 121.8481
ArgOfPericenter 200.5522
MeanAnomaly 267.5664
}
Obliquity 64.3305
EquatorAscendingNode 121.8481
RotationOffset 432.6802
# Orientation [ ]
}
"COSMOS 2461 (735)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46925474
SemiMajorAxis 25507.848
Eccentricity 0.00217200
Inclination 65.9686
AscendingNode 4.3808
ArgOfPericenter 10.6749
MeanAnomaly 175.4358
}
Obliquity 65.9686
EquatorAscendingNode 4.3808
RotationOffset 213.6207
# Orientation [ ]
}
"COSMOS 2460 (732)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46924897
SemiMajorAxis 25507.639
Eccentricity 0.00024890
Inclination 65.9559
AscendingNode 4.3346
ArgOfPericenter 48.7558
MeanAnomaly 14.9473
}
Obliquity 65.9559
EquatorAscendingNode 4.3346
RotationOffset 243.4195
# Orientation [ ]
}
"COSMOS 2464 (736)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46926139
SemiMajorAxis 25508.089
Eccentricity 0.00287050
Inclination 63.9889
AscendingNode 241.4110
ArgOfPericenter 11.6997
MeanAnomaly 346.4541
}
Obliquity 63.9889
EquatorAscendingNode 241.4110
RotationOffset 443.5824
# Orientation [ ]
}
"COSMOS 2476 (744)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46925902
SemiMajorAxis 25508.004
Eccentricity 0.00231450
Inclination 64.6364
AscendingNode 123.3051
ArgOfPericenter 241.8571
MeanAnomaly 289.8326
}
Obliquity 64.6364
EquatorAscendingNode 123.3051
RotationOffset 414.4884
# Orientation [ ]
}
"COSMOS 2477 (745)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46925951
SemiMajorAxis 25508.021
Eccentricity 0.00205300
Inclination 64.6442
AscendingNode 123.3650
ArgOfPericenter 243.1709
MeanAnomaly 207.0585
}
Obliquity 64.6442
EquatorAscendingNode 123.3650
RotationOffset 442.2719
# Orientation [ ]
}
"COSMOS 2475 (743)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46925881
SemiMajorAxis 25507.996
Eccentricity 0.00252560
Inclination 64.6521
AscendingNode 123.3703
ArgOfPericenter 258.8512
MeanAnomaly 203.0640
}
Obliquity 64.6521
EquatorAscendingNode 123.3703
RotationOffset 344.2693
# Orientation [ ]
}
"COSMOS 2485 (747)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46925885
SemiMajorAxis 25507.997
Eccentricity 0.00235130
Inclination 64.8007
AscendingNode 123.7449
ArgOfPericenter 237.7294
MeanAnomaly 295.3689
}
Obliquity 64.8007
EquatorAscendingNode 123.7449
RotationOffset 444.8817
# Orientation [ ]
}
"COSMOS 2492 (754)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46925619
SemiMajorAxis 25507.901
Eccentricity 0.00130610
Inclination 65.8406
AscendingNode 4.0081
ArgOfPericenter 334.1018
MeanAnomaly 204.3786
}
Obliquity 65.8406
EquatorAscendingNode 4.0081
RotationOffset 691.2204
# Orientation [ ]
}
"COSMOS 2500 (755)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46925771
SemiMajorAxis 25507.956
Eccentricity 0.00043330
Inclination 65.7838
AscendingNode 3.8802
ArgOfPericenter 188.4336
MeanAnomaly 24.7277
}
Obliquity 65.7838
EquatorAscendingNode 3.8802
RotationOffset 211.8552
# Orientation [ ]
}
"COSMOS 2501 (702K)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46926020
SemiMajorAxis 25508.046
Eccentricity 0.00180990
Inclination 63.6953
AscendingNode 242.0744
ArgOfPericenter 208.3375
MeanAnomaly 106.6460
}
Obliquity 63.6953
EquatorAscendingNode 242.0744
RotationOffset 145.0471
# Orientation [ ]
}
"COSMOS 2514 (751)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46925729
SemiMajorAxis 25507.941
Eccentricity 0.00079620
Inclination 65.5817
AscendingNode 3.5796
ArgOfPericenter 203.7219
MeanAnomaly 156.2891
}
Obliquity 65.5817
EquatorAscendingNode 3.5796
RotationOffset 290.0414
# Orientation [ ]
}
"COSMOS 2516 (753)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46924910
SemiMajorAxis 25507.644
Eccentricity 0.00141180
Inclination 63.9211
AscendingNode 242.3605
ArgOfPericenter 214.2486
MeanAnomaly 326.0788
}
Obliquity 63.9211
EquatorAscendingNode 242.3605
RotationOffset 621.4161
# Orientation [ ]
}
"COSMOS 2522 (752)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46925885
SemiMajorAxis 25507.998
Eccentricity 0.00072980
Inclination 64.1543
AscendingNode 242.7337
ArgOfPericenter 239.1168
MeanAnomaly 116.5371
}
Obliquity 64.1543
EquatorAscendingNode 242.7337
RotationOffset 254.8687
# Orientation [ ]
}
"COSMOS 2527 (756)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46925758
SemiMajorAxis 25507.951
Eccentricity 0.00097730
Inclination 64.9636
AscendingNode 123.7202
ArgOfPericenter 243.6244
MeanAnomaly 229.5308
}
Obliquity 64.9636
EquatorAscendingNode 123.7202
RotationOffset 347.8581
# Orientation [ ]
}
"COSMOS 2529 (757)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46925844
SemiMajorAxis 25507.983
Eccentricity 0.00091060
Inclination 64.3696
AscendingNode 243.0395
ArgOfPericenter 264.7059
MeanAnomaly 137.7387
}
Obliquity 64.3696
EquatorAscendingNode 243.0395
RotationOffset 420.6724
# Orientation [ ]
}
"COSMOS 2534 (758)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46925863
SemiMajorAxis 25507.989
Eccentricity 0.00115770
Inclination 64.4427
AscendingNode 242.9295
ArgOfPericenter 287.8000
MeanAnomaly 57.7569
}
Obliquity 64.4427
EquatorAscendingNode 242.9295
RotationOffset 516.3098
# Orientation [ ]
}
"COSMOS 2544 (759)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46925807
SemiMajorAxis 25507.969
Eccentricity 0.00146970
Inclination 64.9495
AscendingNode 123.5608
ArgOfPericenter 264.1221
MeanAnomaly 187.4144
}
Obliquity 64.9495
EquatorAscendingNode 123.5608
RotationOffset 592.1854
# Orientation [ ]
}
"COSMOS 2545 (760)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46925730
SemiMajorAxis 25507.941
Eccentricity 0.00068280
Inclination 64.9185
AscendingNode 4.2068
ArgOfPericenter 255.3660
MeanAnomaly 209.1575
}
Obliquity 64.9185
EquatorAscendingNode 4.2068
RotationOffset 308.1085
# Orientation [ ]
}
"COSMOS 2547 (705K)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35410604
Period 0.46925600
SemiMajorAxis 25507.894
Eccentricity 0.00066270
Inclination 64.6671
AscendingNode 242.3571
ArgOfPericenter 243.3580
MeanAnomaly 274.0048
}
Obliquity 64.6671
EquatorAscendingNode 242.3571
RotationOffset 669.8447
# Orientation [ ]
}

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -1,477 +0,0 @@
GPS BIIR-2 (PRN 13)
1 24876U 97035A 22139.44467728 .00000060 00000+0 00000+0 0 9994
2 24876 55.5062 156.8049 0057297 51.2220 309.3262 2.00563314182074
GPS BIIR-4 (PRN 20)
1 26360U 00025A 22140.55087356 -.00000025 00000+0 00000+0 0 9998
2 26360 54.0372 80.0184 0048014 184.0208 342.6586 2.00574486161414
GPS BIIR-5 (PRN 28)
1 26407U 00040A 22140.54933905 -.00000020 00000+0 00000+0 0 9991
2 26407 55.4840 274.3658 0167791 286.4872 77.8086 2.00562710160095
GPS BIIR-8 (PRN 16)
1 27663U 03005A 22140.34666721 -.00000018 00000+0 00000+0 0 9994
2 27663 55.5318 274.1767 0125951 40.9892 319.2593 2.00566116141445
GPS BIIR-9 (PRN 21)
1 27704U 03010A 22139.73556078 -.00000091 00000+0 00000+0 0 9991
2 27704 55.0138 24.4683 0245232 305.3311 191.4921 2.00554461140239
GPS BIIR-10 (PRN 22)
1 28129U 03058A 22140.12621554 -.00000020 00000+0 00000+0 0 9994
2 28129 53.8516 82.6390 0071692 314.6500 44.7440 2.00578736134924
GPS BIIR-11 (PRN 19)
1 28190U 04009A 22140.36083711 -.00000064 00000+0 00000+0 0 9990
2 28190 56.0209 335.1494 0090307 119.0431 47.7831 2.00560826133085
GPS BIIR-13 (PRN 02)
1 28474U 04045A 22140.02455970 -.00000092 00000+0 00000+0 0 9999
2 28474 55.3414 24.5837 0206772 278.7437 274.6631 2.00564825128563
CRE (WAAS/PRN 138)
1 28868U 05036A 22140.53726125 -.00000080 00000+0 00000+0 0 9993
2 28868 0.4910 93.6576 0003455 331.4217 259.2041 1.00271488 31527
GPS BIIRM-1 (PRN 17)
1 28874U 05038A 22140.35926650 -.00000061 00000+0 00000+0 0 9996
2 28874 56.0883 332.5828 0137184 274.4318 271.6368 2.00577988121974
IOR-W (EGNOS/PRN 126)
1 28899U 05044A 22139.81631580 .00000006 00000+0 00000+0 0 9992
2 28899 3.4833 37.1476 0003190 36.5383 161.5331 1.00272017 60587
GPS BIIRM-2 (PRN 31)
1 29486U 06042A 22140.21247637 .00000015 00000+0 00000+0 0 9996
2 29486 54.7168 210.3964 0103302 21.1910 337.5477 2.00555659114526
GPS BIIRM-3 (PRN 12)
1 29601U 06052A 22139.65621071 -.00000012 00000+0 00000+0 0 9998
2 29601 55.5383 273.1405 0084274 73.2298 287.6804 2.00578190113537
COSMOS 2425 (716)
1 29670U 06062A 22138.30572833 .00000023 00000+0 00000+0 0 9998
2 29670 64.7686 244.1495 0025272 335.6213 35.7688 2.13111143119817
GPS BIIRM-4 (PRN 15)
1 32260U 07047A 22140.47183423 .00000055 00000+0 00000+0 0 9990
2 32260 53.3071 141.7030 0138423 62.1610 299.2426 2.00549699106956
COSMOS 2433 (720)
1 32275U 07052A 22140.18815104 -.00000066 00000+0 00000+0 0 9991
2 32275 66.0824 5.6073 0000891 294.3159 242.2533 2.13104135113364
COSMOS 2432 (719)
1 32276U 07052B 22140.24634775 -.00000066 00000+0 00000+0 0 9992
2 32276 66.0951 5.7092 0010360 340.8980 188.7246 2.13103495113362
GPS BIIRM-5 (PRN 29)
1 32384U 07062A 22140.53837799 -.00000062 00000+0 00000+0 0 9992
2 32384 56.2063 333.3331 0019898 134.2066 45.3452 2.00560316105653
COSMOS 2434 (721)
1 32393U 07065A 22140.56974145 .00000001 00000+0 00000+0 0 9997
2 32393 64.3888 242.3768 0003130 89.7281 269.0547 2.13103248112071
COSMOS 2436 (723)
1 32395U 07065C 22139.92141977 .00000010 00000+0 00000+0 0 9996
2 32395 64.3983 242.4551 0015159 2.7713 354.5348 2.13103063111993
GPS BIIRM-6 (PRN 07)
1 32711U 08012A 22140.38600084 .00000014 00000+0 00000+0 0 9996
2 32711 54.4762 209.3316 0162647 230.5959 128.0248 2.00564397103899
GPS BIIRM-8 (PRN 05)
1 35752U 09043A 22139.66190778 -.00000010 00000+0 00000+0 0 9999
2 35752 55.0508 86.6863 0057911 57.4736 157.0712 2.00557731 93486
COSMOS 2456 (730)
1 36111U 09070A 22140.13191821 .00000062 00000+0 00000+0 0 9999
2 36111 64.3466 122.0265 0006299 303.3581 245.4998 2.13099331 96737
COSMOS 2457 (733)
1 36112U 09070B 22140.46507763 .00000063 00000+0 00000+0 0 9993
2 36112 64.3296 121.8915 0004161 200.9821 10.5303 2.13101508 96745
BEIDOU 3 (C01)
1 36287U 10001A 22140.83613831 -.00000288 00000+0 00000+0 0 9997
2 36287 1.8382 46.5258 0004661 17.4955 255.8633 1.00269195 45237
COSMOS 2459 (731)
1 36400U 10007A 22140.36216654 -.00000066 00000+0 00000+0 0 9994
2 36400 65.9737 4.4792 0026153 351.2411 186.1241 2.13117614 95083
COSMOS 2461 (735)
1 36401U 10007B 22140.35080008 -.00000066 00000+0 00000+0 0 9996
2 36401 65.9687 4.4449 0021753 10.6188 148.1932 2.13103892 95094
COSMOS 2460 (732)
1 36402U 10007C 22140.43430926 -.00000067 00000+0 00000+0 0 9995
2 36402 65.9556 4.3927 0002514 48.0211 123.0051 2.13106490 95097
GPS BIIF-1 (PRN 25)
1 36585U 10022A 22140.17311854 -.00000015 00000+0 00000+0 0 9996
2 36585 54.8202 268.6593 0103275 56.8078 283.0854 2.00563723 87723
BEIDOU 5 (C06)
1 36828U 10036A 22140.65345476 -.00000081 00000+0 00000+0 0 9994
2 36828 54.1897 176.4829 0027874 190.8910 212.4573 1.00254231 43308
COSMOS 2464 (736)
1 37139U 10041C 22140.29065709 .00000005 00000+0 00000+0 0 9999
2 37139 63.9890 241.4761 0028751 11.7403 351.3743 2.13100869 91156
QZS-1 (QZSS/PRN 183)
1 37158U 10045A 22139.83044515 -.00000077 00000+0 00000+0 0 9994
2 37158 42.3046 133.7790 0758413 270.4929 274.8646 1.00265488 42801
BEIDOU 6 (C04)
1 37210U 10057A 22140.57617112 -.00000118 00000+0 00000+0 0 9994
2 37210 0.8118 44.5356 0002199 135.4013 65.6929 1.00272079 42357
BEIDOU 7 (C07)
1 37256U 10068A 22140.23005830 -.00000210 00000+0 00000+0 0 9990
2 37256 50.2627 289.9819 0020318 182.6120 315.2724 1.00258591 41861
COSMOS 2471 (701K)
1 37372U 11009A 22139.53299998 -.00000062 00000+0 00000+0 0 9991
2 37372 65.9491 4.3528 0015577 232.3952 62.8523 2.13061235 87342
BEIDOU 8 (C08)
1 37384U 11013A 22140.23923653 -.00000206 00000+0 00000+0 0 9990
2 37384 60.2535 54.5388 0017858 189.9459 187.2142 1.00263598 40749
GSAT-8 (GAGAN/PRN 127)
1 37605U 11022A 22138.78215002 .00000085 00000+0 00000+0 0 9999
2 37605 0.0675 101.6551 0002788 206.3463 265.0938 1.00272631 38274
GPS BIIF-2 (PRN 01)
1 37753U 11036A 22140.57181778 -.00000092 00000+0 00000+0 0 9999
2 37753 56.5936 29.7888 0117117 51.3525 301.4795 2.00565105 79416
BEIDOU 9 (C09)
1 37763U 11038A 22140.42056622 -.00000039 00000+0 00000+0 0 9996
2 37763 54.4730 178.9740 0097179 227.7163 77.3401 1.00285178 39712
GSAT0101 (PRN E11)
1 37846U 11060A 22140.09549104 -.00000093 00000+0 00000+0 0 9998
2 37846 56.9858 22.1062 0004117 28.0726 331.9949 1.70474933 65739
GSAT0102 (PRN E12)
1 37847U 11060B 22139.14163397 -.00000089 00000+0 00000+0 0 9994
2 37847 56.9864 22.1321 0004216 357.8383 183.4495 1.70475243 65727
COSMOS 2476 (744)
1 37867U 11064A 22139.86598119 .00000062 00000+0 00000+0 0 9993
2 37867 64.6359 123.3813 0023136 241.8502 8.2653 2.13101934 82079
COSMOS 2477 (745)
1 37868U 11064B 22140.47037186 .00000065 00000+0 00000+0 0 9998
2 37868 64.6438 123.4252 0020530 243.2094 288.6956 2.13101728 82041
COSMOS 2475 (743)
1 37869U 11064C 22140.36322600 .00000065 00000+0 00000+0 0 9995
2 37869 64.6515 123.4363 0025285 258.8441 148.8421 2.13102036 82059
BEIDOU 10 (C10)
1 37948U 11073A 22140.39592791 -.00000156 00000+0 00000+0 0 9998
2 37948 50.3816 289.6179 0079035 216.9170 327.9768 1.00259344 38470
LUCH 5A (SDCM/PRN 140)
1 37951U 11074B 22140.75498372 -.00000053 00000+0 00000+0 0 9999
2 37951 4.9511 98.1967 0005956 334.5483 244.4713 1.00268119 38264
BEIDOU 11 (C05)
1 38091U 12008A 22140.90833652 .00000050 00000+0 00000+0 0 9990
2 38091 1.5029 66.6351 0015287 332.5667 225.0098 1.00273857 37551
BEIDOU 12 (C11)
1 38250U 12018A 22140.14357701 -.00000087 00000+0 00000+0 0 9991
2 38250 56.7008 354.4937 0020350 255.7347 54.3681 1.86234472 68552
BEIDOU 13 (C12)
1 38251U 12018B 22139.84783811 -.00000085 00000+0 00000+0 0 9990
2 38251 56.6179 353.8302 0011185 261.1667 254.8882 1.86234333 68558
SES-5 (EGNOS/PRN 136)
1 38652U 12036A 22138.29770316 .00000037 00000+0 00000+0 0 9995
2 38652 0.0545 295.1208 0002157 124.0019 288.9977 1.00271563 29533
BEIDOU 15 (C14)
1 38775U 12050B 22140.39688730 .00000039 00000+0 00000+0 0 9991
2 38775 55.3856 112.6287 0015647 321.1449 39.3980 1.86231328 65948
GSAT-10 (GAGAN/PRN 128)
1 38779U 12051B 22138.93773524 -.00000164 00000+0 00000+0 0 9999
2 38779 0.1029 104.0747 0001285 28.8817 164.2165 1.00269952 35176
GPS BIIF-3 (PRN 24)
1 38833U 12053A 22140.56599742 .00000015 00000+0 00000+0 0 9996
2 38833 53.5306 204.4924 0122998 45.9959 315.0857 2.00561398 69587
GSAT0103 (PRN E19)
1 38857U 12055A 22139.54861057 .00000065 00000+0 00000+0 0 9996
2 38857 55.1297 142.4927 0005563 269.2755 90.6656 1.70473622 59611
GSAT0104 (PRN E20)
1 38858U 12055B 22139.51878192 .00000065 00000+0 00000+0 0 9992
2 38858 55.1301 142.4950 0003126 270.1643 89.8048 1.70473902 59610
BEIDOU 16 (C02)
1 38953U 12059A 22140.53794189 -.00000181 00000+0 00000+0 0 9999
2 38953 1.9216 84.4126 0012565 301.5403 129.9479 1.00270098 34981
LUCH 5B (SDCM/PRN 125)
1 38977U 12061A 22140.85045060 -.00000143 00000+0 00000+0 0 9998
2 38977 7.2340 62.8147 0005058 24.2616 81.2021 1.00270681 35253
COSMOS 2485 (747)
1 39155U 13019A 22139.79910407 .00000062 00000+0 00000+0 0 9997
2 39155 64.8002 123.8052 0023505 237.7489 5.4496 2.13102011 70546
GPS BIIF-4 (PRN 27)
1 39166U 13023A 22139.92620424 -.00000058 00000+0 00000+0 0 9992
2 39166 55.7171 328.9835 0103991 37.9613 322.7762 2.00565965 66013
IRNSS-1A
1 39199U 13034A 22134.94840973 .00000097 00000+0 00000+0 0 9992
2 39199 32.3564 85.8879 0017453 184.5411 358.8237 1.00278833 32389
GPS BIIF-5 (PRN 30)
1 39533U 14008A 22139.92382548 .00000018 00000+0 00000+0 0 9991
2 39533 53.6254 210.0220 0059265 207.7330 152.0233 2.00551982 59817
ASTRA 5B (EGNOS/PRN 123)
1 39617U 14011B 22140.52738851 .00000149 00000+0 00000+0 0 9993
2 39617 0.0473 317.8656 0003759 108.1115 33.5526 1.00272416 29748
COSMOS 2492 (754)
1 39620U 14012A 22140.14272183 -.00000065 00000+0 00000+0 0 9995
2 39620 65.8413 4.0868 0013075 333.5276 207.7939 2.13103266 63505
IRNSS-1B
1 39635U 14017A 22139.92188139 .00000088 00000+0 00000+0 0 9991
2 39635 28.8009 265.5831 0022501 182.5764 176.2765 1.00273297 29857
LUCH 5V (SDCM/PRN 141)
1 39727U 14023A 22140.68808098 -.00000275 00000+0 00000+0 0 9997
2 39727 1.4350 74.9630 0003736 19.9603 125.8315 1.00273506547587
GPS BIIF-6 (PRN 06)
1 39741U 14026A 22140.20450784 -.00000090 00000+0 00000+0 0 9994
2 39741 56.5558 29.3288 0027458 307.6609 52.1310 2.00557919 58675
COSMOS 2500 (755)
1 40001U 14032A 22140.38823870 -.00000066 00000+0 00000+0 0 9994
2 40001 65.7834 3.9430 0004324 189.0293 39.3894 2.13102549 61723
GPS BIIF-7 (PRN 09)
1 40105U 14045A 22140.29024475 .00000058 00000+0 00000+0 0 9997
2 40105 54.6859 147.9280 0018642 109.5325 250.6876 2.00576021 56217
GSAT0201 (PRN E18)
1 40128U 14050A 22140.18146002 -.00000083 00000+0 00000+0 0 9996
2 40128 50.3019 333.4073 1629141 122.9996 253.7486 1.85518695 50693
GSAT0202 (PRN E14)
1 40129U 14050B 22139.90355583 -.00000082 00000+0 00000+0 0 9990
2 40129 50.3277 332.4781 1626215 123.7983 252.7910 1.85519349 52824
IRNSS-1C
1 40269U 14061A 22140.53768023 -.00000166 00000+0 00000+0 0 9998
2 40269 2.9027 129.9763 0019691 5.7932 19.0169 1.00272989 27768
GPS BIIF-8 (PRN 03)
1 40294U 14068A 22140.16782637 -.00000004 00000+0 00000+0 0 9990
2 40294 55.7955 89.0520 0039862 52.8918 307.4427 2.00569454 55341
COSMOS 2501 (702K)
1 40315U 14075A 22140.34555839 .00000004 00000+0 00000+0 0 9993
2 40315 63.6958 242.1530 0017811 207.4088 156.1123 2.13101616 58133
GPS BIIF-9 (PRN 26)
1 40534U 15013A 22140.30329830 -.00000018 00000+0 00000+0 0 9991
2 40534 53.7214 265.8614 0068568 20.6460 339.6261 2.00554062 51968
GSAT0203 (PRN E26)
1 40544U 15017A 22140.46286444 -.00000095 00000+0 00000+0 0 9991
2 40544 56.7817 22.1333 0001631 290.9335 69.0931 1.70475577 44480
GSAT0204 (PRN E22)
1 40545U 15017B 22140.12898007 -.00000094 00000+0 00000+0 0 9998
2 40545 56.7866 22.1547 0000808 256.2361 103.7998 1.70475368 6868
IRNSS-1D
1 40547U 15018A 22140.26924088 -.00000298 00000+0 00000+0 0 9991
2 40547 28.6272 265.6125 0022762 182.9668 358.1214 1.00272909 26063
BEIDOU 17 (C31)
1 40549U 15019A 22140.46709792 -.00000150 00000+0 00000+0 0 9996
2 40549 51.9369 313.0776 0036964 187.7719 355.5168 1.00249887 26158
GPS BIIF-10 (PRN 08)
1 40730U 15033A 22139.96904141 -.00000058 00000+0 00000+0 0 9999
2 40730 55.2164 327.8245 0074217 7.8143 352.3068 2.00553238 50127
BEIDOU 18 (C57)
1 40748U 15037A 22140.75191789 -.00000089 00000+0 00000+0 0 9991
2 40748 55.8726 352.6832 0005439 31.6183 280.0357 1.86233391 46393
BEIDOU 19 (C58)
1 40749U 15037B 22140.31598762 -.00000087 00000+0 00000+0 0 9994
2 40749 55.8770 352.6868 0005069 355.5612 158.4644 1.86232315 46387
GSAT0205 (PRN E24)
1 40889U 15045A 22140.48260977 -.00000023 00000+0 00000+0 0 9990
2 40889 55.6423 262.7355 0004241 25.0848 334.9296 1.70473796 41638
GSAT0206 (PRN E30)
1 40890U 15045B 22138.35703658 -.00000014 00000+0 00000+0 0 9993
2 40890 55.6428 262.7900 0002420 17.9740 342.0212 1.70473765 41622
BEIDOU 20 (C18)
1 40938U 15053A 22140.24362542 -.00000131 00000+0 00000+0 0 9999
2 40938 51.5454 276.1956 0046233 193.8147 308.0670 1.00253142 24421
GPS BIIF-11 (PRN 10)
1 41019U 15062A 22140.01479121 -.00000004 00000+0 00000+0 0 9996
2 41019 55.7843 88.9002 0077490 218.5273 140.8905 2.00562634 47962
GSAT-15 (GAGAN/PRN 139)
1 41028U 15065A 22138.38707264 -.00000255 00000+0 00000+0 0 9996
2 41028 0.1208 98.5758 0003984 343.3147 27.0288 1.00271016 23863
GSAT0209 (PRN E09)
1 41174U 15079A 22140.29134230 .00000063 00000+0 00000+0 0 9999
2 41174 55.1465 142.1755 0005601 302.4677 57.4809 1.70474465 39396
GSAT0208 (PRN E08)
1 41175U 15079B 22139.33763162 .00000065 00000+0 00000+0 0 9997
2 41175 55.1445 142.2005 0004867 301.1616 58.7956 1.70474468 39790
IRNSS-1E
1 41241U 16003A 22139.91741662 -.00000302 00000+0 00000+0 0 9999
2 41241 29.9175 85.0567 0018092 182.3854 52.2129 1.00273487 23142
GPS BIIF-12 (PRN 32)
1 41328U 16007A 22140.60616683 .00000060 00000+0 00000+0 0 9991
2 41328 54.9043 148.5806 0061512 230.4191 129.0554 2.00571890 45986
COSMOS 2514 (751)
1 41330U 16008A 22140.32022640 -.00000066 00000+0 00000+0 0 9995
2 41330 65.5817 3.6431 0007944 204.0580 155.9555 2.13102651 48890
IRNSS-1F
1 41384U 16015A 22140.52765015 .00000155 00000+0 00000+0 0 9992
2 41384 2.1452 158.7204 0019333 187.6562 114.1975 1.00268546 22731
BEIDOU IGSO-6 (C13)
1 41434U 16021A 22140.55412426 -.00000178 00000+0 00000+0 0 9999
2 41434 58.0632 53.1245 0044392 219.6117 259.7541 1.00288625 22550
IRNSS-1G
1 41469U 16027A 22140.54701257 -.00000339 00000+0 00000+0 0 9994
2 41469 2.0820 161.7602 0006713 293.3439 109.5477 1.00271398 22256
GSAT0211 (PRN E02)
1 41549U 16030A 22140.04379056 -.00000020 00000+0 00000+0 0 9997
2 41549 55.7868 262.6735 0002894 334.8834 25.0958 1.70475315 37261
GSAT0210 (PRN E01)
1 41550U 16030B 22139.74985358 -.00000018 00000+0 00000+0 0 9999
2 41550 55.7870 262.6831 0002083 288.7800 71.1901 1.70475398 37275
COSMOS 2516 (753)
1 41554U 16032A 22140.43055000 .00000003 00000+0 00000+0 0 9998
2 41554 63.9220 242.4181 0014060 214.0972 132.7047 2.13106402 46497
BEIDOU-2 G7 (C03)
1 41586U 16037A 22140.54317498 -.00000360 00000+0 00000+0 0 9999
2 41586 1.9190 69.4620 0009100 4.6095 110.1976 1.00271612 21869
E 117 W B (WAAS/PRN 131)
1 41589U 16038B 22136.98176984 -.00000003 00000+0 00000+0 0 9993
2 41589 0.0155 148.9896 0000357 137.6589 184.4533 1.00271666 21717
GSAT0207 (PRN E07)
1 41859U 16069A 22138.82446957 .00000067 00000+0 00000+0 0 9991
2 41859 54.8065 142.4043 0005813 291.6231 68.3227 1.70473144 33999
GSAT0212 (PRN E03)
1 41860U 16069B 22138.09129134 .00000072 00000+0 00000+0 0 9993
2 41860 54.8049 142.4222 0004283 307.1523 52.8209 1.70473278 34233
GSAT0213 (PRN E04)
1 41861U 16069C 22139.62989564 .00000064 00000+0 00000+0 0 9996
2 41861 54.8064 142.3848 0005581 275.2227 84.7181 1.70473273 34128
GSAT0214 (PRN E05)
1 41862U 16069D 22139.19038442 .00000065 00000+0 00000+0 0 9990
2 41862 54.8046 142.3916 0004653 278.4083 81.5449 1.70473218 34243
SES-15 (WAAS/PRN 133)
1 42709U 17026A 22140.51036135 .00000054 00000+0 00000+0 0 9998
2 42709 0.0252 16.7475 0000506 61.0170 214.9571 1.00269616 19256
QZS-2 (QZSS/PRN 184)
1 42738U 17028A 22127.70578247 -.00000212 00000+0 00000+0 0 9990
2 42738 41.8409 264.7425 0740515 270.7432 81.2225 1.00249045 18092
QZS-3 (QZSS/PRN 189)
1 42917U 17048A 22140.54648927 -.00000354 00000+0 00000+0 0 9998
2 42917 0.0562 213.3827 0001911 219.8522 128.6907 1.00275082 17337
COSMOS 2522 (752)
1 42939U 17055A 22139.76168906 .00000012 00000+0 00000+0 0 9996
2 42939 64.1550 242.8284 0007195 239.0731 171.8804 2.13101996 36243
QZS-4 (QZSS/PRN 185)
1 42965U 17062A 22140.47529642 -.00000342 00000+0 00000+0 0 9998
2 42965 40.7737 2.4691 0746228 271.0177 273.4297 1.00259215 16884
BEIDOU-3 M1 (C19)
1 43001U 17069A 22140.43020463 .00000039 00000+0 00000+0 0 9992
2 43001 55.5388 112.6246 0012503 293.0169 246.1051 1.86231756 30873
BEIDOU-3 M2 (C20)
1 43002U 17069B 22140.87240752 .00000042 00000+0 00000+0 0 9990
2 43002 55.5388 112.6451 0010695 310.5664 208.1021 1.86231404 30872
GSAT0215 (PRN E21)
1 43055U 17079A 22137.92137227 -.00000014 00000+0 00000+0 0 9993
2 43055 55.7641 262.5647 0001475 280.5096 79.4583 1.70474511 27562
GSAT0216 (PRN E25)
1 43056U 17079B 22139.97337679 -.00000020 00000+0 00000+0 0 9991
2 43056 55.7630 262.5080 0003269 280.2508 79.7058 1.70474669 27586
GSAT0217 (PRN E27)
1 43057U 17079C 22138.43385216 -.00000014 00000+0 00000+0 0 9995
2 43057 55.7625 262.5502 0002881 299.9075 60.0514 1.70474577 27572
GSAT0218 (PRN E31)
1 43058U 17079D 22140.41362928 -.00000023 00000+0 00000+0 0 9992
2 43058 55.7609 262.4931 0003704 274.9749 84.9770 1.70474568 27632
BEIDOU-3 M3 (C27)
1 43107U 18003A 22139.79818075 -.00000088 00000+0 00000+0 0 9994
2 43107 55.3234 353.6456 0005909 54.1821 270.3595 1.86232590 29610
BEIDOU-3 M4 (C28)
1 43108U 18003B 22140.61986484 -.00000090 00000+0 00000+0 0 9991
2 43108 55.3155 353.6060 0001807 269.3812 290.1104 1.86231034 29637
BEIDOU-3 M5 (C21)
1 43207U 18018A 22139.69371364 .00000036 00000+0 00000+0 0 9997
2 43207 55.4970 112.7638 0007680 325.3469 34.5671 1.86231679 29009
BEIDOU-3 M6 (C22)
1 43208U 18018B 22139.76033599 .00000037 00000+0 00000+0 0 9992
2 43208 55.4956 112.7661 0010421 301.0672 58.7935 1.86231682 29009
BEIDOU-3 M7 (C29)
1 43245U 18029A 22139.94676103 -.00000086 00000+0 00000+0 0 9994
2 43245 55.2386 351.4117 0001459 43.2689 291.2881 1.86232700 28158
BEIDOU-3 M8 (C30)
1 43246U 18029B 22140.20704101 -.00000087 00000+0 10000-3 0 9992
2 43246 55.2343 351.4327 0004918 10.3847 185.1859 1.86232917 28155
IRNSS-1I
1 43286U 18035A 22140.46029490 .00000094 00000+0 00000+0 0 9994
2 43286 29.0166 97.8006 0019037 186.7298 174.2774 1.00268395 15158
COSMOS 2527 (756)
1 43508U 18053A 22139.92403200 .00000063 00000+0 00000+0 0 9991
2 43508 64.9626 123.7947 0009784 243.7619 323.8480 2.13102603 30535
BEIDOU IGSO-7 (C16)
1 43539U 18057A 22140.41687293 -.00000087 00000+0 00000+0 0 9998
2 43539 55.0724 175.9522 0048815 226.9564 96.5710 1.00266863 14229
GSAT0221 (PRN E15)
1 43564U 18060A 22140.31216257 -.00000094 00000+0 00000+0 0 9995
2 43564 57.1639 21.9459 0002818 311.0148 49.0059 1.70475340 23780
GSAT0222 (PRN E33)
1 43565U 18060B 22139.94543744 -.00000092 00000+0 00000+0 0 9995
2 43565 57.1657 21.9563 0002903 325.0490 34.9779 1.70475319 23820
GSAT0219 (PRN E36)
1 43566U 18060C 22137.23307469 -.00000081 00000+0 00000+0 0 9996
2 43566 57.1652 22.0317 0002648 330.4509 29.5845 1.70475324 23754
GSAT0220 (PRN E13)
1 43567U 18060D 22140.38608967 -.00000094 00000+0 00000+0 0 9998
2 43567 57.1659 21.9463 0002485 324.5674 35.4609 1.70475069 23781
BEIDOU-3 M9 (C23)
1 43581U 18062A 22140.71086955 -.00000009 00000+0 00000+0 0 9996
2 43581 54.2832 233.0338 0003183 271.5570 112.7496 1.86231934 25915
BEIDOU-3 M10 (C24)
1 43582U 18062B 22139.91546977 .00000003 00000+0 00000+0 0 9995
2 43582 54.2824 233.0507 0004443 6.2384 296.5359 1.86232188 25899
BEIDOU-3 M11 (C25)
1 43602U 18067A 22139.94582404 .00000004 00000+0 00000+0 0 9992
2 43602 54.3653 231.6622 0006773 9.6435 354.9529 1.86231802 25392
BEIDOU-3 M12 (C26)
1 43603U 18067B 22140.66529747 -.00000007 00000+0 00000+0 0 9999
2 43603 54.3623 231.6040 0003838 357.8579 39.4936 1.86231735 25426
BEIDOU-3 M13 (C32)
1 43622U 18072A 22140.29626980 .00000038 00000+0 00000+0 0 9995
2 43622 55.4638 112.2988 0009048 290.3491 248.9406 1.86231752 24925
BEIDOU-3 M14 (C33)
1 43623U 18072B 22140.69787523 .00000040 00000+0 00000+0 0 9994
2 43623 55.4655 112.2780 0007011 308.0337 230.7499 1.86231786 24938
BEIDOU-3 M15 (C34)
1 43647U 18078A 22140.04702203 -.00000087 00000+0 10000-3 0 9994
2 43647 55.1327 351.5687 0007316 13.2664 344.6640 1.86232584 24421
BEIDOU-3 M16 (C35)
1 43648U 18078B 22139.44847950 -.00000085 00000+0 00000+0 0 9999
2 43648 55.1280 351.5956 0005689 22.0098 202.4802 1.86232362 24435
BEIDOU-3 G1 (C59)
1 43683U 18085A 22140.54901859 -.00000283 00000+0 00000+0 0 9998
2 43683 0.8660 170.5611 0003334 326.5097 78.8277 1.00271878 13133
COSMOS 2529 (757)
1 43687U 18086A 22140.68889176 -.00000001 00000+0 00000+0 0 9993
2 43687 64.3702 243.1057 0009018 264.7899 93.0023 2.13102167 27567
BEIDOU-3 M17 (C36)
1 43706U 18093A 22139.80217651 .00000005 00000+0 00000+0 0 9991
2 43706 54.3651 232.9490 0009429 271.7637 88.1766 1.86231743 23806
BEIDOU-3 M18 (C37)
1 43707U 18093B 22139.70497374 .00000007 00000+0 00000+0 0 9995
2 43707 54.3664 232.9423 0007393 301.3926 84.5713 1.86232251 23791
GPS BIII-1 (PRN 04)
1 43873U 18109A 22140.55998345 .00000060 00000+0 00000+0 0 9995
2 43873 55.0843 150.9948 0018783 196.9869 25.2012 2.00569976 25219
BEIDOU-3 IGSO-1 (C38)
1 44204U 19023A 22139.64308759 -.00000238 00000+0 00000+0 0 9990
2 44204 56.5201 53.2799 0019102 202.3393 332.0053 1.00266799 11429
BEIDOU-2 G8
1 44231U 19027A 22140.83701049 -.00000253 00000+0 00000+0 0 9993
2 44231 0.7963 74.7430 0003958 122.9220 126.6821 1.00271792 11141
COSMOS 2534 (758)
1 44299U 19030A 22140.51719274 .00000002 00000+0 00000+0 0 9996
2 44299 64.4435 242.9929 0011556 288.0314 72.6317 2.13102101 23212
BEIDOU-3 IGSO-2 (C39)
1 44337U 19035A 22139.94570194 -.00000088 00000+0 00000+0 0 9990
2 44337 55.1126 171.9778 0023240 198.0792 326.3231 1.00261681 10769
GPS BIII-2 (PRN 18)
1 44506U 19056A 22139.80587882 -.00000088 00000+0 00000+0 0 9998
2 44506 55.6658 30.1872 0023138 179.1707 121.9613 2.00571900 20195
BEIDOU-3 M23 (C45)
1 44542U 19061A 22140.27488522 -.00000002 00000+0 00000+0 0 9994
2 44542 54.5912 233.0693 0007454 334.4129 25.5973 1.86231096 18061
BEIDOU-3 M24 (C46)
1 44543U 19061B 22140.40910397 -.00000004 00000+0 00000+0 0 9992
2 44543 54.5890 233.0336 0004720 325.1777 36.0937 1.86231702 18061
BEIDOU-3 IGSO-3
1 44709U 19073A 22140.32967436 -.00000194 00000+0 00000+0 0 9996
2 44709 57.3100 296.6727 0022038 173.0641 5.7965 1.00264923 9523
BEIDOU-3 M21
1 44793U 19078A 22139.85347597 -.00000087 00000+0 10000-3 0 9996
2 44793 54.9822 351.6003 0007374 16.4900 165.6198 1.86232375 16918
BEIDOU-3 M22
1 44794U 19078B 22138.35702471 -.00000081 00000+0 00000+0 0 9996
2 44794 54.9573 351.6444 0005313 15.5544 154.8629 1.86232807 16881
COSMOS 2544 (759)
1 44850U 19088A 22140.29853748 .00000065 00000+0 00000+0 0 9991
2 44850 64.9490 123.6357 0014704 264.1209 274.2871 2.13102366 18972
BEIDOU-3 M19
1 44864U 19090A 22140.70281104 .00000040 00000+0 00000+0 0 9999
2 44864 55.3985 112.4985 0018938 273.2570 224.3801 1.86231945 16510
BEIDOU-3 M20
1 44865U 19090B 22140.65929168 .00000040 00000+0 00000+0 0 9993
2 44865 55.4012 112.5310 0017391 285.4695 272.8651 1.86231918 16488
BEIDOU-3 G2
1 45344U 20017A 22140.53706972 -.00000148 00000+0 00000+0 0 9990
2 45344 2.0864 350.7081 0004588 101.5704 59.2654 1.00271178 8331
COSMOS 2545 (760)
1 45358U 20018A 22139.78075001 -.00000066 00000+0 00000+0 0 9992
2 45358 64.9184 4.2931 0006925 255.4632 95.2286 2.13102775 16914
BEIDOU-3 G3
1 45807U 20040A 22140.54317498 -.00000361 00000+0 00000+0 0 9999
2 45807 1.5044 302.6094 0005626 333.7056 267.9550 1.00273654 7144
GPS BIII-3 (PRN 23)
1 45854U 20041A 22140.22373740 -.00000007 00000+0 00000+0 0 9996
2 45854 55.5026 87.4404 0021362 178.3767 0.2881 2.00559146 14175
GALAXY 30 (WAAS/PRN 135)
1 46114U 20056C 22140.59270531 .00000031 00000+0 00000+0 0 9992
2 46114 0.0147 296.1496 0002419 136.8738 253.5799 1.00271257 6369
GPS BIII-4 (PRN 14)
1 46826U 20078A 22140.25895747 -.00000018 00000+0 00000+0 0 9997
2 46826 54.5863 271.2390 0018770 184.9589 353.4420 2.00565026 11649

Binary file not shown.

View File

@ -1,93 +0,0 @@
GPS BIIR-2 (PRN 13)
1 24876U 97035A 22139.44467728 .00000060 00000+0 00000+0 0 9994
2 24876 55.5062 156.8049 0057297 51.2220 309.3262 2.00563314182074
GPS BIIR-4 (PRN 20)
1 26360U 00025A 22140.55087356 -.00000025 00000+0 00000+0 0 9998
2 26360 54.0372 80.0184 0048014 184.0208 342.6586 2.00574486161414
GPS BIIR-6 (PRN 22)
1 26605U 00071A 22140.61425331 .00000059 00000+0 00000+0 0 9993
2 26605 55.0898 153.7638 0135790 254.1413 89.1146 2.00561162157650
GPS BIIR-8 (PRN 16)
1 27663U 03005A 22140.34666721 -.00000018 00000+0 00000+0 0 9994
2 27663 55.5318 274.1767 0125951 40.9892 319.2593 2.00566116141445
GPS BIIR-9 (PRN 21)
1 27704U 03010A 22139.73556078 -.00000091 00000+0 00000+0 0 9991
2 27704 55.0138 24.4683 0245232 305.3311 191.4921 2.00554461140239
GPS BIIR-11 (PRN 19)
1 28190U 04009A 22140.36083711 -.00000064 00000+0 00000+0 0 9990
2 28190 56.0209 335.1494 0090307 119.0431 47.7831 2.00560826133085
GPS BIIR-13 (PRN 02)
1 28474U 04045A 22140.02455970 -.00000092 00000+0 00000+0 0 9999
2 28474 55.3414 24.5837 0206772 278.7437 274.6631 2.00564825128563
GPS BIIRM-1 (PRN 17)
1 28874U 05038A 22140.35926650 -.00000061 00000+0 00000+0 0 9996
2 28874 56.0883 332.5828 0137184 274.4318 271.6368 2.00577988121974
GPS BIIRM-2 (PRN 31)
1 29486U 06042A 22140.21247637 .00000015 00000+0 00000+0 0 9996
2 29486 54.7168 210.3964 0103302 21.1910 337.5477 2.00555659114526
GPS BIIRM-3 (PRN 12)
1 29601U 06052A 22139.65621071 -.00000012 00000+0 00000+0 0 9998
2 29601 55.5383 273.1405 0084274 73.2298 287.6804 2.00578190113537
GPS BIIRM-4 (PRN 15)
1 32260U 07047A 22140.47183423 .00000055 00000+0 00000+0 0 9990
2 32260 53.3071 141.7030 0138423 62.1610 299.2426 2.00549699106956
GPS BIIRM-5 (PRN 29)
1 32384U 07062A 22140.53837799 -.00000062 00000+0 00000+0 0 9992
2 32384 56.2063 333.3331 0019898 134.2066 45.3452 2.00560316105653
GPS BIIRM-6 (PRN 07)
1 32711U 08012A 22140.38600084 .00000014 00000+0 00000+0 0 9996
2 32711 54.4762 209.3316 0162647 230.5959 128.0248 2.00564397103899
GPS BIIRM-8 (PRN 05)
1 35752U 09043A 22139.66190778 -.00000010 00000+0 00000+0 0 9999
2 35752 55.0508 86.6863 0057911 57.4736 157.0712 2.00557731 93486
GPS BIIF-1 (PRN 25)
1 36585U 10022A 22140.17311854 -.00000015 00000+0 00000+0 0 9996
2 36585 54.8202 268.6593 0103275 56.8078 283.0854 2.00563723 87723
GPS BIIF-2 (PRN 01)
1 37753U 11036A 22140.57181778 -.00000092 00000+0 00000+0 0 9999
2 37753 56.5936 29.7888 0117117 51.3525 301.4795 2.00565105 79416
GPS BIIF-3 (PRN 24)
1 38833U 12053A 22140.56599742 .00000015 00000+0 00000+0 0 9996
2 38833 53.5306 204.4924 0122998 45.9959 315.0857 2.00561398 69587
GPS BIIF-4 (PRN 27)
1 39166U 13023A 22139.92620424 -.00000058 00000+0 00000+0 0 9992
2 39166 55.7171 328.9835 0103991 37.9613 322.7762 2.00565965 66013
GPS BIIF-5 (PRN 30)
1 39533U 14008A 22139.92382548 .00000018 00000+0 00000+0 0 9991
2 39533 53.6254 210.0220 0059265 207.7330 152.0233 2.00551982 59817
GPS BIIF-6 (PRN 06)
1 39741U 14026A 22140.20450784 -.00000090 00000+0 00000+0 0 9994
2 39741 56.5558 29.3288 0027458 307.6609 52.1310 2.00557919 58675
GPS BIIF-7 (PRN 09)
1 40105U 14045A 22140.29024475 .00000058 00000+0 00000+0 0 9997
2 40105 54.6859 147.9280 0018642 109.5325 250.6876 2.00576021 56217
GPS BIIF-8 (PRN 03)
1 40294U 14068A 22140.16782637 -.00000004 00000+0 00000+0 0 9990
2 40294 55.7955 89.0520 0039862 52.8918 307.4427 2.00569454 55341
GPS BIIF-9 (PRN 26)
1 40534U 15013A 22140.30329830 -.00000018 00000+0 00000+0 0 9991
2 40534 53.7214 265.8614 0068568 20.6460 339.6261 2.00554062 51968
GPS BIIF-10 (PRN 08)
1 40730U 15033A 22139.96904141 -.00000058 00000+0 00000+0 0 9999
2 40730 55.2164 327.8245 0074217 7.8143 352.3068 2.00553238 50127
GPS BIIF-11 (PRN 10)
1 41019U 15062A 22140.01479121 -.00000004 00000+0 00000+0 0 9996
2 41019 55.7843 88.9002 0077490 218.5273 140.8905 2.00562634 47962
GPS BIIF-12 (PRN 32)
1 41328U 16007A 22140.60616683 .00000060 00000+0 00000+0 0 9991
2 41328 54.9043 148.5806 0061512 230.4191 129.0554 2.00571890 45986
GPS BIII-1 (PRN 04)
1 43873U 18109A 22140.55998345 .00000060 00000+0 00000+0 0 9995
2 43873 55.0843 150.9948 0018783 196.9869 25.2012 2.00569976 25219
GPS BIII-2 (PRN 18)
1 44506U 19056A 22139.80587882 -.00000088 00000+0 00000+0 0 9998
2 44506 55.6658 30.1872 0023138 179.1707 121.9613 2.00571900 20195
GPS BIII-3 (PRN 23)
1 45854U 20041A 22140.22373740 -.00000007 00000+0 00000+0 0 9996
2 45854 55.5026 87.4404 0021362 178.3767 0.2881 2.00559146 14175
GPS BIII-4 (PRN 14)
1 46826U 20078A 22140.25895747 -.00000018 00000+0 00000+0 0 9997
2 46826 54.5863 271.2390 0018770 184.9589 353.4420 2.00565026 11649
GPS BIII-5 (PRN 11)
1 48859U 21054A 22140.21040503 -.00000090 00000+0 00000+0 0 9998
2 48859 55.1711 32.1850 0003716 196.5814 129.4657 2.00574900 6889

View File

@ -1,20 +1,651 @@
"1997-035A" "Sol/Earth" {
Class "spacecraft"
# Mesh
Radius 0.005
"GPS BIIR-2 (PRN 13)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459718.94467728
Period 0.49859567
SemiMajorAxis 26560.345
Eccentricity 0.0057297
Inclination 55.5062
AscendingNode 156.8049
ArgOfPericenter 51.2220
MeanAnomaly 309.3262
Epoch 2459722.35394994
Period 0.49859567
SemiMajorAxis 26560.345
Eccentricity 0.00573580
Inclination 55.5067
AscendingNode 156.7076
ArgOfPericenter 51.1925
MeanAnomaly 309.3515
}
Obliquity 55.5062
EquatorAscendingNode 156.8049
RotationOffset 80.2289
Obliquity 55.5067
EquatorAscendingNode 156.7076
RotationOffset 440.2853
# Orientation [ ]
}
"GPS BIIR-4 (PRN 20)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49856826
SemiMajorAxis 26559.372
Eccentricity 0.00479860
Inclination 54.0386
AscendingNode 79.9360
ArgOfPericenter 184.0166
MeanAnomaly 342.5535
}
Obliquity 54.0386
EquatorAscendingNode 79.9360
RotationOffset 623.9487
# Orientation [ ]
}
"GPS BIIR-6 (PRN 22)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49860118
SemiMajorAxis 26560.541
Eccentricity 0.01358420
Inclination 55.0902
AscendingNode 153.6993
ArgOfPericenter 254.1587
MeanAnomaly 189.9521
}
Obliquity 55.0902
EquatorAscendingNode 153.6993
RotationOffset 551.0107
# Orientation [ ]
}
"GPS BIIR-8 (PRN 16)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49858893
SemiMajorAxis 26560.106
Eccentricity 0.01259290
Inclination 55.5303
AscendingNode 274.0974
ArgOfPericenter 41.0019
MeanAnomaly 322.6198
}
Obliquity 55.5303
EquatorAscendingNode 274.0974
RotationOffset 304.6153
# Orientation [ ]
}
"GPS BIIR-9 (PRN 21)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49861725
SemiMajorAxis 26561.112
Eccentricity 0.02451710
Inclination 55.0148
AscendingNode 24.3655
ArgOfPericenter 305.4059
MeanAnomaly 222.1541
}
Obliquity 55.0148
EquatorAscendingNode 24.3655
RotationOffset 445.0178
# Orientation [ ]
}
"GPS BIIR-11 (PRN 19)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49860187
SemiMajorAxis 26560.565
Eccentricity 0.00903440
Inclination 56.0198
AscendingNode 335.0714
ArgOfPericenter 119.1490
MeanAnomaly 34.0367
}
Obliquity 56.0198
EquatorAscendingNode 335.0714
RotationOffset 255.3585
# Orientation [ ]
}
"GPS BIIR-13 (PRN 02)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49859215
SemiMajorAxis 26560.220
Eccentricity 0.02067210
Inclination 55.3420
AscendingNode 24.5139
ArgOfPericenter 278.7633
MeanAnomaly 89.2366
}
Obliquity 55.3420
EquatorAscendingNode 24.5139
RotationOffset 461.8878
# Orientation [ ]
}
"GPS BIIRM-1 (PRN 17)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49855939
SemiMajorAxis 26559.057
Eccentricity 0.01371780
Inclination 56.0872
AscendingNode 332.5055
ArgOfPericenter 274.4324
MeanAnomaly 249.3608
}
Obliquity 56.0872
EquatorAscendingNode 332.5055
RotationOffset 598.3041
# Orientation [ ]
}
"GPS BIIRM-2 (PRN 31)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49861500
SemiMajorAxis 26561.032
Eccentricity 0.01032930
Inclination 54.7166
AscendingNode 210.3147
ArgOfPericenter 21.2054
MeanAnomaly 20.4532
}
Obliquity 54.7166
EquatorAscendingNode 210.3147
RotationOffset 38.1041
# Orientation [ ]
}
"GPS BIIRM-3 (PRN 12)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49855827
SemiMajorAxis 26559.017
Eccentricity 0.00842350
Inclination 55.5368
AscendingNode 273.0615
ArgOfPericenter 73.2742
MeanAnomaly 287.6382
}
Obliquity 55.5368
EquatorAscendingNode 273.0615
RotationOffset 212.0927
# Orientation [ ]
}
"GPS BIIRM-4 (PRN 15)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49862974
SemiMajorAxis 26561.555
Eccentricity 0.01384760
Inclination 53.3076
AscendingNode 141.6410
ArgOfPericenter 62.1890
MeanAnomaly 299.2169
}
Obliquity 53.3076
EquatorAscendingNode 141.6410
RotationOffset 458.5696
# Orientation [ ]
}
"GPS BIIRM-5 (PRN 29)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49860287
SemiMajorAxis 26560.601
Eccentricity 0.00199410
Inclination 56.2054
AscendingNode 333.2750
ArgOfPericenter 134.3252
MeanAnomaly 33.7391
}
Obliquity 56.2054
EquatorAscendingNode 333.2750
RotationOffset 174.5634
# Orientation [ ]
}
"GPS BIIRM-6 (PRN 07)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49859279
SemiMajorAxis 26560.243
Eccentricity 0.01627460
Inclination 54.4761
AscendingNode 209.2718
ArgOfPericenter 230.6176
MeanAnomaly 127.9955
}
Obliquity 54.4761
EquatorAscendingNode 209.2718
RotationOffset 258.0931
# Orientation [ ]
}
"GPS BIIRM-8 (PRN 05)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49860988
SemiMajorAxis 26560.850
Eccentricity 0.00579610
Inclination 55.0523
AscendingNode 86.5975
ArgOfPericenter 57.5582
MeanAnomaly 309.3634
}
Obliquity 55.0523
EquatorAscendingNode 86.5975
RotationOffset 471.0412
# Orientation [ ]
}
"GPS BIIF-1 (PRN 25)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49859435
SemiMajorAxis 26560.298
Eccentricity 0.01032500
Inclination 54.8187
AscendingNode 268.5789
ArgOfPericenter 56.8233
MeanAnomaly 283.0850
}
Obliquity 54.8187
EquatorAscendingNode 268.5789
RotationOffset 268.5969
# Orientation [ ]
}
"GPS BIIF-2 (PRN 01)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49859111
SemiMajorAxis 26560.183
Eccentricity 0.01171820
Inclination 56.5943
AscendingNode 29.7227
ArgOfPericenter 51.3929
MeanAnomaly 85.3939
}
Obliquity 56.5943
EquatorAscendingNode 29.7227
RotationOffset -27.3088
# Orientation [ ]
}
"GPS BIIF-3 (PRN 24)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49860032
SemiMajorAxis 26560.510
Eccentricity 0.01230210
Inclination 53.5306
AscendingNode 204.4311
ArgOfPericenter 45.9920
MeanAnomaly 315.0835
}
Obliquity 53.5306
EquatorAscendingNode 204.4311
RotationOffset 399.5006
# Orientation [ ]
}
"GPS BIIF-4 (PRN 27)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49858903
SemiMajorAxis 26560.110
Eccentricity 0.01039990
Inclination 55.7158
AscendingNode 328.9042
ArgOfPericenter 37.9972
MeanAnomaly 322.7417
}
Obliquity 55.7158
EquatorAscendingNode 328.9042
RotationOffset 255.6858
# Orientation [ ]
}
"GPS BIIF-5 (PRN 30)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49862352
SemiMajorAxis 26561.335
Eccentricity 0.00593390
Inclination 53.6252
AscendingNode 209.9201
ArgOfPericenter 207.8219
MeanAnomaly 151.9230
}
Obliquity 53.6252
EquatorAscendingNode 209.9201
RotationOffset 217.5951
# Orientation [ ]
}
"GPS BIIF-6 (PRN 06)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49860939
SemiMajorAxis 26560.832
Eccentricity 0.00274040
Inclination 56.5566
AscendingNode 29.2511
ArgOfPericenter 307.6978
MeanAnomaly 52.0909
}
Obliquity 56.5566
EquatorAscendingNode 29.2511
RotationOffset 523.0458
# Orientation [ ]
}
"GPS BIIF-7 (PRN 09)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49856369
SemiMajorAxis 26559.210
Eccentricity 0.00186490
Inclination 54.6866
AscendingNode 147.8484
ArgOfPericenter 109.5178
MeanAnomaly 250.7033
}
Obliquity 54.6866
EquatorAscendingNode 147.8484
RotationOffset 314.9594
# Orientation [ ]
}
"GPS BIIF-8 (PRN 03)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49858017
SemiMajorAxis 26559.795
Eccentricity 0.00399450
Inclination 55.7969
AscendingNode 88.9732
ArgOfPericenter 52.9810
MeanAnomaly 307.3584
}
Obliquity 55.7969
EquatorAscendingNode 88.9732
RotationOffset 230.9789
# Orientation [ ]
}
"GPS BIIF-9 (PRN 26)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49861876
SemiMajorAxis 26561.165
Eccentricity 0.00685590
Inclination 53.7200
AscendingNode 265.7788
ArgOfPericenter 20.6383
MeanAnomaly 339.6323
}
Obliquity 53.7200
EquatorAscendingNode 265.7788
RotationOffset 301.7566
# Orientation [ ]
}
"GPS BIIF-10 (PRN 08)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49862093
SemiMajorAxis 26561.242
Eccentricity 0.00742080
Inclination 55.2147
AscendingNode 327.7242
ArgOfPericenter 7.8657
MeanAnomaly 352.2576
}
Obliquity 55.2147
EquatorAscendingNode 327.7242
RotationOffset 389.8323
# Orientation [ ]
}
"GPS BIIF-11 (PRN 10)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49859717
SemiMajorAxis 26560.399
Eccentricity 0.00775150
Inclination 55.7857
AscendingNode 88.8215
ArgOfPericenter 218.5164
MeanAnomaly 140.9051
}
Obliquity 55.7857
EquatorAscendingNode 88.8215
RotationOffset 448.3429
# Orientation [ ]
}
"GPS BIIF-12 (PRN 32)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49857455
SemiMajorAxis 26559.595
Eccentricity 0.00615510
Inclination 54.9047
AscendingNode 148.5212
ArgOfPericenter 230.4450
MeanAnomaly 129.0297
}
Obliquity 54.9047
EquatorAscendingNode 148.5212
RotationOffset 409.4127
# Orientation [ ]
}
"GPS BIII-1 (PRN 04)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49857911
SemiMajorAxis 26559.757
Eccentricity 0.00187830
Inclination 55.0843
AscendingNode 150.9948
ArgOfPericenter 196.9869
MeanAnomaly 25.2012
}
Obliquity 55.0843
EquatorAscendingNode 150.9948
RotationOffset 329.1096
# Orientation [ ]
}
"GPS BIII-2 (PRN 18)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49861226
SemiMajorAxis 26560.934
Eccentricity 0.00228080
Inclination 55.6668
AscendingNode 30.0947
ArgOfPericenter 178.3932
MeanAnomaly 352.1552
}
Obliquity 55.6668
EquatorAscendingNode 30.0947
RotationOffset 630.4479
# Orientation [ ]
}
"GPS BIII-3 (PRN 23)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49860594
SemiMajorAxis 26560.710
Eccentricity 0.00213980
Inclination 55.5037
AscendingNode 87.3818
ArgOfPericenter 178.3256
MeanAnomaly 343.3469
}
Obliquity 55.5037
EquatorAscendingNode 87.3818
RotationOffset 679.5627
# Orientation [ ]
}
"GPS BIII-4 (PRN 14)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49859124
SemiMajorAxis 26560.188
Eccentricity 0.00189370
Inclination 54.5846
AscendingNode 271.1481
ArgOfPericenter 185.1205
MeanAnomaly 172.3799
}
Obliquity 54.5846
EquatorAscendingNode 271.1481
RotationOffset 294.1043
# Orientation [ ]
}
"GPS BIII-5 (PRN 11)" "Sol/Earth" {
Class "spacecraft"
Mesh "galileo-gnss.cmod"
radius 0.005
EllipticalOrbit {
Epoch 2459722.35394994
Period 0.49856690
SemiMajorAxis 26559.324
Eccentricity 0.00037520
Inclination 55.1719
AscendingNode 32.1218
ArgOfPericenter 196.0092
MeanAnomaly 179.0152
}
Obliquity 55.1719
EquatorAscendingNode 32.1218
RotationOffset 474.0951
# Orientation [ ]
}

Binary file not shown.

View File

@ -1,27 +1,27 @@
GSAT0101 (PRN E11)
1 37846U 11060A 22140.09549104 -.00000093 00000+0 00000+0 0 9998
2 37846 56.9858 22.1062 0004117 28.0726 331.9949 1.70474933 65739
1 37846U 11060A 22141.85524604 -.00000101 00000+0 00000+0 0 9991
2 37846 56.9865 22.0582 0004109 29.0248 331.0391 1.70474972 65762
GSAT0102 (PRN E12)
1 37847U 11060B 22141.48582008 -.00000099 00000+0 00000+0 0 9999
2 37847 56.9873 22.0682 0004163 358.8598 181.1039 1.70475276 65765
GSAT0103 (PRN E19)
1 38857U 12055A 22139.54861057 .00000065 00000+0 00000+0 0 9996
2 38857 55.1297 142.4927 0005563 269.2755 90.6656 1.70473622 59611
1 38857U 12055A 22141.30836182 .00000065 00000+0 00000+0 0 9994
2 38857 55.1303 142.4444 0005560 269.3848 90.5551 1.70473630 59649
GSAT0104 (PRN E20)
1 38858U 12055B 22140.69194577 .00000064 00000+0 00000+0 0 9990
2 38858 55.1306 142.4627 0003129 270.3662 89.6011 1.70473904 59634
1 38858U 12055B 22141.27852992 .00000065 00000+0 00000+0 0 9998
2 38858 55.1308 142.4466 0003124 270.4711 89.4967 1.70473909 59642
GSAT0201 (PRN E18)
1 40128U 14050A 22140.72045909 -.00000084 00000+0 00000+0 0 9991
2 40128 50.3015 333.3858 1629119 123.0195 253.7246 1.85518703 50703
GSAT0202 (PRN E14)
1 40129U 14050B 22140.98155080 -.00000084 00000+0 00000+0 0 9992
2 40129 50.3270 332.4351 1626170 123.8376 252.7434 1.85519345 52879
1 40129U 14050B 22142.05954642 -.00000087 00000+0 00000+0 0 9996
2 40129 50.3264 332.3922 1626129 123.8775 252.6950 1.85519323 52892
GSAT0203 (PRN E26)
1 40544U 15017A 22141.04944684 -.00000098 00000+0 00000+0 0 9996
2 40544 56.7817 22.1173 0001610 290.6433 69.3820 1.70475592 43830
GSAT0204 (PRN E22)
1 40545U 15017B 22140.12898007 -.00000094 00000+0 00000+0 0 9998
2 40545 56.7866 22.1547 0000808 256.2361 103.7998 1.70475368 6868
1 40545U 15017B 22141.30214816 -.00000099 00000+0 00000+0 0 9994
2 40545 56.7871 22.1226 0000777 253.6504 106.3830 1.70475343 6882
GSAT0205 (PRN E24)
1 40889U 15045A 22140.48260977 -.00000023 00000+0 00000+0 0 9990
2 40889 55.6423 262.7355 0004241 25.0848 334.9296 1.70473796 41638
@ -32,17 +32,17 @@ GSAT0209 (PRN E09)
1 41174U 15079A 22140.87792460 .00000064 00000+0 00000+0 0 9999
2 41174 55.1467 142.1595 0005601 302.5044 57.4440 1.70474442 39980
GSAT0208 (PRN E08)
1 41175U 15079B 22139.33763162 .00000065 00000+0 00000+0 0 9997
2 41175 55.1445 142.2005 0004867 301.1616 58.7956 1.70474468 39790
1 41175U 15079B 22142.27054012 .00000068 00000+0 00000+0 0 9994
2 41175 55.1456 142.1198 0004882 301.7567 58.2008 1.70474477 39841
GSAT0211 (PRN E02)
1 41549U 16030A 22140.63037156 -.00000024 00000+0 00000+0 0 9998
2 41549 55.7864 262.6574 0002891 334.2974 25.6822 1.70475321 37290
GSAT0210 (PRN E01)
1 41550U 16030B 22139.74985358 -.00000018 00000+0 00000+0 0 9999
2 41550 55.7870 262.6831 0002083 288.7800 71.1901 1.70475398 37275
1 41550U 16030B 22142.09617059 -.00000037 00000+0 00000+0 0 9992
2 41550 55.7853 262.6186 0002111 287.7193 72.2499 1.70475450 37290
GSAT0207 (PRN E07)
1 41859U 16069A 22141.17080544 .00000064 00000+0 00000+0 0 9996
2 41859 54.8073 142.3394 0005819 291.7584 68.1829 1.70473113 34032
1 41859U 16069A 22141.75739341 .00000065 00000+0 00000+0 0 9997
2 41859 54.8076 142.3231 0005820 291.8817 68.0607 1.70473098 34043
GSAT0212 (PRN E03)
1 41860U 16069B 22138.09129134 .00000072 00000+0 00000+0 0 9993
2 41860 54.8049 142.4222 0004283 307.1523 52.8209 1.70473278 34233
@ -50,8 +50,8 @@ GSAT0213 (PRN E04)
1 41861U 16069C 22140.80306439 .00000063 00000+0 00000+0 0 9991
2 41861 54.8068 142.3523 0005581 275.1988 84.7405 1.70473249 34149
GSAT0214 (PRN E05)
1 41862U 16069D 22140.95013610 .00000063 00000+0 00000+0 0 9994
2 41862 54.8053 142.3428 0004657 278.4968 81.4535 1.70473192 34274
1 41862U 16069D 22142.12330941 .00000066 00000+0 00000+0 0 9997
2 41862 54.8057 142.3103 0004654 278.6875 81.2648 1.70473214 34294
GSAT0215 (PRN E21)
1 43055U 17079A 22137.92137227 -.00000014 00000+0 00000+0 0 9993
2 43055 55.7641 262.5647 0001475 280.5096 79.4583 1.70474511 27562
@ -63,10 +63,10 @@ GSAT0217 (PRN E27)
2 43057 55.7604 262.4696 0002917 298.4787 61.4858 1.70474601 27626
GSAT0218 (PRN E31)
1 43058U 17079D 22141.58679306 -.00000032 00000+0 00000+0 0 9992
2 43058 55.7601 262.4609 0003732 274.6392 85.3118 1.70474591 27657
2 43058 55.7601 262.4609 0003732 274.6392 85.3118 1.70474591 27624
GSAT0221 (PRN E15)
1 43564U 18060A 22140.31216257 -.00000094 00000+0 00000+0 0 9995
2 43564 57.1639 21.9459 0002818 311.0148 49.0059 1.70475340 23780
1 43564U 18060A 22142.07191362 -.00000101 00000+0 00000+0 0 9998
2 43564 57.1646 21.8981 0002754 311.1855 48.8317 1.70475404 23811
GSAT0222 (PRN E33)
1 43565U 18060B 22141.11860471 -.00000098 00000+0 00000+0 0 9992
2 43565 57.1661 21.9245 0002862 325.3460 34.6782 1.70475355 23849

75
glo-ops.txt 100644
View File

@ -0,0 +1,75 @@
COSMOS 2433 (720)
1 32275U 07052A 22142.08029111 -.00000072 00000+0 00000+0 0 9994
2 32275 66.0825 5.5445 0000865 294.9339 253.2224 2.13104126113408
COSMOS 2432 (719)
1 32276U 07052B 22141.89950653 -.00000072 00000+0 00000+0 0 9997
2 32276 66.0953 5.6536 0010351 340.8876 16.9795 2.13103484113392
COSMOS 2434 (721)
1 32393U 07065A 22142.46579777 -.00000026 00000+0 00000+0 0 9998
2 32393 64.3882 242.3124 0003113 89.7374 283.6438 2.13103233112126
COSMOS 2436 (723)
1 32395U 07065C 22142.32604419 -.00000024 00000+0 00000+0 0 9995
2 32395 64.3976 242.3738 0015148 1.9988 40.0624 2.13103068112051
COSMOS 2456 (730)
1 36111U 09070A 22142.45855156 .00000074 00000+0 00000+0 0 9997
2 36111 64.3473 121.9468 0006254 303.5021 230.2461 2.13099298 96784
COSMOS 2457 (733)
1 36112U 09070B 22141.73808668 .00000071 00000+0 00000+0 0 9991
2 36112 64.3305 121.8481 0004161 200.5522 267.5664 2.13101491 96776
COSMOS 2461 (735)
1 36401U 10007B 22142.26342333 -.00000071 00000+0 00000+0 0 9996
2 36401 65.9686 4.3808 0021720 10.6749 175.4358 2.13103869 95132
COSMOS 2460 (732)
1 36402U 10007C 22142.17143001 -.00000071 00000+0 00000+0 0 9998
2 36402 65.9559 4.3346 0002489 48.7558 14.9473 2.13106489 95136
COSMOS 2464 (736)
1 37139U 10041C 22142.16123620 -.00000022 00000+0 00000+0 0 9994
2 37139 63.9889 241.4110 0028705 11.6997 346.4541 2.13100848 91189
COSMOS 2476 (744)
1 37867U 11064A 22142.11005285 .00000075 00000+0 00000+0 0 9996
2 37867 64.6364 123.3051 0023145 241.8571 289.8326 2.13101922 82122
COSMOS 2477 (745)
1 37868U 11064B 22142.24095029 .00000076 00000+0 00000+0 0 9997
2 37868 64.6442 123.3650 0020530 243.1709 207.0585 2.13101701 82087
COSMOS 2475 (743)
1 37869U 11064C 22142.31095375 .00000076 00000+0 00000+0 0 9990
2 37869 64.6521 123.3703 0025256 258.8512 203.0640 2.13102021 82095
COSMOS 2485 (747)
1 39155U 13019A 22141.58476883 .00000073 00000+0 00000+0 0 9994
2 39155 64.8007 123.7449 0023513 237.7294 295.3689 2.13102002 70581
COSMOS 2492 (754)
1 39620U 14012A 22142.48532560 -.00000071 00000+0 00000+0 0 9999
2 39620 65.8406 4.0081 0013061 334.1018 204.3786 2.13103209 63555
COSMOS 2500 (755)
1 40001U 14032A 22142.24540101 -.00000071 00000+0 00000+0 0 9990
2 40001 65.7838 3.8802 0004333 188.4336 24.7277 2.13102518 61763
COSMOS 2501 (702K)
1 40315U 14075A 22142.62859625 -.00000028 00000+0 00000+0 0 9993
2 40315 63.6953 242.0744 0018099 208.3375 106.6460 2.13101390 58179
COSMOS 2514 (751)
1 41330U 16008A 22142.19726696 -.00000071 00000+0 00000+0 0 9990
2 41330 65.5817 3.5796 0007962 203.7219 156.2891 2.13102710 48936
COSMOS 2516 (753)
1 41554U 16032A 22142.09054931 -.00000021 00000+0 00000+0 0 9995
2 41554 63.9211 242.3605 0014118 214.2486 326.0788 2.13106430 46539
COSMOS 2522 (752)
1 42939U 17055A 22142.50515940 -.00000027 00000+0 00000+0 0 9993
2 42939 64.1543 242.7337 0007298 239.1168 116.5371 2.13101999 36295
COSMOS 2527 (756)
1 43508U 18053A 22142.14720748 .00000076 00000+0 00000+0 0 9992
2 43508 64.9636 123.7202 0009773 243.6244 229.5308 2.13102577 30587
COSMOS 2529 (757)
1 43687U 18086A 22142.62413097 -.00000028 00000+0 00000+0 0 9993
2 43687 64.3696 243.0395 0009106 264.7059 137.7387 2.13102186 27615
COSMOS 2534 (758)
1 44299U 19030A 22142.37453847 -.00000025 00000+0 00000+0 0 9999
2 44299 64.4427 242.9295 0011577 287.8000 57.7569 2.13102100 23246
COSMOS 2544 (759)
1 44850U 19088A 22142.53159866 .00000077 00000+0 00000+0 0 9993
2 44850 64.9495 123.5608 0014697 264.1221 187.4144 2.13102355 19023
COSMOS 2545 (760)
1 45358U 20018A 22142.27543779 -.00000073 00000+0 00000+0 0 9990
2 45358 64.9185 4.2068 0006828 255.3660 209.1575 2.13102707 16976
COSMOS 2547 (705K)
1 46805U 20075A 22142.06718243 -.00000020 00000+0 00000+0 0 9990
2 46805 64.6671 242.3571 0006627 243.3580 274.0048 2.13103295 12212

477
gnss.txt 100644
View File

@ -0,0 +1,477 @@
GPS BIIR-2 (PRN 13)
1 24876U 97035A 22141.93757172 .00000066 00000+0 00000+0 0 9992
2 24876 55.5067 156.7076 0057358 51.1925 309.3515 2.00563314182124
GPS BIIR-4 (PRN 20)
1 26360U 00025A 22142.54492514 -.00000032 00000+0 00000+0 0 9993
2 26360 54.0386 79.9360 0047986 184.0166 342.5535 2.00574339161456
GPS BIIR-5 (PRN 28)
1 26407U 00040A 22142.54724078 -.00000043 00000+0 00000+0 0 9997
2 26407 55.4825 274.2866 0167762 286.4940 80.3827 2.00562782160138
GPS BIIR-8 (PRN 16)
1 27663U 03005A 22142.34563355 -.00000040 00000+0 00000+0 0 9990
2 27663 55.5303 274.0974 0125929 41.0019 322.6198 2.00566024141498
GPS BIIR-9 (PRN 21)
1 27704U 03010A 22142.27114751 -.00000104 00000+0 00000+0 0 9997
2 27704 55.0148 24.3655 0245171 305.4059 222.1541 2.00554634140287
GPS BIIR-10 (PRN 22)
1 28129U 03058A 22142.12037869 -.00000024 00000+0 00000+0 0 9990
2 28129 53.8532 82.5562 0071641 314.7361 44.6620 2.00578925134965
GPS BIIR-11 (PRN 19)
1 28190U 04009A 22142.33630255 -.00000067 00000+0 00000+0 0 9993
2 28190 56.0198 335.0714 0090344 119.1490 34.0367 2.00560820133125
GPS BIIR-13 (PRN 02)
1 28474U 04045A 22141.76209590 -.00000102 00000+0 00000+0 0 9998
2 28474 55.3420 24.5139 0206721 278.7633 89.2366 2.00564729128600
CRE (WAAS/PRN 138)
1 28868U 05036A 22142.59635060 -.00000083 00000+0 00000+0 0 9991
2 28868 0.4967 93.6742 0003388 334.1564 279.7539 1.00271745 31541
GPS BIIRM-1 (PRN 17)
1 28874U 05038A 22142.32260509 -.00000064 00000+0 00000+0 0 9992
2 28874 56.0872 332.5055 0137178 274.4324 249.3608 2.00577908122011
IOR-W (EGNOS/PRN 126)
1 28899U 05044A 22142.54307369 .00000001 00000+0 00000+0 0 9996
2 28899 3.4842 37.1679 0002991 35.6680 66.7014 1.00270684 60616
GPS BIIRM-2 (PRN 31)
1 29486U 06042A 22142.26631024 -.00000004 00000+0 00000+0 0 9999
2 29486 54.7166 210.3147 0103293 21.2054 20.4532 2.00555540114570
GPS BIIRM-3 (PRN 12)
1 29601U 06052A 22141.65038646 -.00000031 00000+0 00000+0 0 9992
2 29601 55.5368 273.0615 0084235 73.2742 287.6382 2.00578358113574
COSMOS 2425 (716)
1 29670U 06062A 22138.30572833 .00000023 00000+0 00000+0 0 9998
2 29670 64.7686 244.1495 0025272 335.6213 35.7688 2.13111143119817
GPS BIIRM-4 (PRN 15)
1 32260U 07047A 22141.96766744 .00000064 00000+0 00000+0 0 9998
2 32260 53.3076 141.6410 0138476 62.1890 299.2169 2.00549612106982
COSMOS 2433 (720)
1 32275U 07052A 22142.08029111 -.00000072 00000+0 00000+0 0 9994
2 32275 66.0825 5.5445 0000865 294.9339 253.2224 2.13104126113408
COSMOS 2432 (719)
1 32276U 07052B 22141.89950653 -.00000072 00000+0 00000+0 0 9997
2 32276 66.0953 5.6536 0010351 340.8876 16.9795 2.13103484113392
GPS BIIRM-5 (PRN 29)
1 32384U 07062A 22142.01824064 -.00000064 00000+0 00000+0 0 9990
2 32384 56.2054 333.2750 0019941 134.3252 33.7391 2.00560416105681
COSMOS 2434 (721)
1 32393U 07065A 22142.46579777 -.00000026 00000+0 00000+0 0 9998
2 32393 64.3882 242.3124 0003113 89.7374 283.6438 2.13103233112126
COSMOS 2436 (723)
1 32395U 07065C 22142.32604419 -.00000024 00000+0 00000+0 0 9995
2 32395 64.3976 242.3738 0015148 1.9988 40.0624 2.13103068112051
GPS BIIRM-6 (PRN 07)
1 32711U 08012A 22141.88171605 -.00000001 00000+0 00000+0 0 9991
2 32711 54.4761 209.2718 0162746 230.6176 127.9955 2.00564472103926
GPS BIIRM-8 (PRN 05)
1 35752U 09043A 22141.86732330 -.00000012 00000+0 00000+0 0 9992
2 35752 55.0523 86.5975 0057961 57.5582 309.3634 2.00557600 93537
COSMOS 2456 (730)
1 36111U 09070A 22142.45855156 .00000074 00000+0 00000+0 0 9997
2 36111 64.3473 121.9468 0006254 303.5021 230.2461 2.13099298 96784
COSMOS 2457 (733)
1 36112U 09070B 22141.73808668 .00000071 00000+0 00000+0 0 9991
2 36112 64.3305 121.8481 0004161 200.5522 267.5664 2.13101491 96776
BEIDOU 3 (C01)
1 36287U 10001A 22142.55830235 -.00000291 00000+0 00000+0 0 9991
2 36287 1.8413 46.5422 0004685 18.8645 156.1325 1.00268459 45257
COSMOS 2459 (731)
1 36400U 10007A 22142.28466262 -.00000071 00000+0 00000+0 0 9995
2 36400 65.9736 4.4144 0026069 351.3013 221.0290 2.13117543 95127
COSMOS 2461 (735)
1 36401U 10007B 22142.26342333 -.00000071 00000+0 00000+0 0 9996
2 36401 65.9686 4.3808 0021720 10.6749 175.4358 2.13103869 95132
COSMOS 2460 (732)
1 36402U 10007C 22142.17143001 -.00000071 00000+0 00000+0 0 9998
2 36402 65.9559 4.3346 0002489 48.7558 14.9473 2.13106489 95136
GPS BIIF-1 (PRN 25)
1 36585U 10022A 22142.16745128 -.00000039 00000+0 00000+0 0 9998
2 36585 54.8187 268.5789 0103250 56.8233 283.0850 2.00563846 87763
BEIDOU 5 (C06)
1 36828U 10036A 22142.02885015 -.00000084 00000+0 00000+0 0 9998
2 36828 54.1897 176.4699 0027890 191.1812 348.5776 1.00253761 43310
COSMOS 2464 (736)
1 37139U 10041C 22142.16123620 -.00000022 00000+0 00000+0 0 9994
2 37139 63.9889 241.4110 0028705 11.6997 346.4541 2.13100848 91189
QZS-1 (QZSS/PRN 183)
1 37158U 10045A 22142.27361132 -.00000076 00000+0 00000+0 0 9992
2 37158 42.3079 133.7450 0758720 270.5048 76.7645 1.00264946 42822
BEIDOU 6 (C04)
1 37210U 10057A 22142.63028733 -.00000122 00000+0 00000+0 0 9993
2 37210 0.8147 44.6031 0002216 134.6413 87.8930 1.00271922 42371
BEIDOU 7 (C07)
1 37256U 10068A 22142.33651556 -.00000214 00000+0 00000+0 0 9999
2 37256 50.2547 289.9570 0021005 184.7993 353.3703 1.00257851 41881
COSMOS 2471 (701K)
1 37372U 11009A 22142.23680843 -.00000071 00000+0 00000+0 0 9995
2 37372 65.9491 4.2625 0015608 232.4051 336.6974 2.13061224 87402
BEIDOU 8 (C08)
1 37384U 11013A 22141.49190306 -.00000208 00000+0 00000+0 0 9992
2 37384 60.2550 54.5263 0017835 189.7998 279.5068 1.00263257 40754
GSAT-8 (GAGAN/PRN 127)
1 37605U 11022A 22138.78215002 .00000085 00000+0 00000+0 0 9999
2 37605 0.0675 101.6551 0002788 206.3463 265.0938 1.00272631 38274
GPS BIIF-2 (PRN 01)
1 37753U 11036A 22142.26692650 -.00000102 00000+0 00000+0 0 9995
2 37753 56.5943 29.7227 0117182 51.3929 85.3939 2.00565149 79451
BEIDOU 9 (C09)
1 37763U 11038A 22142.02554344 -.00000045 00000+0 00000+0 0 9995
2 37763 54.4733 178.9594 0097263 227.7412 296.7666 1.00284844 39734
GSAT0101 (PRN E11)
1 37846U 11060A 22141.85524604 -.00000101 00000+0 00000+0 0 9991
2 37846 56.9865 22.0582 0004109 29.0248 331.0391 1.70474972 65762
GSAT0102 (PRN E12)
1 37847U 11060B 22141.48582008 -.00000099 00000+0 00000+0 0 9999
2 37847 56.9873 22.0682 0004163 358.8598 181.1039 1.70475276 65765
COSMOS 2476 (744)
1 37867U 11064A 22142.11005285 .00000075 00000+0 00000+0 0 9996
2 37867 64.6364 123.3051 0023145 241.8571 289.8326 2.13101922 82122
COSMOS 2477 (745)
1 37868U 11064B 22142.24095029 .00000076 00000+0 00000+0 0 9997
2 37868 64.6442 123.3650 0020530 243.1709 207.0585 2.13101701 82087
COSMOS 2475 (743)
1 37869U 11064C 22142.31095375 .00000076 00000+0 00000+0 0 9990
2 37869 64.6521 123.3703 0025256 258.8512 203.0640 2.13102021 82095
BEIDOU 10 (C10)
1 37948U 11073A 22142.19445531 -.00000160 00000+0 00000+0 0 9992
2 37948 50.3768 289.5964 0079017 216.9659 257.0877 1.00258961 38499
LUCH 5A (SDCM/PRN 140)
1 37951U 11074B 22142.56487528 -.00000055 00000+0 00000+0 0 9993
2 37951 4.9562 98.1627 0005937 335.5334 176.8410 1.00268246 38283
BEIDOU 11 (C05)
1 38091U 12008A 22142.54202707 .00000047 00000+0 00000+0 0 9999
2 38091 1.5069 66.6752 0015286 333.1085 94.1750 1.00274163 37573
BEIDOU 12 (C11)
1 38250U 12018A 22141.86193378 -.00000091 00000+0 00000+0 0 9994
2 38250 56.7005 354.4367 0020321 255.6596 126.5251 1.86234440 68593
BEIDOU 13 (C12)
1 38251U 12018B 22141.85843263 -.00000091 00000+0 00000+0 0 9999
2 38251 56.6190 353.7639 0011140 261.2064 162.8616 1.86234293 68598
SES-5 (EGNOS/PRN 136)
1 38652U 12036A 22142.24421880 .00000024 00000+0 00000+0 0 9990
2 38652 0.0541 295.1182 0002297 128.0131 269.6105 1.00271283 29576
BEIDOU 15 (C14)
1 38775U 12050B 22142.53853834 .00000047 00000+0 00000+0 0 9997
2 38775 55.3868 112.5565 0015643 321.1845 35.2304 1.86231277 65976
GSAT-10 (GAGAN/PRN 128)
1 38779U 12051B 22138.93773524 -.00000164 00000+0 00000+0 0 9999
2 38779 0.1029 104.0747 0001285 28.8817 164.2165 1.00269952 35176
GPS BIIF-3 (PRN 24)
1 38833U 12053A 22142.06173113 .00000004 00000+0 00000+0 0 9991
2 38833 53.5306 204.4311 0123021 45.9920 315.0835 2.00561443 69614
GSAT0103 (PRN E19)
1 38857U 12055A 22141.30836182 .00000065 00000+0 00000+0 0 9994
2 38857 55.1303 142.4444 0005560 269.3848 90.5551 1.70473630 59649
GSAT0104 (PRN E20)
1 38858U 12055B 22141.27852992 .00000065 00000+0 00000+0 0 9998
2 38858 55.1308 142.4466 0003124 270.4711 89.4967 1.70473909 59642
BEIDOU 16 (C02)
1 38953U 12059A 22142.54708573 -.00000185 00000+0 00000+0 0 9998
2 38953 1.9271 84.4154 0012460 301.6009 135.1441 1.00269918 35001
LUCH 5B (SDCM/PRN 125)
1 38977U 12061A 22142.59874846 -.00000144 00000+0 00000+0 0 9994
2 38977 7.2383 62.8063 0005441 26.7674 349.8310 1.00272098 35274
COSMOS 2485 (747)
1 39155U 13019A 22141.58476883 .00000073 00000+0 00000+0 0 9994
2 39155 64.8007 123.7449 0023513 237.7294 295.3689 2.13102002 70581
GPS BIIF-4 (PRN 27)
1 39166U 13023A 22141.92050982 -.00000061 00000+0 00000+0 0 9995
2 39166 55.7158 328.9042 0103999 37.9972 322.7417 2.00565984 66056
IRNSS-1A
1 39199U 13034A 22134.94840973 .00000097 00000+0 00000+0 0 9992
2 39199 32.3564 85.8879 0017453 184.5411 358.8237 1.00278833 32389
GPS BIIF-5 (PRN 30)
1 39533U 14008A 22142.41683124 -.00000005 00000+0 00000+0 0 9990
2 39533 53.6252 209.9201 0059339 207.8219 151.9230 2.00552110 59864
ASTRA 5B (EGNOS/PRN 123)
1 39617U 14011B 22142.53653233 .00000145 00000+0 00000+0 0 9992
2 39617 0.0691 304.1574 0003712 130.3476 30.2994 1.00270395 29763
COSMOS 2492 (754)
1 39620U 14012A 22142.48532560 -.00000071 00000+0 00000+0 0 9999
2 39620 65.8406 4.0081 0013061 334.1018 204.3786 2.13103209 63555
IRNSS-1B
1 39635U 14017A 22140.92279095 .00000083 00000+0 00000+0 0 9990
2 39635 28.7988 265.5665 0022511 182.6827 177.5038 1.00273616 29873
LUCH 5V (SDCM/PRN 141)
1 39727U 14023A 22142.54917896 -.00000279 00000+0 00000+0 0 9995
2 39727 1.4395 75.0005 0003714 21.6630 75.9314 1.00273002 29456
GPS BIIF-6 (PRN 06)
1 39741U 14026A 22142.19889533 -.00000102 00000+0 00000+0 0 9996
2 39741 56.5566 29.2511 0027404 307.6978 52.0909 2.00557797 58714
COSMOS 2500 (755)
1 40001U 14032A 22142.24540101 -.00000071 00000+0 00000+0 0 9990
2 40001 65.7838 3.8802 0004333 188.4336 24.7277 2.13102518 61763
GPS BIIF-7 (PRN 09)
1 40105U 14045A 22142.28443268 .00000070 00000+0 00000+0 0 9997
2 40105 54.6866 147.8484 0018649 109.5178 250.7033 2.00576178 56256
GSAT0201 (PRN E18)
1 40128U 14050A 22140.72045909 -.00000084 00000+0 00000+0 0 9991
2 40128 50.3015 333.3858 1629119 123.0195 253.7246 1.85518703 50703
GSAT0202 (PRN E14)
1 40129U 14050B 22142.05954642 -.00000087 00000+0 00000+0 0 9996
2 40129 50.3264 332.3922 1626129 123.8775 252.6950 1.85519323 52892
IRNSS-1C
1 40269U 14061A 22142.54691128 -.00000169 00000+0 00000+0 0 9995
2 40269 2.9068 129.8877 0019771 5.9110 24.3004 1.00272668 27780
GPS BIIF-8 (PRN 03)
1 40294U 14068A 22142.16209904 -.00000006 00000+0 00000+0 0 9995
2 40294 55.7969 88.9732 0039945 52.9810 307.3584 2.00569550 55387
COSMOS 2501 (702K)
1 40315U 14075A 22142.62859625 -.00000028 00000+0 00000+0 0 9993
2 40315 63.6953 242.0744 0018099 208.3375 106.6460 2.13101390 58179
GPS BIIF-9 (PRN 26)
1 40534U 15013A 22142.29769413 -.00000043 00000+0 00000+0 0 9994
2 40534 53.7200 265.7788 0068559 20.6383 339.6323 2.00554027 52004
GSAT0203 (PRN E26)
1 40544U 15017A 22141.04944684 -.00000098 00000+0 00000+0 0 9996
2 40544 56.7817 22.1173 0001610 290.6433 69.3820 1.70475592 43830
GSAT0204 (PRN E22)
1 40545U 15017B 22141.30214816 -.00000099 00000+0 00000+0 0 9994
2 40545 56.7871 22.1226 0000777 253.6504 106.3830 1.70475343 6882
IRNSS-1D
1 40547U 15018A 22141.73600590 -.00000305 00000+0 00000+0 0 9992
2 40547 28.6242 265.5881 0022799 183.1411 167.4575 1.00272362 26072
BEIDOU 17 (C31)
1 40549U 15019A 22142.34696559 -.00000149 00000+0 00000+0 0 9999
2 40549 51.9328 313.0557 0036958 187.8420 313.8973 1.00249573 26178
GPS BIIF-10 (PRN 08)
1 40730U 15033A 22142.46207775 -.00000062 00000+0 00000+0 0 9992
2 40730 55.2147 327.7242 0074208 7.8657 352.2576 2.00553153 50178
BEIDOU 18 (C57)
1 40748U 15037A 22141.96496826 -.00000091 00000+0 00000+0 0 9998
2 40748 55.8721 352.6425 0005407 32.3314 12.6175 1.86233391 46426
BEIDOU 19 (C58)
1 40749U 15037B 22141.77465595 -.00000091 00000+0 00000+0 0 9997
2 40749 55.8766 352.6374 0005051 355.7676 56.2216 1.86232287 46419
GSAT0205 (PRN E24)
1 40889U 15045A 22140.48260977 -.00000023 00000+0 00000+0 0 9990
2 40889 55.6423 262.7355 0004241 25.0848 334.9296 1.70473796 41638
GSAT0206 (PRN E30)
1 40890U 15045B 22140.70338559 -.00000025 00000+0 00000+0 0 9991
2 40890 55.6409 262.7253 0002345 16.3512 343.6504 1.70473844 41661
BEIDOU 20 (C18)
1 40938U 15053A 22142.19628054 -.00000138 00000+0 00000+0 0 9995
2 40938 51.5419 276.1732 0046432 193.8051 292.8278 1.00252947 24447
GPS BIIF-11 (PRN 10)
1 41019U 15062A 22142.00912605 -.00000006 00000+0 00000+0 0 9998
2 41019 55.7857 88.8215 0077515 218.5164 140.9051 2.00562709 48001
GSAT-15 (GAGAN/PRN 139)
1 41028U 15065A 22138.38707264 -.00000255 00000+0 00000+0 0 9996
2 41028 0.1208 98.5758 0003984 343.3147 27.0288 1.00271016 23863
GSAT0209 (PRN E09)
1 41174U 15079A 22140.87792460 .00000064 00000+0 00000+0 0 9999
2 41174 55.1467 142.1595 0005601 302.5044 57.4440 1.70474442 39980
GSAT0208 (PRN E08)
1 41175U 15079B 22142.27054012 .00000068 00000+0 00000+0 0 9994
2 41175 55.1456 142.1198 0004882 301.7567 58.2008 1.70474477 39841
IRNSS-1E
1 41241U 16003A 22141.76322032 -.00000301 00000+0 00000+0 0 9990
2 41241 29.9215 85.0284 0018073 182.3243 358.6112 1.00272672 23166
GPS BIIF-12 (PRN 32)
1 41328U 16007A 22142.10184069 .00000069 00000+0 00000+0 0 9995
2 41328 54.9047 148.5212 0061551 230.4450 129.0297 2.00571809 46011
COSMOS 2514 (751)
1 41330U 16008A 22142.19726696 -.00000071 00000+0 00000+0 0 9990
2 41330 65.5817 3.5796 0007962 203.7219 156.2891 2.13102710 48936
IRNSS-1F
1 41384U 16015A 22142.53679398 .00000152 00000+0 00000+0 0 9990
2 41384 2.1477 158.5678 0019266 187.9286 119.3322 1.00269590 22757
BEIDOU IGSO-6 (C13)
1 41434U 16021A 22141.53919605 -.00000180 00000+0 00000+0 0 9992
2 41434 58.0646 53.1140 0044387 219.6295 255.3847 1.00288409 22562
IRNSS-1G
1 41469U 16027A 22142.55612191 -.00000342 00000+0 00000+0 0 9999
2 41469 2.0842 161.6000 0006754 293.9927 114.3144 1.00270436 22273
GSAT0211 (PRN E02)
1 41549U 16030A 22140.63037156 -.00000024 00000+0 00000+0 0 9998
2 41549 55.7864 262.6574 0002891 334.2974 25.6822 1.70475321 37290
GSAT0210 (PRN E01)
1 41550U 16030B 22142.09617059 -.00000037 00000+0 00000+0 0 9992
2 41550 55.7853 262.6186 0002111 287.7193 72.2499 1.70475450 37290
COSMOS 2516 (753)
1 41554U 16032A 22142.09054931 -.00000021 00000+0 00000+0 0 9995
2 41554 63.9211 242.3605 0014118 214.2486 326.0788 2.13106430 46539
BEIDOU-2 G7 (C03)
1 41586U 16037A 22142.55231882 -.00000364 00000+0 00000+0 0 9998
2 41586 1.9239 69.5048 0009027 5.1090 114.9233 1.00270722 21888
E 117 W B (WAAS/PRN 131)
1 41589U 16038B 22142.23081878 -.00000021 00000+0 00000+0 0 9995
2 41589 0.0063 154.1591 0000376 156.6199 255.1661 1.00269856 21766
GSAT0207 (PRN E07)
1 41859U 16069A 22141.75739341 .00000065 00000+0 00000+0 0 9997
2 41859 54.8076 142.3231 0005820 291.8817 68.0607 1.70473098 34043
GSAT0212 (PRN E03)
1 41860U 16069B 22138.09129134 .00000072 00000+0 00000+0 0 9993
2 41860 54.8049 142.4222 0004283 307.1523 52.8209 1.70473278 34233
GSAT0213 (PRN E04)
1 41861U 16069C 22140.80306439 .00000063 00000+0 00000+0 0 9991
2 41861 54.8068 142.3523 0005581 275.1988 84.7405 1.70473249 34149
GSAT0214 (PRN E05)
1 41862U 16069D 22142.12330941 .00000066 00000+0 00000+0 0 9997
2 41862 54.8057 142.3103 0004654 278.6875 81.2648 1.70473214 34294
SES-15 (WAAS/PRN 133)
1 42709U 17026A 22142.57340236 .00000050 00000+0 00000+0 0 9992
2 42709 0.0249 17.9399 0000404 60.8805 238.6247 1.00269792 19235
QZS-2 (QZSS/PRN 184)
1 42738U 17028A 22127.70578247 -.00000212 00000+0 00000+0 0 9990
2 42738 41.8409 264.7425 0740515 270.7432 81.2225 1.00249045 18092
QZS-3 (QZSS/PRN 189)
1 42917U 17048A 22142.55551139 -.00000358 00000+0 00000+0 0 9993
2 42917 0.0548 206.6175 0001852 229.1284 131.4294 1.00274239 17351
COSMOS 2522 (752)
1 42939U 17055A 22142.50515940 -.00000027 00000+0 00000+0 0 9993
2 42939 64.1543 242.7337 0007298 239.1168 116.5371 2.13101999 36295
QZS-4 (QZSS/PRN 185)
1 42965U 17062A 22142.48419177 -.00000354 00000+0 00000+0 0 9995
2 42965 40.7733 2.4430 0746240 271.0457 278.4917 1.00258840 16906
BEIDOU-3 M1 (C19)
1 43001U 17069A 22142.34436966 .00000047 00000+0 00000+0 0 9992
2 43001 55.5402 112.5601 0012501 293.0589 89.4207 1.86231749 30916
BEIDOU-3 M2 (C20)
1 43002U 17069B 22142.57765223 .00000047 00000+0 00000+0 0 9999
2 43002 55.5398 112.5878 0010703 310.6802 271.2713 1.86231380 30906
GSAT0215 (PRN E21)
1 43055U 17079A 22137.92137227 -.00000014 00000+0 00000+0 0 9993
2 43055 55.7641 262.5647 0001475 280.5096 79.4583 1.70474511 27562
GSAT0216 (PRN E25)
1 43056U 17079B 22139.97337679 -.00000020 00000+0 00000+0 0 9991
2 43056 55.7630 262.5080 0003269 280.2508 79.7058 1.70474669 27586
GSAT0217 (PRN E27)
1 43057U 17079C 22141.36677481 -.00000030 00000+0 00000+0 0 9997
2 43057 55.7604 262.4696 0002917 298.4787 61.4858 1.70474601 27626
GSAT0218 (PRN E31)
1 43058U 17079D 22141.58679306 -.00000032 00000+0 00000+0 0 9992
2 43058 55.7601 262.4609 0003732 274.6392 85.3118 1.70474591 27624
BEIDOU-3 M3 (C27)
1 43107U 18003A 22141.99326222 -.00000094 00000+0 00000+0 0 9994
2 43107 55.3231 353.5701 0005928 54.6431 301.5949 1.86232554 29656
BEIDOU-3 M4 (C28)
1 43108U 18003B 22142.22683588 -.00000094 00000+0 00000+0 0 9993
2 43108 55.3150 353.5507 0001778 266.3302 290.5487 1.86231002 29661
BEIDOU-3 M5 (C21)
1 43207U 18018A 22141.30457319 .00000044 00000+0 00000+0 0 9992
2 43207 55.4979 112.7099 0007678 325.3001 34.6187 1.86231667 29031
BEIDOU-3 M6 (C22)
1 43208U 18018B 22141.37119744 .00000044 00000+0 00000+0 0 9997
2 43208 55.4967 112.7121 0010410 301.1590 58.7074 1.86231670 29034
BEIDOU-3 M7 (C29)
1 43245U 18029A 22142.32693102 -.00000092 00000+0 00000+0 0 9995
2 43245 55.2386 351.3300 0001437 44.3900 85.9616 1.86232717 28203
BEIDOU-3 M8 (C30)
1 43246U 18029B 22142.60475863 -.00000093 00000+0 10000-3 0 9995
2 43246 55.2331 351.3508 0004889 10.6600 352.4694 1.86232895 28206
IRNSS-1I
1 43286U 18035A 22142.46936469 .00000097 00000+0 00000+0 0 9992
2 43286 29.0213 97.7682 0019063 186.5207 179.7350 1.00269215 15171
COSMOS 2527 (756)
1 43508U 18053A 22142.14720748 .00000076 00000+0 00000+0 0 9992
2 43508 64.9636 123.7202 0009773 243.6244 229.5308 2.13102577 30587
BEIDOU IGSO-7 (C16)
1 43539U 18057A 22141.96021479 -.00000091 00000+0 00000+0 0 9992
2 43539 55.0725 175.9388 0048923 227.0886 293.5333 1.00266368 14241
GSAT0221 (PRN E15)
1 43564U 18060A 22142.07191362 -.00000101 00000+0 00000+0 0 9998
2 43564 57.1646 21.8981 0002754 311.1855 48.8317 1.70475404 23811
GSAT0222 (PRN E33)
1 43565U 18060B 22141.11860471 -.00000098 00000+0 00000+0 0 9992
2 43565 57.1661 21.9245 0002862 325.3460 34.6782 1.70475355 23849
GSAT0219 (PRN E36)
1 43566U 18060C 22137.23307469 -.00000081 00000+0 00000+0 0 9996
2 43566 57.1652 22.0317 0002648 330.4509 29.5845 1.70475324 23754
GSAT0220 (PRN E13)
1 43567U 18060D 22140.97267447 -.00000097 00000+0 00000+0 0 9990
2 43567 57.1664 21.9303 0002465 324.6636 35.3633 1.70475101 23803
BEIDOU-3 M9 (C23)
1 43581U 18062A 22142.38270157 -.00000032 00000+0 00000+0 0 9996
2 43581 54.2820 232.9761 0003283 270.4292 154.7683 1.86231922 25944
BEIDOU-3 M10 (C24)
1 43582U 18062B 22142.13695978 -.00000029 00000+0 00000+0 0 9998
2 43582 54.2826 232.9753 0004397 6.4004 345.7887 1.86232168 25937
BEIDOU-3 M11 (C25)
1 43602U 18067A 22142.13514411 -.00000028 00000+0 00000+0 0 9997
2 43602 54.3644 231.5873 0006735 9.2369 23.2025 1.86231796 25433
BEIDOU-3 M12 (C26)
1 43603U 18067B 22142.16541125 -.00000028 00000+0 00000+0 0 9993
2 43603 54.3621 231.5529 0003845 357.8006 325.3101 1.86231711 25445
BEIDOU-3 M13 (C32)
1 43622U 18072A 22142.45634220 .00000046 00000+0 00000+0 0 9990
2 43622 55.4655 112.2265 0009009 290.3587 257.1573 1.86231740 24963
BEIDOU-3 M14 (C33)
1 43623U 18072B 22142.29911944 .00000046 00000+0 00000+0 0 9994
2 43623 55.4665 112.2241 0006977 308.3578 223.9833 1.86231763 24965
BEIDOU-3 M15 (C34)
1 43647U 18078A 22141.30666927 -.00000091 00000+0 10000-3 0 9991
2 43647 55.1320 351.5255 0007318 13.3550 109.1103 1.86232581 24450
BEIDOU-3 M16 (C35)
1 43648U 18078B 22141.64242010 -.00000091 00000+0 00000+0 0 9997
2 43648 55.1283 351.5203 0005648 22.5477 232.8760 1.86232381 24479
BEIDOU-3 G1 (C59)
1 43683U 18085A 22142.48645944 -.00000287 00000+0 00000+0 0 9997
2 43683 0.8675 170.1944 0003357 328.3091 56.7829 1.00271338 13154
COSMOS 2529 (757)
1 43687U 18086A 22142.62413097 -.00000028 00000+0 00000+0 0 9993
2 43687 64.3696 243.0395 0009106 264.7059 137.7387 2.13102186 27615
BEIDOU-3 M17 (C36)
1 43706U 18093A 22142.48689951 -.00000033 00000+0 00000+0 0 9997
2 43706 54.3640 232.8571 0009499 271.5065 88.4241 1.86231797 23858
BEIDOU-3 M18 (C37)
1 43707U 18093B 22142.30503637 -.00000031 00000+0 00000+0 0 9993
2 43707 54.3658 232.8535 0007427 300.8914 28.3043 1.86232227 23836
GPS BIII-1 (PRN 04)
1 43873U 18109A 22140.55998345 .00000060 00000+0 00000+0 0 9995
2 43873 55.0843 150.9948 0018783 196.9869 25.2012 2.00569976 25219
BEIDOU-3 IGSO-1 (C38)
1 44204U 19023A 22141.60447130 -.00000240 00000+0 00000+0 0 9999
2 44204 56.5231 53.2584 0019116 202.1132 320.2167 1.00266223 11447
BEIDOU-2 G8
1 44231U 19027A 22142.61180188 -.00000257 00000+0 00000+0 0 9990
2 44231 0.8006 74.8958 0004032 117.8633 52.2550 1.00271085 11161
COSMOS 2534 (758)
1 44299U 19030A 22142.37453847 -.00000025 00000+0 00000+0 0 9999
2 44299 64.4427 242.9295 0011577 287.8000 57.7569 2.13102100 23246
BEIDOU-3 IGSO-2 (C39)
1 44337U 19035A 22142.48209854 -.00000092 00000+0 00000+0 0 9990
2 44337 55.1122 171.9553 0023251 198.1884 161.7207 1.00260828 10789
GPS BIII-2 (PRN 18)
1 44506U 19056A 22142.11800889 -.00000102 00000+0 00000+0 0 9998
2 44506 55.6668 30.0947 0022808 178.3932 352.1552 2.00556641 20243
BEIDOU-3 M23 (C45)
1 44542U 19061A 22142.42266951 -.00000032 00000+0 00000+0 0 9996
2 44542 54.5905 232.9963 0007468 333.7934 26.2081 1.86231157 18103
BEIDOU-3 M24 (C46)
1 44543U 19061B 22142.54655175 -.00000033 00000+0 00000+0 0 9991
2 44543 54.5881 232.9611 0004704 324.8985 29.4369 1.86231706 18096
BEIDOU-3 IGSO-3
1 44709U 19073A 22142.39491939 -.00000195 00000+0 00000+0 0 9996
2 44709 57.3054 296.6516 0022103 173.2158 31.1077 1.00264313 9547
BEIDOU-3 M21
1 44793U 19078A 22142.54724447 -.00000093 00000+0 10000-3 0 9996
2 44793 54.9812 351.5077 0007316 17.0367 171.1150 1.86232330 16963
BEIDOU-3 M22
1 44794U 19078B 22142.14971616 -.00000093 00000+0 00000+0 0 9990
2 44794 54.9572 351.5126 0005169 19.5886 173.6503 1.86232513 16950
COSMOS 2544 (759)
1 44850U 19088A 22142.53159866 .00000077 00000+0 00000+0 0 9993
2 44850 64.9495 123.5608 0014697 264.1221 187.4144 2.13102355 19023
BEIDOU-3 M19
1 44864U 19090A 22142.28315513 .00000046 00000+0 00000+0 0 9992
2 44864 55.3997 112.4453 0018916 273.2323 203.9511 1.86231921 16543
BEIDOU-3 M20
1 44865U 19090B 22142.23724134 .00000046 00000+0 00000+0 0 9991
2 44865 55.4023 112.4777 0017380 285.5683 250.7078 1.86231903 16518
BEIDOU-3 G2
1 45344U 20017A 22142.54630076 -.00000153 00000+0 00000+0 0 9990
2 45344 2.0847 350.8188 0004552 102.7677 63.2566 1.00271165 8359
COSMOS 2545 (760)
1 45358U 20018A 22142.27543779 -.00000073 00000+0 00000+0 0 9990
2 45358 64.9185 4.2068 0006828 255.3660 209.1575 2.13102707 16976
BEIDOU-3 G3
1 45807U 20040A 22142.55231882 -.00000365 00000+0 00000+0 0 9998
2 45807 1.4993 302.6593 0005656 332.7602 274.1336 1.00272790 7163
GPS BIII-3 (PRN 23)
1 45854U 20041A 22141.69597677 -.00000009 00000+0 00000+0 0 9997
2 45854 55.5037 87.3818 0021398 178.3256 343.3469 2.00559183 14205
GALAXY 30 (WAAS/PRN 135)
1 46114U 20056C 22142.00309275 .00000028 00000+0 00000+0 0 9994
2 46114 0.0150 314.3340 0002385 121.0329 40.3646 1.00271711 6388
GPS BIII-4 (PRN 14)
1 46826U 20078A 22142.50129618 -.00000044 00000+0 00000+0 0 9993
2 46826 54.5846 271.1481 0018937 185.1205 172.3799 2.00565098 11683

93
gps-ops.txt 100644
View File

@ -0,0 +1,93 @@
GPS BIIR-2 (PRN 13)
1 24876U 97035A 22141.93757172 .00000066 00000+0 00000+0 0 9992
2 24876 55.5067 156.7076 0057358 51.1925 309.3515 2.00563314182124
GPS BIIR-4 (PRN 20)
1 26360U 00025A 22142.54492514 -.00000032 00000+0 00000+0 0 9993
2 26360 54.0386 79.9360 0047986 184.0166 342.5535 2.00574339161456
GPS BIIR-6 (PRN 22)
1 26605U 00071A 22142.24968690 .00000069 00000+0 00000+0 0 9995
2 26605 55.0902 153.6993 0135842 254.1587 189.9521 2.00561099157698
GPS BIIR-8 (PRN 16)
1 27663U 03005A 22142.34563355 -.00000040 00000+0 00000+0 0 9990
2 27663 55.5303 274.0974 0125929 41.0019 322.6198 2.00566024141498
GPS BIIR-9 (PRN 21)
1 27704U 03010A 22142.27114751 -.00000104 00000+0 00000+0 0 9997
2 27704 55.0148 24.3655 0245171 305.4059 222.1541 2.00554634140287
GPS BIIR-11 (PRN 19)
1 28190U 04009A 22142.33630255 -.00000067 00000+0 00000+0 0 9993
2 28190 56.0198 335.0714 0090344 119.1490 34.0367 2.00560820133125
GPS BIIR-13 (PRN 02)
1 28474U 04045A 22141.76209590 -.00000102 00000+0 00000+0 0 9998
2 28474 55.3420 24.5139 0206721 278.7633 89.2366 2.00564729128600
GPS BIIRM-1 (PRN 17)
1 28874U 05038A 22142.32260509 -.00000064 00000+0 00000+0 0 9992
2 28874 56.0872 332.5055 0137178 274.4324 249.3608 2.00577908122011
GPS BIIRM-2 (PRN 31)
1 29486U 06042A 22142.26631024 -.00000004 00000+0 00000+0 0 9999
2 29486 54.7166 210.3147 0103293 21.2054 20.4532 2.00555540114570
GPS BIIRM-3 (PRN 12)
1 29601U 06052A 22141.65038646 -.00000031 00000+0 00000+0 0 9992
2 29601 55.5368 273.0615 0084235 73.2742 287.6382 2.00578358113574
GPS BIIRM-4 (PRN 15)
1 32260U 07047A 22141.96766744 .00000064 00000+0 00000+0 0 9998
2 32260 53.3076 141.6410 0138476 62.1890 299.2169 2.00549612106982
GPS BIIRM-5 (PRN 29)
1 32384U 07062A 22142.01824064 -.00000064 00000+0 00000+0 0 9990
2 32384 56.2054 333.2750 0019941 134.3252 33.7391 2.00560416105681
GPS BIIRM-6 (PRN 07)
1 32711U 08012A 22141.88171605 -.00000001 00000+0 00000+0 0 9991
2 32711 54.4761 209.2718 0162746 230.6176 127.9955 2.00564472103926
GPS BIIRM-8 (PRN 05)
1 35752U 09043A 22141.86732330 -.00000012 00000+0 00000+0 0 9992
2 35752 55.0523 86.5975 0057961 57.5582 309.3634 2.00557600 93537
GPS BIIF-1 (PRN 25)
1 36585U 10022A 22142.16745128 -.00000039 00000+0 00000+0 0 9998
2 36585 54.8187 268.5789 0103250 56.8233 283.0850 2.00563846 87763
GPS BIIF-2 (PRN 01)
1 37753U 11036A 22142.26692650 -.00000102 00000+0 00000+0 0 9995
2 37753 56.5943 29.7227 0117182 51.3929 85.3939 2.00565149 79451
GPS BIIF-3 (PRN 24)
1 38833U 12053A 22142.06173113 .00000004 00000+0 00000+0 0 9991
2 38833 53.5306 204.4311 0123021 45.9920 315.0835 2.00561443 69614
GPS BIIF-4 (PRN 27)
1 39166U 13023A 22141.92050982 -.00000061 00000+0 00000+0 0 9995
2 39166 55.7158 328.9042 0103999 37.9972 322.7417 2.00565984 66056
GPS BIIF-5 (PRN 30)
1 39533U 14008A 22142.41683124 -.00000005 00000+0 00000+0 0 9990
2 39533 53.6252 209.9201 0059339 207.8219 151.9230 2.00552110 59864
GPS BIIF-6 (PRN 06)
1 39741U 14026A 22142.19889533 -.00000102 00000+0 00000+0 0 9996
2 39741 56.5566 29.2511 0027404 307.6978 52.0909 2.00557797 58714
GPS BIIF-7 (PRN 09)
1 40105U 14045A 22142.28443268 .00000070 00000+0 00000+0 0 9997
2 40105 54.6866 147.8484 0018649 109.5178 250.7033 2.00576178 56256
GPS BIIF-8 (PRN 03)
1 40294U 14068A 22142.16209904 -.00000006 00000+0 00000+0 0 9995
2 40294 55.7969 88.9732 0039945 52.9810 307.3584 2.00569550 55387
GPS BIIF-9 (PRN 26)
1 40534U 15013A 22142.29769413 -.00000043 00000+0 00000+0 0 9994
2 40534 53.7200 265.7788 0068559 20.6383 339.6323 2.00554027 52004
GPS BIIF-10 (PRN 08)
1 40730U 15033A 22142.46207775 -.00000062 00000+0 00000+0 0 9992
2 40730 55.2147 327.7242 0074208 7.8657 352.2576 2.00553153 50178
GPS BIIF-11 (PRN 10)
1 41019U 15062A 22142.00912605 -.00000006 00000+0 00000+0 0 9998
2 41019 55.7857 88.8215 0077515 218.5164 140.9051 2.00562709 48001
GPS BIIF-12 (PRN 32)
1 41328U 16007A 22142.10184069 .00000069 00000+0 00000+0 0 9995
2 41328 54.9047 148.5212 0061551 230.4450 129.0297 2.00571809 46011
GPS BIII-1 (PRN 04)
1 43873U 18109A 22140.55998345 .00000060 00000+0 00000+0 0 9995
2 43873 55.0843 150.9948 0018783 196.9869 25.2012 2.00569976 25219
GPS BIII-2 (PRN 18)
1 44506U 19056A 22142.11800889 -.00000102 00000+0 00000+0 0 9998
2 44506 55.6668 30.0947 0022808 178.3932 352.1552 2.00556641 20243
GPS BIII-3 (PRN 23)
1 45854U 20041A 22141.69597677 -.00000009 00000+0 00000+0 0 9997
2 45854 55.5037 87.3818 0021398 178.3256 343.3469 2.00559183 14205
GPS BIII-4 (PRN 14)
1 46826U 20078A 22142.50129618 -.00000044 00000+0 00000+0 0 9993
2 46826 54.5846 271.1481 0018937 185.1205 172.3799 2.00565098 11683
GPS BIII-5 (PRN 11)
1 48859U 21054A 22141.77389104 -.00000100 00000+0 00000+0 0 9995
2 48859 55.1719 32.1218 0003752 196.0092 179.0152 2.00574888 6929

Binary file not shown.

After

Width:  |  Height:  |  Size: 914 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 858 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 686 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 283 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 980 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 716 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

BIN
pics/wtf-tle.jpg 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB

152
tle2ssc
View File

@ -1,11 +1,29 @@
#!/usr/bin/python3
# tle2ssc
# Convert a TLE into an .ssc file for Celestia
#
#!/usr/bin/env python3
"""
tle2ssc
Convert TLE orbit to Solar System Catalog (SSC) format for Celestia.
Copyright (C) 2022, 2023, Jeff Moe
Authors: Jeff Moe
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
# Usage:
# tle2ssc [filename]
# tle2ssc
# Example:
# tle2ssc foo-tle.txt
# ./tle2ssc > /usr/share/celestia/extras-standard/gnss/gnss.ssc
import os
import math
@ -16,110 +34,116 @@ from skyfield.api import EarthSatellite, load, wgs84
xpdotp = 1440.0 / (2.0 * math.pi)
# For now dev with just one Galileo satellite
satellite_name='GSAT0101'
satellite_number=37846
# Use GNSS to get all four systems
satellites_url = 'https://celestrak.com/NORAD/elements/gnss.txt'
#satellites_url = 'https://celestrak.com/NORAD/elements/galileo.txt'
#satellites_url = 'https://celestrak.com/NORAD/elements/gps-ops.txt'
#satellites_url = 'https://celestrak.com/NORAD/elements/glo-ops.txt'
#satellites_url = 'https://celestrak.com/NORAD/elements/beidou.txt'
#satellites_url = 'http://celestrak.com/NORAD/elements/galileo.txt'
satellites_url = './extras/galileo-gnss/galileo.txt'
satellites = load.tle_file(satellites_url)
satellites = load.tle_file(satellites_url,reload=True)
ts = load.timescale()
t = ts.now()
# 2022-05-20 02:17:30
#t = ts.utc(2022, 5, 20, 2, 17, 30)
by_number = {sat.model.satnum: sat for sat in satellites}
satellite = by_number[satellite_number]
for satellite in satellites:
satellite_name=satellite.name
# Static radius
satellite_radius=0.005
# Epoch XXX
#satellite_epoch=satellite.model.jdsatepoch
satellite_epoch=t.tdb
satellite_radius=0.005
satellite_epoch=satellite.model.jdsatepoch
# The unique satellite NORAD catalog number given in the TLE file.
# Use one defined above.
#satellite_number=satellite.model.satnum
satellite_number=satellite.model.satnum
# Satellite classification, or else 'U' for “Unknown”
satellite_classification=satellite.model.classification
satellite_classification=satellite.model.classification
# International designator
satellite_intldesg=satellite.model.intldesg
satellite_intldesg=satellite.model.intldesg
# Full four-digit year of this element set’s epoch moment.
satellite_epochyr=satellite.model.epochyr
satellite_epochyr=satellite.model.epochyr
# Fractional days into the year of the epoch moment.
satellite_epochdays=satellite.model.epochdays
satellite_epochdays=satellite.model.epochdays
# Julian date of the epoch (computed from epochyr and epochdays).
satellite_jdsatepoch=satellite.model.jdsatepoch
satellite_jdsatepoch=satellite.model.jdsatepoch
# First time derivative of the mean motion (ignored by SGP4).
satellite_ndot=satellite.model.ndot
satellite_ndot=satellite.model.ndot
# Second time derivative of the mean motion (ignored by SGP4).
satellite_nddot=satellite.model.nddot
satellite_nddot=satellite.model.nddot
# Ballistic drag coefficient B* in inverse earth radii.
satellite_bstar=satellite.model.bstar
satellite_bstar=satellite.model.bstar
# Ephemeris type (ignored by SGP4 as determination now automatic)
satellite_ephtype=satellite.model.ephtype
satellite_ephtype=satellite.model.ephtype
# Element number
satellite_elnum=satellite.model.elnum
satellite_elnum=satellite.model.elnum
# Inclination in radians. Convert radians to degrees.
satellite_inclination=math.degrees(satellite.model.inclo)
satellite_inclination=math.degrees(satellite.model.inclo)
# Satellite Inclination and Obliquity are the same
satellite_obliquity=math.degrees(satellite.model.inclo)
satellite_obliquity=math.degrees(satellite.model.inclo)
# Right ascension of ascending node in radians. Convert to degrees.
satellite_ascending_node=math.degrees(satellite.model.nodeo)
satellite_equator_ascending_node=math.degrees(satellite.model.nodeo)
satellite_ascending_node=math.degrees(satellite.model.nodeo)
# Equator Ascending Node, in degrees
satellite_equator_ascending_node=math.degrees(satellite.model.nodeo)
# Eccentricity.
satellite_eccentricity=satellite.model.ecco
satellite_eccentricity=satellite.model.ecco
# Argument of perigee in radians.
satellite_arg_of_pericenter=math.degrees(satellite.model.argpo)
satellite_arg_of_pericenter=math.degrees(satellite.model.argpo)
# Mean anomaly in radians.
satellite_mean_anomaly=math.degrees(satellite.model.mo)
satellite_mean_anomaly=math.degrees(satellite.model.mo)
# Mean motion in radians per minute.
satellite_no_kozai=satellite.model.no_kozai
satellite_period=(1 / (satellite.model.no_kozai * xpdotp))
satellite_period=(1 / (satellite.model.no_kozai * xpdotp))
# Revolution number at epoch [Revs]
satellite_revnum=satellite.model.revnum
satellite_revnum=satellite.model.revnum
# Semi-Major Axis
satellite_semimajor_axis=pow((pow(satellite_period,2) * 75371000000000),0.33333333)
satellite_semimajor_axis=pow((pow(satellite_period,2) * 75371000000000),0.33333333)
# Rotation Offset
satellite_rotation_offset=((satellite_arg_of_pericenter)+(satellite_mean_anomaly)+360*
((2451545-satellite_epochdays)/satellite_period-
round((2451545-satellite_epochdays)/satellite_period)))
satellite_rotation_offset=((satellite_arg_of_pericenter)+(satellite_mean_anomaly)+360*
((2451545-satellite_epochdays)/satellite_period-
round((2451545-satellite_epochdays)/satellite_period)))
# Output for .ssc file
print('"', satellite_name, '-', satellite_number, '" ','"Sol/Earth" {',sep="")
print(' Class "spacecraft"')
print(' # Mesh "foo.3ds" XXX')
print(' radius', satellite_radius)
print()
print(' EllipticalOrbit {')
print(' Epoch', satellite_epoch)
print(' Period', satellite_period)
print(' SemiMajorAxis', satellite_semimajor_axis)
print(' Eccentricity', satellite_eccentricity)
print(' Inclination', satellite_inclination)
print(' AscendingNode', satellite_ascending_node)
print(' ArgOfPericenter', satellite_arg_of_pericenter)
print(' MeanAnomaly', satellite_mean_anomaly)
print(' }')
print(' Obliquity', satellite_obliquity)
print(' EquatorAscendingNode', satellite_equator_ascending_node)
print(' RotationOffset', satellite_rotation_offset)
print(' # Orientation [ ]')
print('}')
print('"', satellite_name, '" "Sol/Earth" {',sep="")
print(' Class "spacecraft"')
print(' Mesh "galileo-gnss.cmod"')
print(' Radius', "%.3f" %satellite_radius)
print()
print(' EllipticalOrbit {')
print(' Epoch', "%.8f" %satellite_epoch)
print(' Period', "%.8f" %satellite_period)
print(' SemiMajorAxis', "%.3f" %satellite_semimajor_axis)
print(' Eccentricity', "%.8f" %satellite_eccentricity)
print(' Inclination', "%.4f" %satellite_inclination)
print(' AscendingNode', "%.4f" %satellite_ascending_node)
print(' ArgOfPericenter', "%.4f" %satellite_arg_of_pericenter)
print(' MeanAnomaly', "%.4f" %satellite_mean_anomaly)
print(' }')
print(' Obliquity', "%.4f" %satellite_obliquity)
print(' EquatorAscendingNode', "%.4f" %satellite_equator_ascending_node)
print(' RotationOffset', "%.4f" %satellite_rotation_offset)
print(' # Orientation [ ]')
print('}')
print()