-
Notifications
You must be signed in to change notification settings - Fork 7
/
13074a15.tle
2321 lines (1956 loc) · 91.5 KB
/
13074a15.tle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Made by eph2tle, compiled Aug 11 2019 15:28:19
# Run at Sun Aug 18 13:59:58 2019
#
# No updates (historical TLEs)
#
# The following TLEs (Two-Line Elements) were generated by fitting
# a numerically-integrated ephemeris, based on the orbit given below,
# to the SDP4/SGP4 models. Each TLE is good for the interval between
# its epoch and the epoch of the subsequent TLE (usually one day).
# The maximum deviation between the numerically integrated ephemerides
# and the TLE-based ephemeris, in kilometers, is given for each TLE
# as the "worst residual".
#
# This fitting is done using the 'eph2tle' code packaged with Find_Orb.
# The code has details on how the TLEs were computed :
#
# https://github.com/Bill-Gray/find_orb/eph2tle.cpp
#
# Be warned: the error given is that between the numerically
# integrated ephems and the TLE model. There will usually be at
# least some additional difference between the ephems and the actual
# motion of the satellite, especially if the ephemerides are based
# on a short arc. If the following orbital elements say something
# like "[based on] 10 observations 2015 Jan. 1-13", and the TLEs
# are for 2015 May, the extrapolation may be tenuous at best. If
# your application requires a specific level of accuracy, you may
# want to contact me; I can give you some idea as to the fit of the
# underlying data (and possibly TLEs based on newer data).
#
# You can usually find the underlying observational data, and the
# fitted orbit, residuals, ephemerides, and sometimes some comments
# about the object, among the pages listed at
#
# https://www.projectpluto.com/pluto/mpecs/pseudo.htm
#
# WARNING: The TLEs in this file are all fitted to SGP4, even if
# they're in deep space (longer than a 225 minute period). This is only
# done in cases where SDP4 fails or fits the ephemeris poorly. The problem
# is that, while SGP4 fits here, many programs don't actually look at the
# ephemeris type code byte. They will produce garbage results when using
# these TLEs. (Sat_ID and all programs by me, Bill Gray, will use these
# TLEs correctly. But I may be the only one doing that.)
#
# Also, if you use a TLE outside the "correct" time range (between
# its MJD and that of the next TLE), all bets are off. I've carefully
# computed and minimized the worst error over the "correct" time frame,
# but the ephemeris may (or may not) diverge wildly outside of it.
#
# Ephem range: 57023.000000 57388.000000 1.000000
# Created from Horizons data by 'jpl2mpc', ver Aug 11 2019
# *******************************************************************************
# Revised: Aug 15, 2019 Gaia Observatory -139479
# http://sci.esa.int/gaia/
#
# BACKGROUND:
# Gaia is designed and operated by the European Space Agency. It launched
# December 19, 2013 @ 09:12 UTC on a Soyuz launcher from Kourou, French Guiana.
#
# On 2014-Jan-08, it arrived at its operational Lissajous orbit around the
# gravitationally stable Earth-Sun Lagrange-point L2, roughly 1.5 million km
# from Earth in the direction opposite the Sun. The orbit is not shadowed by
# Earth eclipses. The orbit period is about 180 days; the size of the orbit
# is typically 340,000 x 90,000 km.
#
# MISSION:
# Gaia's 5-year primary mission is to ...
#
# * Measure the positions of ~1 billion stars both in our Galaxy and other
# members of the Local Group, with an accuracy down to 24 uas
# * Perform spectral and photometric measurements of all objects
# * Derive space velocities of the Galaxy's constituent stars using the
# stellar distances and motions
# * Create a three-dimensional structural map of the Galaxy
#
# Additional expected results include extrasolar planet detection, brown dwarf
# detection, solar system asteroid discoveries, supernova early detection, and
# testing of Einstein's general relativity.
#
# GAIA SPACECRAFT:
# Spacecraft dry mass total 1392 kg
# Propellant 237 kg
# Total launch mass 2029 kg
# Power: 12.8 m^2 solar array provides up to 1910 Watts
#
# SCIENCE INSTRUMENTS:
# Single integrated instrument that comprises three major functions:
# astrometry, photometry (320-1000 nm) and spectrometry (846-874 nm).
# The three functions use two common telescopes and a shared focal plane,
# with each function having a dedicated area on the large 0.5m x 1m CCD
# detector array.
#
# SPACECRAFT TRAJECTORY (from ESA 2019-Aug-13, predicts thereafter)
# Trajectory name Start Stop
# -------------------------------------------- ----------- -----------
# ORB1_20190813_000001.txt 2013-Dec-19 2026-Sep-14
# *******************************************************************************
#
#
# *******************************************************************************
# Ephemeris / WWW_USER Sun Aug 18 17:59:26 2019 Pasadena, USA / Horizons
# *******************************************************************************
# Target body name: Gaia (spacecraft) (-139479) {source: gaia_merged}
# Center body name: Earth (399) {source: gaia_merged}
# Center-site name: BODY CENTER
# *******************************************************************************
# Start time : A.D. 2015-Jan-01 00:00:00.0000 TDB
# Stop time : A.D. 2016-Jan-01 00:00:00.0000 TDB
# Step-size : 3650 steps
# *******************************************************************************
# Center geodetic : 0.00000000,0.00000000,0.0000000 {E-lon(deg),Lat(deg),Alt(km)}
# Center cylindric: 0.00000000,0.00000000,0.0000000 {E-lon(deg),Dxy(km),Dz(km)}
# Center radii : 6378.1 x 6378.1 x 6356.8 km {Equator, meridian, pole}
# Output units : AU-D
# Output type : GEOMETRIC cartesian states
# Output format : 2 (position and velocity)
# Reference frame : ICRF/J2000.0
# Coordinate systm: Ecliptic and Mean Equinox of Reference Epoch
# *******************************************************************************
# JDTDB
# X Y Z
# VX VY VZ
# *******************************************************************************
# SGP4 only: these TLEs are _not_ fitted to SDP4, even for
# deep-space TLEs. These may not work with your software.
#
# 1 NoradU COSPAR Epoch.epoch dn/dt/2 d2n/dt2/6 BSTAR T El# C
# 2 NoradU Inclina RAAscNode Eccent ArgPeri MeanAno MeanMotion Rev# C
# Worst residual: 38.41 km
# MJD 57023.000000 (2015 Jan 1 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15001.49922241 .00000000 00000-0 00000-0 2 5951
2 39479 017.0134 019.4471 8477367 261.6996 178.2550 00.01090978 09
# Worst residual: 36.81 km
# MJD 57024.000000 (2015 Jan 2 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15002.49922241 .00000000 00000-0 00000-0 2 5952
2 39479 017.0821 020.9276 8444493 260.7421 179.2682 00.01087787 00
# Worst residual: 35.88 km
# MJD 57025.000000 (2015 Jan 3 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15003.49922241 .00000000 00000-0 00000-0 2 5953
2 39479 017.1570 022.3994 8417374 259.7813 180.3681 00.01085317 05
# Worst residual: 35.64 km
# MJD 57026.000000 (2015 Jan 4 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15004.49922241 .00000000 00000-0 00000-0 2 5954
2 39479 017.2384 023.8737 8396491 258.8127 181.5150 00.01083609 00
# Worst residual: 36.08 km
# MJD 57027.000000 (2015 Jan 5 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15005.49922241 .00000000 00000-0 00000-0 2 5955
2 39479 017.3271 025.3577 8381904 257.8358 182.6693 00.01082668 01
# Worst residual: 37.09 km
# MJD 57028.000000 (2015 Jan 6 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15006.49922241 .00000000 00000-0 00000-0 2 5956
2 39479 017.4235 026.8553 8373310 256.8535 183.7936 00.01082471 04
# Worst residual: 38.52 km
# MJD 57029.000000 (2015 Jan 7 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15007.49922241 .00000000 00000-0 00000-0 2 5957
2 39479 017.5278 028.3645 8370160 255.8731 184.8554 00.01082977 07
# Worst residual: 40.28 km
# MJD 57030.000000 (2015 Jan 8 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15008.49922241 .00000000 00000-0 00000-0 2 5958
2 39479 017.6404 029.8838 8371695 254.9006 185.8281 00.01084123 01
# Worst residual: 42.28 km
# MJD 57031.000000 (2015 Jan 9 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15009.49922241 .00000000 00000-0 00000-0 2 5959
2 39479 017.7609 031.4062 8377018 253.9457 186.6913 00.01085833 01
# Worst residual: 44.41 km
# MJD 57032.000000 (2015 Jan 10 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15010.49922241 .00000000 00000-0 00000-0 2 5951
2 39479 017.8889 032.9229 8385145 253.0191 187.4292 00.01088020 09
# Worst residual: 46.64 km
# MJD 57033.000000 (2015 Jan 11 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15011.49922241 .00000000 00000-0 00000-0 2 5952
2 39479 018.0233 034.4221 8395034 252.1332 188.0302 00.01090585 07
# Worst residual: 48.90 km
# MJD 57034.000000 (2015 Jan 12 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15012.49922241 .00000000 00000-0 00000-0 2 5953
2 39479 018.1625 035.8897 8405575 251.3024 188.4841 00.01093417 07
# Worst residual: 51.14 km
# MJD 57035.000000 (2015 Jan 13 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15013.49922241 .00000000 00000-0 00000-0 2 5954
2 39479 018.3045 037.3086 8415584 250.5433 188.7827 00.01096391 09
# Worst residual: 52.72 km
# MJD 57036.000000 (2015 Jan 14 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15014.49922241 .00000000 00000-0 00000-0 2 5955
2 39479 018.4514 038.7060 8424454 249.8274 188.9400 00.01099415 07
# Worst residual: 55.31 km
# MJD 57037.000000 (2015 Jan 15 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15015.49922241 .00000000 00000-0 00000-0 2 5956
2 39479 018.5921 039.9867 8429622 249.2493 188.9208 00.01102244 08
# Worst residual: 56.95 km
# MJD 57038.000000 (2015 Jan 16 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15016.49922241 .00000000 00000-0 00000-0 2 5957
2 39479 018.7206 041.1154 8429274 248.8425 188.7222 00.01104664 05
# Worst residual: 58.05 km
# MJD 57039.000000 (2015 Jan 17 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15017.49922241 .00000000 00000-0 00000-0 2 5958
2 39479 018.8341 042.0860 8421809 248.6098 188.3643 00.01106463 02
# Worst residual: 58.37 km
# MJD 57040.000000 (2015 Jan 18 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15018.49922241 .00000000 00000-0 00000-0 2 5959
2 39479 018.9265 042.8647 8405059 248.5807 187.8680 00.01107376 04
# Worst residual: 57.79 km
# MJD 57041.000000 (2015 Jan 19 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15019.49922241 .00000000 00000-0 00000-0 2 5950
2 39479 018.9930 043.4222 8376898 248.7791 187.2705 00.01107142 04
# Worst residual: 56.06 km
# MJD 57042.000000 (2015 Jan 20 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15020.49922241 .00000000 00000-0 00000-0 2 5952
2 39479 019.0306 043.7406 8335537 249.2162 186.6251 00.01105537 08
# Worst residual: 53.16 km
# MJD 57043.000000 (2015 Jan 21 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15021.49922241 .00000000 00000-0 00000-0 2 5953
2 39479 019.0399 043.8209 8279923 249.8840 185.9982 00.01102426 04
# Worst residual: 49.28 km
# MJD 57044.000000 (2015 Jan 22 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15022.49922241 .00000000 00000-0 00000-0 2 5954
2 39479 019.0249 043.6841 8210038 250.7548 185.4588 00.01097800 02
# Worst residual: 50.33 km
# MJD 57045.000000 (2015 Jan 23 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15023.49922241 .00000000 00000-0 00000-0 2 5955
2 39479 018.9920 043.3703 8126992 251.7826 185.0688 00.01091784 07
# Worst residual: 51.44 km
# MJD 57046.000000 (2015 Jan 24 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15024.49922241 .00000000 00000-0 00000-0 2 5956
2 39479 018.9488 042.9298 8032899 252.9132 184.8728 00.01084619 06
# Worst residual: 51.45 km
# MJD 57047.000000 (2015 Jan 25 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15025.49922241 .00000000 00000-0 00000-0 2 5957
2 39479 018.9020 042.4139 7930528 254.0926 184.8946 00.01076614 04
# Worst residual: 50.56 km
# MJD 57048.000000 (2015 Jan 26 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15026.49922241 .00000000 00000-0 00000-0 2 5958
2 39479 018.8567 041.8674 7822909 255.2753 185.1381 00.01068103 01
# Worst residual: 48.92 km
# MJD 57049.000000 (2015 Jan 27 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15027.49922241 .00000000 00000-0 00000-0 2 5959
2 39479 018.8159 041.3258 7713022 256.4267 185.5919 00.01059404 04
# Worst residual: 46.82 km
# MJD 57050.000000 (2015 Jan 28 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15028.49922241 .00000000 00000-0 00000-0 2 5950
2 39479 018.7812 040.8127 7603585 257.5252 186.2346 00.01050800 09
# Worst residual: 44.40 km
# MJD 57051.000000 (2015 Jan 29 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15029.49922241 .00000000 00000-0 00000-0 2 5951
2 39479 018.7530 040.3437 7496934 258.5587 187.0389 00.01042529 00
# Worst residual: 41.87 km
# MJD 57052.000000 (2015 Jan 30 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15030.49922241 .00000000 00000-0 00000-0 2 5953
2 39479 018.7309 039.9261 7395001 259.5239 187.9746 00.01034785 02
# Worst residual: 39.39 km
# MJD 57053.000000 (2015 Jan 31 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15031.49922241 .00000000 00000-0 00000-0 2 5954
2 39479 018.7141 039.5619 7299286 260.4246 189.0098 00.01027718 07
# Worst residual: 37.07 km
# MJD 57054.000000 (2015 Feb 1 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15032.49922241 .00000000 00000-0 00000-0 2 5955
2 39479 018.7018 039.2487 7210879 261.2698 190.1111 00.01021442 08
# Worst residual: 35.01 km
# MJD 57055.000000 (2015 Feb 2 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15033.49922241 .00000000 00000-0 00000-0 2 5956
2 39479 018.6930 038.9815 7130464 262.0720 191.2440 00.01016034 05
# Worst residual: 33.31 km
# MJD 57056.000000 (2015 Feb 3 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15034.49922241 .00000000 00000-0 00000-0 2 5957
2 39479 018.6870 038.7534 7058394 262.8465 192.3738 00.01011548 06
# Worst residual: 31.99 km
# MJD 57057.000000 (2015 Feb 4 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15035.49922241 .00000000 00000-0 00000-0 2 5958
2 39479 018.6829 038.5566 6994706 263.6102 193.4668 00.01008010 09
# Worst residual: 31.09 km
# MJD 57058.000000 (2015 Feb 5 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15036.49922241 .00000000 00000-0 00000-0 2 5959
2 39479 018.6804 038.3815 6939208 264.3804 194.4923 00.01005427 04
# Worst residual: 30.64 km
# MJD 57059.000000 (2015 Feb 6 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15037.49922241 .00000000 00000-0 00000-0 2 5950
2 39479 018.6791 038.2189 6891450 265.1740 195.4241 00.01003784 04
# Worst residual: 30.66 km
# MJD 57060.000000 (2015 Feb 7 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15038.49922241 .00000000 00000-0 00000-0 2 5951
2 39479 018.6787 038.0577 6850759 266.0074 196.2407 00.01003039 01
# Worst residual: 31.18 km
# MJD 57061.000000 (2015 Feb 8 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15039.49922241 .00000000 00000-0 00000-0 2 5952
2 39479 018.6794 037.8866 6816233 266.8964 196.9247 00.01003126 08
# Worst residual: 32.17 km
# MJD 57062.000000 (2015 Feb 9 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15040.49922241 .00000000 00000-0 00000-0 2 5954
2 39479 018.6814 037.6937 6786779 267.8560 197.4619 00.01003954 00
# Worst residual: 33.66 km
# MJD 57063.000000 (2015 Feb 10 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15041.49922241 .00000000 00000-0 00000-0 2 5955
2 39479 018.6851 037.4665 6761090 268.9007 197.8403 00.01005407 04
# Worst residual: 35.66 km
# MJD 57064.000000 (2015 Feb 11 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15042.49922241 .00000000 00000-0 00000-0 2 5956
2 39479 018.6916 037.1910 6737619 270.0453 198.0495 00.01007334 00
# Worst residual: 38.23 km
# MJD 57065.000000 (2015 Feb 12 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15043.49922241 .00000000 00000-0 00000-0 2 5957
2 39479 018.7019 036.8541 6714537 271.3035 198.0807 00.01009551 05
# Worst residual: 41.37 km
# MJD 57066.000000 (2015 Feb 13 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15044.49922241 .00000000 00000-0 00000-0 2 5958
2 39479 018.7176 036.4412 6689616 272.6890 197.9278 00.01011821 07
# Worst residual: 45.05 km
# MJD 57067.000000 (2015 Feb 14 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15045.49922241 .00000000 00000-0 00000-0 2 5959
2 39479 018.7408 035.9384 6660189 274.2132 197.5903 00.01013847 09
# Worst residual: 49.15 km
# MJD 57068.000000 (2015 Feb 15 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15046.49922241 .00000000 00000-0 00000-0 2 5950
2 39479 018.7741 035.3344 6623148 275.8833 197.0762 00.01015273 01
# Worst residual: 53.46 km
# MJD 57069.000000 (2015 Feb 16 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15047.49922241 .00000000 00000-0 00000-0 2 5951
2 39479 018.8200 034.6232 6575092 277.6984 196.4074 00.01015691 04
# Worst residual: 57.61 km
# MJD 57070.000000 (2015 Feb 17 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15048.49922241 .00000000 00000-0 00000-0 2 5952
2 39479 018.8812 033.8076 6512704 279.6458 195.6224 00.01014686 00
# Worst residual: 61.15 km
# MJD 57071.000000 (2015 Feb 18 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15049.49922241 .00000000 00000-0 00000-0 2 5953
2 39479 018.9593 032.9024 6433292 281.6984 194.7767 00.01011901 00
# Worst residual: 63.64 km
# MJD 57072.000000 (2015 Feb 19 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15050.49922241 .00000000 00000-0 00000-0 2 5955
2 39479 019.0548 031.9341 6335450 283.8159 193.9378 00.01007114 08
# Worst residual: 64.82 km
# MJD 57073.000000 (2015 Feb 20 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15051.49922241 .00000000 00000-0 00000-0 2 5956
2 39479 019.1660 030.9371 6219493 285.9500 193.1747 00.01000299 06
# Worst residual: 64.71 km
# MJD 57074.000000 (2015 Feb 21 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15052.49922241 .00000000 00000-0 00000-0 2 5957
2 39479 019.2901 029.9473 6087521 288.0532 192.5461 00.00991644 08
# Worst residual: 63.11 km
# MJD 57075.000000 (2015 Feb 22 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15053.49922241 .00000000 00000-0 00000-0 2 5958
2 39479 019.4215 029.0060 5940634 290.0818 192.0693 00.00981293 04
# Worst residual: 61.25 km
# MJD 57076.000000 (2015 Feb 23 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15054.49922241 .00000000 00000-0 00000-0 2 5959
2 39479 019.5610 028.1026 5790214 292.0245 191.8296 00.00970311 04
# Worst residual: 58.43 km
# MJD 57077.000000 (2015 Feb 24 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15055.49922241 .00000000 00000-0 00000-0 2 5950
2 39479 019.7006 027.2803 5633420 293.8546 191.7587 00.00958543 01
# Worst residual: 55.26 km
# MJD 57078.000000 (2015 Feb 25 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15056.49922241 .00000000 00000-0 00000-0 2 5951
2 39479 019.8395 026.5309 5476598 295.5768 191.8649 00.00946621 06
# Worst residual: 51.99 km
# MJD 57079.000000 (2015 Feb 26 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15057.49922241 .00000000 00000-0 00000-0 2 5952
2 39479 019.9761 025.8521 5323149 297.1974 192.1266 00.00934909 07
# Worst residual: 48.78 km
# MJD 57080.000000 (2015 Feb 27 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15058.49922241 .00000000 00000-0 00000-0 2 5953
2 39479 020.1098 025.2377 5175872 298.7282 192.5191 00.00923706 08
# Worst residual: 43.81 km
# MJD 57081.000000 (2015 Feb 28 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15059.49922241 .00000000 00000-0 00000-0 2 5954
2 39479 020.2432 024.6690 5041464 300.2160 192.9711 00.00913689 06
# Worst residual: 42.92 km
# MJD 57082.000000 (2015 Mar 1 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15060.49922241 .00000000 00000-0 00000-0 2 5956
2 39479 020.3687 024.1712 4908352 301.5797 193.5944 00.00903725 01
# Worst residual: 40.44 km
# MJD 57083.000000 (2015 Mar 2 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15061.49922241 .00000000 00000-0 00000-0 2 5957
2 39479 020.4951 023.7032 4791229 302.9339 194.2250 00.00895279 08
# Worst residual: 38.34 km
# MJD 57084.000000 (2015 Mar 3 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15062.49922241 .00000000 00000-0 00000-0 2 5958
2 39479 020.6206 023.2687 4686616 304.2652 194.8801 00.00888021 05
# Worst residual: 36.72 km
# MJD 57085.000000 (2015 Mar 4 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15063.49922241 .00000000 00000-0 00000-0 2 5959
2 39479 020.7465 022.8612 4595157 305.5939 195.5285 00.00882032 07
# Worst residual: 35.60 km
# MJD 57086.000000 (2015 Mar 5 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15064.49922241 .00000000 00000-0 00000-0 2 5950
2 39479 020.8740 022.4746 4517226 306.9417 196.1365 00.00877374 04
# Worst residual: 35.02 km
# MJD 57087.000000 (2015 Mar 6 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15065.49922241 .00000000 00000-0 00000-0 2 5951
2 39479 021.0046 022.1039 4452998 308.3306 196.6693 00.00874090 06
# Worst residual: 35.01 km
# MJD 57088.000000 (2015 Mar 7 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15066.49922241 .00000000 00000-0 00000-0 2 5952
2 39479 021.1398 021.7443 4402441 309.7812 197.0938 00.00872204 08
# Worst residual: 35.58 km
# MJD 57089.000000 (2015 Mar 8 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15067.49922241 .00000000 00000-0 00000-0 2 5953
2 39479 021.2816 021.3916 4365261 311.3119 197.3808 00.00871714 06
# Worst residual: 36.68 km
# MJD 57090.000000 (2015 Mar 9 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15068.49922241 .00000000 00000-0 00000-0 2 5954
2 39479 021.4317 021.0421 4340888 312.9370 197.5061 00.00872582 03
# Worst residual: 38.28 km
# MJD 57091.000000 (2015 Mar 10 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15069.49922241 .00000000 00000-0 00000-0 2 5955
2 39479 021.5923 020.6929 4328391 314.6667 197.4503 00.00874728 02
# Worst residual: 40.38 km
# MJD 57092.000000 (2015 Mar 11 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15070.49922241 .00000000 00000-0 00000-0 2 5957
2 39479 021.7656 020.3415 4326477 316.5071 197.1982 00.00878030 05
# Worst residual: 42.98 km
# MJD 57093.000000 (2015 Mar 12 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15071.49922241 .00000000 00000-0 00000-0 2 5958
2 39479 021.9536 019.9867 4333468 318.4605 196.7374 00.00882315 02
# Worst residual: 46.04 km
# MJD 57094.000000 (2015 Mar 13 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15072.49922241 .00000000 00000-0 00000-0 2 5959
2 39479 022.1582 019.6280 4347225 320.5254 196.0584 00.00887350 02
# Worst residual: 49.49 km
# MJD 57095.000000 (2015 Mar 14 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15073.49922241 .00000000 00000-0 00000-0 2 5950
2 39479 022.3807 019.2666 4365089 322.6972 195.1549 00.00892837 03
# Worst residual: 53.20 km
# MJD 57096.000000 (2015 Mar 15 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15074.49922241 .00000000 00000-0 00000-0 2 5951
2 39479 022.6220 018.9046 4383805 324.9677 194.0248 00.00898396 06
# Worst residual: 56.95 km
# MJD 57097.000000 (2015 Mar 16 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15075.49922241 .00000000 00000-0 00000-0 2 5952
2 39479 022.8815 018.5462 4399571 327.3247 192.6740 00.00903571 06
# Worst residual: 60.41 km
# MJD 57098.000000 (2015 Mar 17 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15076.49922241 .00000000 00000-0 00000-0 2 5953
2 39479 023.1569 018.1970 4408209 329.7514 191.1198 00.00907847 09
# Worst residual: 63.18 km
# MJD 57099.000000 (2015 Mar 18 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15077.49922241 .00000000 00000-0 00000-0 2 5954
2 39479 023.4441 017.8640 4405605 332.2270 189.3945 00.00910702 09
# Worst residual: 64.89 km
# MJD 57100.000000 (2015 Mar 19 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15078.49922241 .00000000 00000-0 00000-0 2 5955
2 39479 023.7370 017.5546 4388366 334.7278 187.5463 00.00911686 01
# Worst residual: 65.31 km
# MJD 57101.000000 (2015 Mar 20 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15079.49922241 .00000000 00000-0 00000-0 2 5956
2 39479 024.0282 017.2752 4354534 337.2295 185.6354 00.00910518 01
# Worst residual: 64.51 km
# MJD 57102.000000 (2015 Mar 21 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15080.49922241 .00000000 00000-0 00000-0 2 5958
2 39479 024.3106 017.0302 4304070 339.7098 183.7267 00.00907149 04
# Worst residual: 62.50 km
# MJD 57103.000000 (2015 Mar 22 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15081.49922241 .00000000 00000-0 00000-0 2 5959
2 39479 024.5784 016.8211 4238882 342.1514 181.8792 00.00901770 08
# Worst residual: 59.60 km
# MJD 57104.000000 (2015 Mar 23 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15082.49922241 .00000000 00000-0 00000-0 2 5950
2 39479 024.8280 016.6466 4162343 344.5423 180.1389 00.00894760 09
# Worst residual: 56.18 km
# MJD 57105.000000 (2015 Mar 24 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15083.49922241 .00000000 00000-0 00000-0 2 5951
2 39479 025.0584 016.5035 4078613 346.8759 178.5348 00.00886601 04
# Worst residual: 52.59 km
# MJD 57106.000000 (2015 Mar 25 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15084.49922241 .00000000 00000-0 00000-0 2 5952
2 39479 025.2704 016.3876 3991942 349.1489 177.0817 00.00877789 07
# Worst residual: 49.04 km
# MJD 57107.000000 (2015 Mar 26 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15085.49922241 .00000000 00000-0 00000-0 2 5953
2 39479 025.4660 016.2945 3906185 351.3596 175.7835 00.00868776 06
# Worst residual: 45.71 km
# MJD 57108.000000 (2015 Mar 27 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15086.49922241 .00000000 00000-0 00000-0 2 5954
2 39479 025.6480 016.2205 3824638 353.5065 174.6389 00.00859946 05
# Worst residual: 42.68 km
# MJD 57109.000000 (2015 Mar 28 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15087.49922241 .00000000 00000-0 00000-0 2 5955
2 39479 025.8192 016.1624 3749985 355.5866 173.6453 00.00851613 07
# Worst residual: 39.98 km
# MJD 57110.000000 (2015 Mar 29 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15088.49922241 .00000000 00000-0 00000-0 2 5956
2 39479 025.9825 016.1176 3684417 357.5955 172.8002 00.00844030 08
# Worst residual: 37.64 km
# MJD 57111.000000 (2015 Mar 30 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15089.49922241 .00000000 00000-0 00000-0 2 5957
2 39479 026.1406 016.0843 3629732 359.5277 172.1030 00.00837401 02
# Worst residual: 35.69 km
# MJD 57112.000000 (2015 Mar 31 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15090.49922241 .00000000 00000-0 00000-0 2 5959
2 39479 026.2962 016.0612 3587418 001.3769 171.5531 00.00831894 05
# Worst residual: 34.14 km
# MJD 57113.000000 (2015 Apr 1 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15091.49922241 .00000000 00000-0 00000-0 2 5950
2 39479 026.4517 016.0477 3558724 003.1382 171.1485 00.00827646 05
# Worst residual: 33.06 km
# MJD 57114.000000 (2015 Apr 2 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15092.49922241 .00000000 00000-0 00000-0 2 5951
2 39479 026.6096 016.0435 3544705 004.8091 170.8834 00.00824768 08
# Worst residual: 32.50 km
# MJD 57115.000000 (2015 Apr 3 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15093.49922241 .00000000 00000-0 00000-0 2 5952
2 39479 026.7722 016.0489 3546187 006.3913 170.7452 00.00823343 03
# Worst residual: 32.55 km
# MJD 57116.000000 (2015 Apr 4 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15094.49922241 .00000000 00000-0 00000-0 2 5953
2 39479 026.9416 016.0642 3563832 007.8918 170.7132 00.00823428 02
# Worst residual: 33.29 km
# MJD 57117.000000 (2015 Apr 5 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15095.49922241 .00000000 00000-0 00000-0 2 5954
2 39479 027.1198 016.0906 3598131 009.3228 170.7583 00.00825062 02
# Worst residual: 35.79 km
# MJD 57118.000000 (2015 Apr 6 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15096.49922241 .00000000 00000-0 00000-0 2 5955
2 39479 027.3093 016.1292 3649691 010.7044 170.8355 00.00828277 06
# Worst residual: 36.62 km
# MJD 57119.000000 (2015 Apr 7 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15097.49922241 .00000000 00000-0 00000-0 2 5956
2 39479 027.5134 016.1818 3719135 012.0609 170.8898 00.00833099 01
# Worst residual: 39.12 km
# MJD 57120.000000 (2015 Apr 8 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15098.49922241 .00000000 00000-0 00000-0 2 5957
2 39479 027.7292 016.2489 3804026 013.3756 170.9557 00.00839326 06
# Worst residual: 42.18 km
# MJD 57121.000000 (2015 Apr 9 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15099.49922241 .00000000 00000-0 00000-0 2 5958
2 39479 027.9604 016.3328 3904599 014.6817 170.9573 00.00846935 08
# Worst residual: 45.37 km
# MJD 57122.000000 (2015 Apr 10 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15100.49922241 .00000000 00000-0 00000-0 2 5951
2 39479 028.2074 016.4346 4019388 015.9917 170.8618 00.00855766 04
# Worst residual: 48.87 km
# MJD 57123.000000 (2015 Apr 11 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15101.49922241 .00000000 00000-0 00000-0 2 5952
2 39479 028.4695 016.5553 4145717 017.3143 170.6441 00.00865541 03
# Worst residual: 52.38 km
# MJD 57124.000000 (2015 Apr 12 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15102.49922241 .00000000 00000-0 00000-0 2 5953
2 39479 028.7448 016.6948 4280837 018.6592 170.2751 00.00875960 02
# Worst residual: 55.70 km
# MJD 57125.000000 (2015 Apr 13 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15103.49922241 .00000000 00000-0 00000-0 2 5954
2 39479 029.0301 016.8520 4421097 020.0337 169.7329 00.00886629 09
# Worst residual: 58.53 km
# MJD 57126.000000 (2015 Apr 14 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15104.49922241 .00000000 00000-0 00000-0 2 5955
2 39479 029.3199 017.0241 4562256 021.4428 169.0044 00.00897087 06
# Worst residual: 60.56 km
# MJD 57127.000000 (2015 Apr 15 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15105.49922241 .00000000 00000-0 00000-0 2 5956
2 39479 029.6077 017.2068 4699699 022.8891 168.0882 00.00906832 02
# Worst residual: 61.50 km
# MJD 57128.000000 (2015 Apr 16 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15106.49922241 .00000000 00000-0 00000-0 2 5957
2 39479 029.8849 017.3941 4828855 024.3719 166.9998 00.00915370 08
# Worst residual: 61.31 km
# MJD 57129.000000 (2015 Apr 17 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15107.49922241 .00000000 00000-0 00000-0 2 5958
2 39479 030.1431 017.5788 4945735 025.8866 165.7731 00.00922280 07
# Worst residual: 59.91 km
# MJD 57130.000000 (2015 Apr 18 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15108.49922241 .00000000 00000-0 00000-0 2 5959
2 39479 030.3747 017.7537 5047496 027.4246 164.4584 00.00927287 05
# Worst residual: 57.38 km
# MJD 57131.000000 (2015 Apr 19 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15109.49922241 .00000000 00000-0 00000-0 2 5950
2 39479 030.5746 017.9127 5132881 028.9737 163.1164 00.00930305 02
# Worst residual: 54.05 km
# MJD 57132.000000 (2015 Apr 20 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15110.49922241 .00000000 00000-0 00000-0 2 5952
2 39479 030.7408 018.0519 5202241 030.5194 161.8091 00.00931446 01
# Worst residual: 50.27 km
# MJD 57133.000000 (2015 Apr 21 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15111.49922241 .00000000 00000-0 00000-0 2 5953
2 39479 030.8748 018.1698 5257271 032.0468 160.5912 00.00930973 04
# Worst residual: 46.42 km
# MJD 57134.000000 (2015 Apr 22 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15112.49922241 .00000000 00000-0 00000-0 2 5954
2 39479 030.9800 018.2670 5300491 033.5417 159.5047 00.00929238 07
# Worst residual: 42.74 km
# MJD 57135.000000 (2015 Apr 23 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15113.49922241 .00000000 00000-0 00000-0 2 5955
2 39479 031.0614 018.3460 5334766 034.9916 158.5782 00.00926619 06
# Worst residual: 39.35 km
# MJD 57136.000000 (2015 Apr 24 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15114.49922241 .00000000 00000-0 00000-0 2 5956
2 39479 031.1242 018.4100 5362880 036.3864 157.8286 00.00923475 00
# Worst residual: 36.37 km
# MJD 57137.000000 (2015 Apr 25 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15115.49922241 .00000000 00000-0 00000-0 2 5957
2 39479 031.1736 018.4627 5387370 037.7179 157.2639 00.00920120 07
# Worst residual: 33.81 km
# MJD 57138.000000 (2015 Apr 26 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15116.49922241 .00000000 00000-0 00000-0 2 5958
2 39479 031.2140 018.5079 5410424 038.9792 156.8873 00.00916818 04
# Worst residual: 31.67 km
# MJD 57139.000000 (2015 Apr 27 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15117.49922241 .00000000 00000-0 00000-0 2 5959
2 39479 031.2495 018.5494 5433952 040.1645 156.6992 00.00913795 02
# Worst residual: 29.96 km
# MJD 57140.000000 (2015 Apr 28 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15118.49922241 .00000000 00000-0 00000-0 2 5950
2 39479 031.2836 018.5911 5459658 041.2685 156.6988 00.00911242 02
# Worst residual: 28.68 km
# MJD 57141.000000 (2015 Apr 29 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15119.49922241 .00000000 00000-0 00000-0 2 5951
2 39479 031.3194 018.6367 5489122 042.2866 156.8843 00.00909328 01
# Worst residual: 27.83 km
# MJD 57142.000000 (2015 Apr 30 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15120.49922241 .00000000 00000-0 00000-0 2 5953
2 39479 031.3597 018.6904 5523869 043.2149 157.2525 00.00908205 02
# Worst residual: 27.48 km
# MJD 57143.000000 (2015 May 1 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15121.49922241 .00000000 00000-0 00000-0 2 5954
2 39479 031.4073 018.7563 5565427 044.0508 157.7974 00.00908014 09
# Worst residual: 27.71 km
# MJD 57144.000000 (2015 May 2 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15122.49922241 .00000000 00000-0 00000-0 2 5955
2 39479 031.4646 018.8388 5615281 044.7942 158.5077 00.00908875 02
# Worst residual: 28.49 km
# MJD 57145.000000 (2015 May 3 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15123.49922241 .00000000 00000-0 00000-0 2 5956
2 39479 031.5338 018.9419 5674838 045.4482 159.3654 00.00910889 05
# Worst residual: 29.86 km
# MJD 57146.000000 (2015 May 4 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15124.49922241 .00000000 00000-0 00000-0 2 5957
2 39479 031.6165 019.0696 5745351 046.0198 160.3436 00.00914129 04
# Worst residual: 31.78 km
# MJD 57147.000000 (2015 May 5 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15125.49922241 .00000000 00000-0 00000-0 2 5958
2 39479 031.7141 019.2252 5827809 046.5199 161.4065 00.00918635 00
# Worst residual: 34.23 km
# MJD 57148.000000 (2015 May 6 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15126.49922241 .00000000 00000-0 00000-0 2 5959
2 39479 031.8272 019.4112 5922827 046.9629 162.5111 00.00924408 00
# Worst residual: 37.06 km
# MJD 57149.000000 (2015 May 7 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15127.49922241 .00000000 00000-0 00000-0 2 5950
2 39479 031.9559 019.6288 6030485 047.3652 163.6100 00.00931401 08
# Worst residual: 40.13 km
# MJD 57150.000000 (2015 May 8 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15128.49922241 .00000000 00000-0 00000-0 2 5951
2 39479 032.0989 019.8770 6150184 047.7444 164.6554 00.00939514 04
# Worst residual: 43.23 km
# MJD 57151.000000 (2015 May 9 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15129.49922241 .00000000 00000-0 00000-0 2 5952
2 39479 032.2539 020.1527 6280562 048.1180 165.6013 00.00948585 07
# Worst residual: 46.12 km
# MJD 57152.000000 (2015 May 10 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15130.49922241 .00000000 00000-0 00000-0 2 5954
2 39479 032.4172 020.4496 6419447 048.5033 166.4063 00.00958386 01
# Worst residual: 48.57 km
# MJD 57153.000000 (2015 May 11 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15131.49922241 .00000000 00000-0 00000-0 2 5955
2 39479 032.5834 020.7583 6563968 048.9165 167.0356 00.00968628 07
# Worst residual: 50.12 km
# MJD 57154.000000 (2015 May 12 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15132.49922241 .00000000 00000-0 00000-0 2 5956
2 39479 032.7459 021.0661 6710665 049.3729 167.4634 00.00978969 04
# Worst residual: 51.18 km
# MJD 57155.000000 (2015 May 13 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15133.49922241 .00000000 00000-0 00000-0 2 5957
2 39479 032.8967 021.3577 6855965 049.8847 167.6796 00.00989053 04
# Worst residual: 50.63 km
# MJD 57156.000000 (2015 May 14 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15134.49922241 .00000000 00000-0 00000-0 2 5958
2 39479 033.0271 021.6147 6995871 050.4646 167.6826 00.00998488 03
# Worst residual: 49.29 km
# MJD 57157.000000 (2015 May 15 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15135.49922241 .00000000 00000-0 00000-0 2 5959
2 39479 033.1284 021.8187 7126500 051.1238 167.4809 00.01006883 04
# Worst residual: 46.87 km
# MJD 57158.000000 (2015 May 16 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15136.49922241 .00000000 00000-0 00000-0 2 5950
2 39479 033.1935 021.9530 7245142 051.8657 167.1139 00.01013980 05
# Worst residual: 47.57 km
# MJD 57159.000000 (2015 May 17 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15137.49922241 .00000000 00000-0 00000-0 2 5951
2 39479 033.2181 022.0049 7349801 052.6904 166.6280 00.01019590 01
# Worst residual: 50.14 km
# MJD 57160.000000 (2015 May 18 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15138.49922241 .00000000 00000-0 00000-0 2 5952
2 39479 033.2009 021.9672 7439526 053.5933 166.0779 00.01023656 01
# Worst residual: 51.78 km
# MJD 57161.000000 (2015 May 19 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15139.49922241 .00000000 00000-0 00000-0 2 5953
2 39479 033.1446 021.8403 7514492 054.5647 165.5185 00.01026232 03
# Worst residual: 52.49 km
# MJD 57162.000000 (2015 May 20 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15140.49922241 .00000000 00000-0 00000-0 2 5955
2 39479 033.0545 021.6298 7575729 055.5917 164.9994 00.01027469 07
# Worst residual: 52.48 km
# MJD 57163.000000 (2015 May 21 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15141.49922241 .00000000 00000-0 00000-0 2 5956
2 39479 032.9378 021.3464 7624834 056.6595 164.5605 00.01027577 02
# Worst residual: 51.73 km
# MJD 57164.000000 (2015 May 22 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15142.49922241 .00000000 00000-0 00000-0 2 5957
2 39479 032.8365 021.0916 7668806 057.6884 164.1585 00.01027162 08
# Worst residual: 50.79 km
# MJD 57165.000000 (2015 May 23 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15143.49922241 .00000000 00000-0 00000-0 2 5958
2 39479 032.6541 020.6122 7694164 058.8585 164.0289 00.01025343 02
# Worst residual: 49.34 km
# MJD 57166.000000 (2015 May 24 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15144.49922241 .00000000 00000-0 00000-0 2 5959
2 39479 032.5006 020.1878 7718118 059.9628 163.9673 00.01023450 08
# Worst residual: 47.62 km
# MJD 57167.000000 (2015 May 25 0:00)
Gaia = 2013-074A = NORAD 39479
1 39479U 13074A 15145.49922241 .00000000 00000-0 00000-0 2 5950
2 39479 032.3466 019.7414 7737199 061.0546 164.0524 00.01021305 03
# Worst residual: 45.71 km
# MJD 57168.000000 (2015 May 26 0:00)