forked from Stellarium/stellarium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathssystem_minor.ini
5390 lines (5112 loc) · 203 KB
/
ssystem_minor.ini
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
# ssystem_minor.ini new in Stellarium 0.16, with additions for SoCiS2016.
# Some clean-up can be done when processing this file for V0.20.
# - NEW split ssystem.ini into ssystem_major.ini (planets and moons) available in program folder from ssystem_minor.ini in user data directory.
# - all occurrences of tex_halo (not used as of 0.15 and earlier; already removed.)
# - all occurrences of texture=nomap.png are redundant (now simply loaded as default)
# - all occurrences of parent=Sun (default when loading). Keep parent=none for sun.
# - lighting=(true|false) will be ignored (processed like previous "true")
# - color=1.0,1.0,1.0 (now loaded as default; This influences the halo color and should always have at least one component 1.0.)
# Default values in the loader, to be removed from ssystem_*.ini:
# - coord_func=kepler_orbit|comet_orbit|ell_orbit (these are now the same)
# - hidden=false
# - halo=true (changed from false: false only SSobserver, EarthObserver and Sun.)
# - albedo=0.25
# - roughness=0.90
# - texmap=nomap.png
# - parent=Sun
# - outgas_intensity=0.10 (comets only)
# - outgas_falloff=0.10 (comets only)
# - dust_widthfactor=1.50 (comets only)
# - dust_lengthfactor=0.4 (comets only)
# - dust_brightnessfactor=1.5 (comets only)
# Further keys to get rid of:
# - orbit_visualization_period: Objects on Kepler orbits compute that themselves.
# From 0.20.0 on, coord_func defaults to kepler_orbit which replaces both ell_orbit and comet_orbit entries.
# For compatibility reasons, we must keep coord_func=comet_orbit in ssystem_minor.ini
# Source for discovery circumstances:
# - Planet and Satellite Names and Discoverers: https://planetarynames.wr.usgs.gov/Page/Planets
# - Small-Body Database Lookup: https://ssd.jpl.nasa.gov/tools/sbdb_lookup.html#/
# - Discovery Circumstances: Numbered Minor Planets: https://minorplanetcenter.net/iau/lists/NumberedMPs.html
# 23.3: We must find a final unambiguous solution for object names in the program.
# - Periodic numbered comets must provide perihel year in the name, like "1P/Halley (1986)"
# - All other comets must be named like "iau_designation (discoverernames)"
# - In the file here, comet 'name' entries without / or ( in the string are understood as discoverer names and are attached in brackets to iau_designation to form the name used in the program.
# It should not make a difference to specify name directly in the final form "iau_designation (discoverernames)", in which case the iau_designation is a redundant piece of information.
# The name entry for minor planets is optional, names for Minor Planets should be created during loading as:
# "(number) name" with iau_designation used in the extra names in infostring, "(number) iau_designation" or "iau_designation (name)" where a name is given, or just "iau_designation".
[1014291998vf31]
absolute_magnitude = 17.2
albedo = 0.15
iau_designation = 1998 VF31
minor_planet_number = 101429
orbit_ArgOfPericenter = 310.52582
orbit_AscendingNode = 221.29334
orbit_Eccentricity = 0.1004626
orbit_Epoch = 2459600.5
orbit_Inclination = 31.29525
orbit_MeanAnomaly = 13.78565
orbit_MeanMotion = 0.5237628
orbit_SemiMajorAxis = 1.5242152
radius = 2
slope_parameter = 0.15
type = asteroid
[101955bennu]
absolute_magnitude = 20.19
albedo = 0.046
color_index_bv = 0.64
discoverer = LINEAR
discovery = 1999-09-11
iau_designation = 1999 RQ36
minor_planet_number = 101955
name = Bennu
orbit_ArgOfPericenter = 66.3366
orbit_AscendingNode = 1.99729
orbit_Eccentricity = 0.2037192
orbit_Epoch = 2460000.5
orbit_Inclination = 6.03387
orbit_MeanAnomaly = 162.57657
orbit_MeanMotion = 0.82489482
orbit_SemiMajorAxis = 1.1259964
radius = 0.246
slope_parameter = -0.08
spec_b = B
tex_map = bennu.png
type = asteroid
[103phartley(2023)]
absolute_magnitude = 8.5
discoverer = M. Hartley
discovery = 1986-03-15
discovery_code = 1986c
iau_designation = P/1986 E2
name = 103P/Hartley (2023)
orbit_ArgOfPericenter = 181.2999
orbit_AscendingNode = 219.7496
orbit_Eccentricity = 0.693771
orbit_Epoch = 2460300.5
orbit_Inclination = 13.6107
orbit_PericenterDistance = 1.064086
orbit_TimeAtPericenter = 2460230.0101
orbit_good = 1000
perihelion_code = 1985 V
ref = MPEC 2023-Y70
slope_parameter = 8
type = comet
[120347salacia]
absolute_magnitude = 4.1
albedo = 0.15
discoverer = H.G. Roe, M.E. Brown, K.M. Barkume
discovery = 2004-09-22
iau_designation = 2004 SB60
minor_planet_number = 120347
name = Salacia
orbit_ArgOfPericenter = 312.88349
orbit_AscendingNode = 280.0902
orbit_Eccentricity = 0.100911
orbit_Epoch = 2460000.5
orbit_Inclination = 23.92577
orbit_MeanAnomaly = 126.33466
orbit_MeanMotion = 0.00357559
orbit_SemiMajorAxis = 42.3549528
radius = 496
type = cubewano
[1215141999uj7]
absolute_magnitude = 17
albedo = 0.053
discoverer = LINEAR
discovery = 1999-10-30
iau_designation = 1999 UJ7
minor_planet_number = 121514
orbit_ArgOfPericenter = 48.28693
orbit_AscendingNode = 347.34929
orbit_Eccentricity = 0.0392635
orbit_Epoch = 2459600.5
orbit_Inclination = 16.75
orbit_MeanAnomaly = 301.99933
orbit_MeanMotion = 0.52358254
orbit_SemiMajorAxis = 1.524565
radius = 2
type = asteroid
[121pshoemakerholt(2023)]
absolute_magnitude = 6.5
discoverer = C.S. Shoemaker, E.M. Shoemaker, H.E. Holt
discovery = 1989-03-09
discovery_code = 1989j
iau_designation = P/1989 E2
name = 121P/Shoemaker-Holt (2023)
orbit_ArgOfPericenter = 11.7155
orbit_AscendingNode = 94.1131
orbit_Eccentricity = 0.186431
orbit_Epoch = 2460300.5
orbit_Inclination = 20.1633
orbit_PericenterDistance = 3.730403
orbit_TimeAtPericenter = 2460124.6144
orbit_good = 1000
perihelion_code = 1988 XI
ref = MPEC 2023-Y70
slope_parameter = 8
type = comet
[125pspacewatch(2024)]
absolute_magnitude = 13
discoverer = T. Gehrels
discovery = 1991-09-08
discovery_code = 1991x
iau_designation = P/1991 R2
name = 125P/Spacewatch (2024)
orbit_ArgOfPericenter = 87.1411
orbit_AscendingNode = 153.1517
orbit_Eccentricity = 0.512127
orbit_Epoch = 2460300.5
orbit_Inclination = 9.9849
orbit_PericenterDistance = 1.526684
orbit_TimeAtPericenter = 2460376.7983
orbit_good = 1000
perihelion_code = 1990 XXIX
ref = MPEC 2023-XP6
slope_parameter = 6
type = comet
[126piras(2023)]
absolute_magnitude = 6
discovery = 1983-06-28
discovery_code = 1983j
iau_designation = P/1983 M1
name = 126P/IRAS (2023)
orbit_ArgOfPericenter = 356.5864
orbit_AscendingNode = 357.8661
orbit_Eccentricity = 0.696518
orbit_Epoch = 2460300.5
orbit_Inclination = 45.8711
orbit_PericenterDistance = 1.710435
orbit_TimeAtPericenter = 2460130.8042
orbit_good = 1000
perihelion_code = 1983 XIV
ref = MPEC 2023-Y70
slope_parameter = 8
type = comet
[12pponsbrooks(2024)]
absolute_magnitude = 5
discoverer = J.L. Pons
discovery = 1812-07-21
iau_designation = P/1812 O1
name = 12P/Pons-Brooks (2024)
orbit_ArgOfPericenter = 198.9904
orbit_AscendingNode = 255.8567
orbit_Eccentricity = 0.954588
orbit_Epoch = 2460300.5
orbit_Inclination = 74.1912
orbit_PericenterDistance = 0.780776
orbit_TimeAtPericenter = 2460421.6245
orbit_good = 1000
perihelion_code = 1812
ref = MPEC 2023-XP6
slope_parameter = 6
type = comet
[130pmcnaughthughes(2024)]
absolute_magnitude = 10
discoverer = R.H. McNaught, S.M. Hughes
discovery = 1991-09-30
discovery_code = 1991y
iau_designation = P/1991 S1
name = 130P/McNaught-Hughes (2024)
orbit_ArgOfPericenter = 246.1238
orbit_AscendingNode = 70.1786
orbit_Eccentricity = 0.460915
orbit_Epoch = 2460300.5
orbit_Inclination = 6.0636
orbit_PericenterDistance = 1.822993
orbit_TimeAtPericenter = 2460415.3732
orbit_good = 1000
perihelion_code = 1991 IX
ref = MPEC 2023-M14
slope_parameter = 6
type = comet
[133pelstpizarro(2024)]
absolute_magnitude = 15.4
name = 133P/Elst-Pizarro (2024)
orbit_ArgOfPericenter = 131.917
orbit_AscendingNode = 160.1025
orbit_Eccentricity = 0.156116
orbit_Epoch = 2460300.5
orbit_Inclination = 1.3897
orbit_PericenterDistance = 2.670698
orbit_TimeAtPericenter = 2460440.8287
orbit_good = 1000
ref = MPC 94676
slope_parameter = 2
type = comet
[136108haumea]
absolute_magnitude = 0.2
albedo = 0.73
discoverer = Sierra Nevada
discovery = 2003-03-07
iau_designation = 2003 EL61
minor_planet_number = 136108
name = Haumea
orbit_ArgOfPericenter = 240.42237
orbit_AscendingNode = 122.03105
orbit_Eccentricity = 0.2000299
orbit_Epoch = 2460000.5
orbit_Inclination = 28.21037
orbit_MeanAnomaly = 219.4927
orbit_MeanMotion = 0.00350666
orbit_SemiMajorAxis = 42.908224
radius = 3130
tex_map = haumea.png
type = dwarf planet
[136199eris]
absolute_magnitude = -1.1
albedo = 0.689
discoverer = M.E. Brown, C.A. Trujillo, D.L. Rabinowitz
discovery = 2003-10-21
iau_designation = 2003 UB313
minor_planet_number = 136199
name = Eris
orbit_ArgOfPericenter = 150.86722
orbit_AscendingNode = 36.07712
orbit_Eccentricity = 0.4323162
orbit_Epoch = 2460200.5
orbit_Inclination = 43.74508
orbit_MeanAnomaly = 209.40562
orbit_MeanMotion = 0.00175168
orbit_SemiMajorAxis = 68.1551553
radius = 1300
rot_periode = 8
type = dwarf planet
[136472makemake]
absolute_magnitude = -0.1
albedo = 0.78
discoverer = M.E. Brown, C.A. Trujillo, D.L. Rabinowitz
discovery = 2005-03-31
iau_designation = 2005 FY9
minor_planet_number = 136472
name = Makemake
orbit_ArgOfPericenter = 295.82384
orbit_AscendingNode = 79.36116
orbit_Eccentricity = 0.1661306
orbit_Epoch = 2460000.5
orbit_Inclination = 29.01844
orbit_MeanAnomaly = 167.57369
orbit_MeanMotion = 0.0032364
orbit_SemiMajorAxis = 45.2648814
radius = 1400
type = dwarf planet
[13polbers(2024)]
absolute_magnitude = 5
discoverer = H.W.M. Olbers
discovery = 1815-03-06
iau_designation = P/1815 E1
name = 13P/Olbers (2024)
orbit_ArgOfPericenter = 64.408
orbit_AscendingNode = 85.854
orbit_Eccentricity = 0.930489
orbit_Epoch = 2460300.5
orbit_Inclination = 44.6568
orbit_PericenterDistance = 1.175462
orbit_TimeAtPericenter = 2460491.5343
orbit_good = 1000
perihelion_code = 1815
ref = MPEC 2023-Y70
slope_parameter = 6
type = comet
[144pkushida(2024)]
absolute_magnitude = 8.5
discoverer = Y. Kushida
discovery = 1994-01-08
discovery_code = 1994a
iau_designation = P/1994 A1
name = 144P/Kushida (2024)
orbit_ArgOfPericenter = 216.3195
orbit_AscendingNode = 242.9254
orbit_Eccentricity = 0.634931
orbit_Epoch = 2460300.5
orbit_Inclination = 3.9319
orbit_PericenterDistance = 1.398861
orbit_TimeAtPericenter = 2460335.268
orbit_good = 1000
perihelion_code = 1993 XX
ref = MPEC 2023-Y70
slope_parameter = 8
type = comet
[146pshoemakerlinear(2024)]
absolute_magnitude = 15
discoverer = C.S. Shoemaker, E.M. Shoemaker
discovery = 1984-11-21
discovery_code = 1984u
iau_designation = P/1984 W1
name = 146P/Shoemaker-LINEAR (2024)
orbit_ArgOfPericenter = 317.0178
orbit_AscendingNode = 53.4201
orbit_Eccentricity = 0.64746
orbit_Epoch = 2460300.5
orbit_Inclination = 23.1172
orbit_PericenterDistance = 1.419588
orbit_TimeAtPericenter = 2460527.9789
orbit_good = 1000
perihelion_code = 1984 XVIII
ref = MPC100284
slope_parameter = 4
type = comet
[147pkushidamuramatsu(2023)]
absolute_magnitude = 14
discoverer = Y. Kushida, O. Muramatsu
discovery = 1993-12-08
discovery_code = 1993t
iau_designation = P/1993 X1
name = 147P/Kushida-Muramatsu (2023)
orbit_ArgOfPericenter = 348.1079
orbit_AscendingNode = 92.1161
orbit_Eccentricity = 0.212838
orbit_Epoch = 2460300.5
orbit_Inclination = 2.2912
orbit_PericenterDistance = 3.158591
orbit_TimeAtPericenter = 2460285.5927
orbit_good = 1000
perihelion_code = 1993 XIX
ref = MPC 75720
slope_parameter = 4
type = comet
[150ploneos(2024)]
absolute_magnitude = 13.5
discovery = 2000-11-25
iau_designation = P/2000 WT168
name = 150P/LONEOS (2024)
orbit_ArgOfPericenter = 246.1078
orbit_AscendingNode = 272.0595
orbit_Eccentricity = 0.548911
orbit_Epoch = 2460300.5
orbit_Inclination = 18.5474
orbit_PericenterDistance = 1.745606
orbit_TimeAtPericenter = 2460381.9537
orbit_good = 1000
ref = MPEC 2023-Y70
slope_parameter = 4
type = comet
[154pbrewington(2024)]
absolute_magnitude = 2.5
discoverer = H.J. Brewington
discovery = 1992-08-28
discovery_code = 1992p
iau_designation = P/1992 Q1
name = 154P/Brewington (2024)
orbit_ArgOfPericenter = 47.96
orbit_AscendingNode = 343.0166
orbit_Eccentricity = 0.67616
orbit_Epoch = 2460300.5
orbit_Inclination = 17.634
orbit_PericenterDistance = 1.552947
orbit_TimeAtPericenter = 2460472.9511
orbit_good = 1000
perihelion_code = 1992 XIV
ref = MPEC 2022-K19
slope_parameter = 12
type = comet
[1566icarus]
absolute_magnitude = 16.9
albedo = 0.51
color_index_bv = 0.774
discoverer = W. Baade
discovery = 1949-06-27
iau_designation = 1949 MA
minor_planet_number = 1566
name = Icarus
orbit_ArgOfPericenter = 31.4379
orbit_AscendingNode = 87.95271
orbit_Eccentricity = 0.8268901
orbit_Epoch = 2460200.5
orbit_Inclination = 22.80103
orbit_MeanAnomaly = 168.64935
orbit_MeanMotion = 0.88049856
orbit_SemiMajorAxis = 1.0780782
radius = 2
type = asteroid
[162173ryugu]
absolute_magnitude = 19.3
albedo = 0.04
discoverer = LINEAR
discovery = 1999-05-10
iau_designation = 1999 JU3
minor_planet_number = 162173
name = Ryugu
orbit_ArgOfPericenter = 211.60691
orbit_AscendingNode = 251.30131
orbit_Eccentricity = 0.1910898
orbit_Epoch = 2460000.5
orbit_Inclination = 5.86618
orbit_MeanAnomaly = 232.3502
orbit_MeanMotion = 0.75833785
orbit_SemiMajorAxis = 1.1909519
radius = 0.435
slope_parameter = 0.15
spec_b = Cg
type = asteroid
[1642072004gu9]
absolute_magnitude = 21.1
albedo = 0.15
discoverer = LINEAR
discovery = 2004-04-13
iau_designation = 2004 GU9
minor_planet_number = 164207
orbit_ArgOfPericenter = 279.5931
orbit_AscendingNode = 38.45728
orbit_Eccentricity = 0.1359726
orbit_Epoch = 2460000.5
orbit_Inclination = 13.65146
orbit_MeanAnomaly = 193.22732
orbit_MeanMotion = 0.98378983
orbit_SemiMajorAxis = 1.0012315
radius = 1
type = asteroid
[170pchristensen(2023)]
absolute_magnitude = 12
discoverer = E. Christensen
discovery = 2005-06-17
iau_designation = P/2005 M1
name = 170P/Christensen (2023)
orbit_ArgOfPericenter = 225.2467
orbit_AscendingNode = 142.7688
orbit_Eccentricity = 0.305919
orbit_Epoch = 2460300.5
orbit_Inclination = 10.1106
orbit_PericenterDistance = 2.922252
orbit_TimeAtPericenter = 2460052.8684
orbit_good = 1000
ref = MPEC 2023-Y70
slope_parameter = 4
type = comet
[174567varda]
absolute_magnitude = 3.4
albedo = 0.15
discoverer = J.A. Larsen
discovery = 2003-06-21
iau_designation = 2003 MW12
minor_planet_number = 174567
name = Varda
orbit_ArgOfPericenter = 182.93076
orbit_AscendingNode = 184.29666
orbit_Eccentricity = 0.1456385
orbit_Epoch = 2460000.5
orbit_Inclination = 21.521
orbit_MeanAnomaly = 275.59189
orbit_MeanMotion = 0.00318294
orbit_SemiMajorAxis = 45.7702913
radius = 717
type = cubewano
[1809prometheus]
absolute_magnitude = 11.6
albedo = 0.126
discoverer = C.J. van Houten, I. van Houten-Groeneveld, T. Gehrels
discovery = 1960-09-24
iau_designation = 2522 P-L
minor_planet_number = 1809
name = Prometheus
orbit_ArgOfPericenter = 230.9368
orbit_AscendingNode = 99.44245
orbit_Eccentricity = 0.0996359
orbit_Epoch = 2460200.5
orbit_Inclination = 3.25876
orbit_MeanAnomaly = 236.91327
orbit_MeanMotion = 0.19668886
orbit_SemiMajorAxis = 2.9283043
radius = 7.106
type = asteroid
[180pneat(2023)]
absolute_magnitude = 11
discovery = 2001-05-20
iau_designation = P/2001 K1
name = 180P/NEAT (2023)
orbit_ArgOfPericenter = 94.6549
orbit_AscendingNode = 84.5608
orbit_Eccentricity = 0.353531
orbit_Epoch = 2460300.5
orbit_Inclination = 16.8606
orbit_PericenterDistance = 2.500758
orbit_TimeAtPericenter = 2460137.6366
orbit_good = 1000
ref = MPEC 2023-RF3
slope_parameter = 4
type = comet
[1810epimetheus]
absolute_magnitude = 12.6
albedo = 0.274
discoverer = C.J. van Houten, I. van Houten-Groeneveld, T. Gehrels
discovery = 1960-09-24
iau_designation = 4196 P-L
minor_planet_number = 1810
name = Epimetheus
orbit_ArgOfPericenter = 203.96744
orbit_AscendingNode = 254.08304
orbit_Eccentricity = 0.0926774
orbit_Epoch = 2460200.5
orbit_Inclination = 4.03237
orbit_MeanAnomaly = 272.29833
orbit_MeanMotion = 0.29716405
orbit_SemiMajorAxis = 2.2240192
radius = 3.8345
type = asteroid
[185ppetriew(2023)]
absolute_magnitude = 15
discoverer = V.A. Petriew
discovery = 2001-08-18
iau_designation = P/2001 Q2
name = 185P/Petriew (2023)
orbit_ArgOfPericenter = 181.8904
orbit_AscendingNode = 214.1145
orbit_Eccentricity = 0.699718
orbit_Epoch = 2460300.5
orbit_Inclination = 14.0146
orbit_PericenterDistance = 0.930368
orbit_TimeAtPericenter = 2460138.3962
orbit_good = 995
ref = MPEC 2023-Y70
slope_parameter = 4
type = comet
[1864daedalus]
absolute_magnitude = 14.7
albedo = 0.273
color_index_bv = 0.830
discoverer = T. Gehrels
discovery = 1971-03-24
iau_designation = 1971 FA
minor_planet_number = 1864
name = Daedalus
orbit_ArgOfPericenter = 325.66746
orbit_AscendingNode = 6.61278
orbit_Eccentricity = 0.6144031
orbit_Epoch = 2460200.5
orbit_Inclination = 22.21619
orbit_MeanAnomaly = 171.01821
orbit_MeanMotion = 0.55819465
orbit_SemiMajorAxis = 1.4608723
radius = 1.85
spec_b = Sr
spec_t = SQ
type = asteroid
[1866sisyphus]
absolute_magnitude = 12.4
albedo = 0.15
discoverer = P. Wild
discovery = 1972-12-05
iau_designation = 1972 XA
minor_planet_number = 1866
name = Sisyphus
orbit_ArgOfPericenter = 293.10993
orbit_AscendingNode = 63.45727
orbit_Eccentricity = 0.5381953
orbit_Epoch = 2460200.5
orbit_Inclination = 41.20649
orbit_MeanAnomaly = 198.08569
orbit_MeanMotion = 0.37819946
orbit_SemiMajorAxis = 1.8937477
radius = 4.24
spec_b = S
type = asteroid
[18dperrinemrkos(2024)]
absolute_magnitude = 9
discoverer = Ch.D. Perrine
discovery = 1896-12-09
discovery_code = 1896g
iau_designation = D/1896 X1
name = 18D/Perrine-Mrkos (2024)
orbit_ArgOfPericenter = 238.225
orbit_AscendingNode = 158.471
orbit_Eccentricity = 0.58948
orbit_Epoch = 2460300.5
orbit_Inclination = 17.656
orbit_PericenterDistance = 1.59365
orbit_TimeAtPericenter = 2460551.711
orbit_good = 1000
perihelion_code = 1896 VII
ref = 19, 80
slope_parameter = 4
type = comet
[190pmueller(2024)]
absolute_magnitude = 13
discoverer = J. Mueller
discovery = 1998-10-21
iau_designation = P/1998 U2
name = 190P/Mueller (2024)
orbit_ArgOfPericenter = 50.4305
orbit_AscendingNode = 335.5648
orbit_Eccentricity = 0.522254
orbit_Epoch = 2460300.5
orbit_Inclination = 2.1745
orbit_PericenterDistance = 2.019889
orbit_TimeAtPericenter = 2460668.576
orbit_good = 1000
ref = MPEC 2020-K19
slope_parameter = 4
type = comet
[192pshoemakerlevy(2024)]
absolute_magnitude = 15
discoverer = C.S. Shoemaker, E.M. Shoemaker, D.H. Levy
discovery = 1990-11-15
discovery_code = 1990o
iau_designation = P/1990 V1
name = 192P/Shoemaker-Levy (2024)
orbit_ArgOfPericenter = 313.0412
orbit_AscendingNode = 51.6554
orbit_Eccentricity = 0.773321
orbit_Epoch = 2460300.5
orbit_Inclination = 24.5849
orbit_PericenterDistance = 1.464518
orbit_TimeAtPericenter = 2460454.8656
orbit_good = 1000
perihelion_code = 1990 XV
ref = MPC 75724
slope_parameter = 4
type = comet
[194plinear(2024)]
absolute_magnitude = 16
discovery = 2000-01-27
iau_designation = P/2000 B3
name = 194P/LINEAR (2024)
orbit_ArgOfPericenter = 128.561
orbit_AscendingNode = 349.5252
orbit_Eccentricity = 0.563241
orbit_Epoch = 2460300.5
orbit_Inclination = 11.8061
orbit_PericenterDistance = 1.79957
orbit_TimeAtPericenter = 2460344.7196
orbit_good = 1000
ref = MPEC 2023-W26
slope_parameter = 4
type = comet
[199pshoemaker(2023)]
absolute_magnitude = 10
discoverer = C.S. Shoemaker, E.M. Shoemaker
discovery = 1994-05
discovery_code = 1994k
iau_designation = P/1994 J3
name = 199P/Shoemaker (2023)
orbit_ArgOfPericenter = 191.7721
orbit_AscendingNode = 92.3486
orbit_Eccentricity = 0.504958
orbit_Epoch = 2460300.5
orbit_Inclination = 24.9387
orbit_PericenterDistance = 2.910388
orbit_TimeAtPericenter = 2460164.0725
orbit_good = 1000
perihelion_code = 1994 XXVIII
ref = MPEC 2023-W26
slope_parameter = 4
type = comet
[1I_Oumuamua]
absolute_magnitude = 22.08
albedo = 0.07
discovery_code = A/2017 U1
iau_designation = 1I/2017 U1
name = `Oumuamua
orbit_ArgOfPericenter = 241.43
orbit_AscendingNode = 24.6056
orbit_Eccentricity = 1.1956
orbit_Epoch = 2458080.5
orbit_Inclination = 122.545
orbit_PericenterDistance = 0.25383
orbit_TimeAtPericenter = 2458005.961
orbit_good = 3600
radius = 0.102
type = interstellar object
[1P_Halley_1982U1]
absolute_magnitude = 4.3
albedo = 0.1
discoverer = A. Storer
discovery = 1682-08-24
discovery_code = 1982i
dust_brightnessfactor = 1.5
dust_lengthfactor = 0.4
dust_widthfactor = 1.5
iau_designation = P/1982 U1
model = 1682q1halley_MLfix.obj
name = 1P/Halley (1986)
orbit_ArgOfPericenter = 111.86566
orbit_AscendingNode = 58.86013
orbit_Eccentricity = 0.9672769
orbit_Epoch = 2446480.500000
orbit_Inclination = 162.24217
orbit_PericenterDistance = 0.5871036
orbit_TimeAtPericenter = 2446470.95895
orbit_good = 4000
perihelion_code = 1986III
radius = 5
slope_parameter = 4.9
type = comet
[1ceres]
absolute_magnitude = 3.4
albedo = 0.090
color_index_bv = 0.713
discoverer = G. Piazzi
discovery = 1801-01-01
minor_planet_number = 1
name = Ceres
orbit_ArgOfPericenter = 73.42179
orbit_AscendingNode = 80.25496
orbit_Eccentricity = 0.0789126
orbit_Epoch = 2460200.5
orbit_Inclination = 10.58688
orbit_MeanAnomaly = 60.07879
orbit_MeanMotion = 0.2141068
orbit_SemiMajorAxis = 2.7672544
radius = 469.7
rot_pole_de = 66.764
rot_pole_ra = 291.418
rot_pole_w0 = 170.650
rot_pole_w1 = 952.1532
slope_parameter = 0.12
spec_b = C
spec_t = G
tex_map = ceres.png
type = dwarf planet
[20000varuna]
absolute_magnitude = 3.6
albedo = 0.07
discoverer = Spacewatch at Kitt Peak
discovery = 2000-11-28
iau_designation = 2000 WR106
minor_planet_number = 20000
name = Varuna
orbit_ArgOfPericenter = 267.25903
orbit_AscendingNode = 97.28186
orbit_Eccentricity = 0.0573403
orbit_Epoch = 2460000.5
orbit_Inclination = 17.17282
orbit_MeanAnomaly = 117.26818
orbit_MeanMotion = 0.00351068
orbit_SemiMajorAxis = 42.8754681
radius = 450
type = cubewano
[2002aa29]
absolute_magnitude = 24.1
albedo = 0.15
discoverer = LINEAR
discovery = 2002-01-09
iau_designation = 2002 AA29
orbit_ArgOfPericenter = 101.65075
orbit_AscendingNode = 106.35763
orbit_Eccentricity = 0.0130153
orbit_Epoch = 2460000.5
orbit_Inclination = 10.74771
orbit_MeanAnomaly = 22.00333
orbit_MeanMotion = 0.99672719
orbit_SemiMajorAxis = 0.9925487
radius = 1
type = asteroid
[2003yn107]
absolute_magnitude = 26.5
albedo = 0.15
discoverer = LINEAR
discovery = 2003-12-20
iau_designation = 2003 YN107
orbit_ArgOfPericenter = 87.8282
orbit_AscendingNode = 264.37892
orbit_Eccentricity = 0.0138833
orbit_Epoch = 2460000.5
orbit_Inclination = 4.32079
orbit_MeanAnomaly = 263.35563
orbit_MeanMotion = 1.00247072
orbit_SemiMajorAxis = 0.988754
radius = 1
type = asteroid
[2006rh120]
absolute_magnitude = 29.5
albedo = 0.15
discoverer = CSS
discovery = 2006-09-14
iau_designation = 2006 RH120
orbit_ArgOfPericenter = 10.16896
orbit_AscendingNode = 51.19863
orbit_Eccentricity = 0.0244986
orbit_Epoch = 2460000.5
orbit_Inclination = 0.59459
orbit_MeanAnomaly = 187.49544
orbit_MeanMotion = 0.93844364
orbit_SemiMajorAxis = 1.0332306
radius = 1
type = asteroid
[2010tk7]
absolute_magnitude = 20.8
albedo = 0.059
discoverer = WISE
discovery = 2010-10-01
iau_designation = 2010 TK7
orbit_ArgOfPericenter = 46.0501
orbit_AscendingNode = 96.43421
orbit_Eccentricity = 0.1903436
orbit_Epoch = 2460000.5
orbit_Inclination = 20.90083
orbit_MeanAnomaly = 39.33551
orbit_MeanMotion = 0.98733146
orbit_SemiMajorAxis = 0.9988357
radius = 1
type = asteroid
[2013lx28]
absolute_magnitude = 21.8
albedo = 0.15
discoverer = Pan-STARRS 1
discovery = 2013-06-12
iau_designation = 2013 LX28
orbit_ArgOfPericenter = 345.77051
orbit_AscendingNode = 76.6659
orbit_Eccentricity = 0.4519494
orbit_Epoch = 2460000.5
orbit_Inclination = 49.97757
orbit_MeanAnomaly = 97.88416
orbit_MeanMotion = 0.98320925
orbit_SemiMajorAxis = 1.0016256
radius = 1
type = asteroid
[202pscotti(2024)]
absolute_magnitude = 13.5
discoverer = J.V. Scotti
discovery = 2001-12-14
iau_designation = P/2001 X2
name = 202P/Scotti (2024)
orbit_ArgOfPericenter = 274.4682
orbit_AscendingNode = 177.3326
orbit_Eccentricity = 0.252994
orbit_Epoch = 2460300.5
orbit_Inclination = 2.1417
orbit_PericenterDistance = 3.069605
orbit_TimeAtPericenter = 2460447.8414
orbit_good = 1000
ref = MPEC 2023-XP6
slope_parameter = 4
type = comet
[207pneat(2024)]
absolute_magnitude = 16
discovery = 2001-05-11
iau_designation = P/2001 J1
name = 207P/NEAT (2024)
orbit_ArgOfPericenter = 272.9814
orbit_AscendingNode = 198.1607
orbit_Eccentricity = 0.75836
orbit_Epoch = 2460300.5
orbit_Inclination = 10.2008
orbit_PericenterDistance = 0.93822
orbit_TimeAtPericenter = 2460341.3121
orbit_good = 1000
ref = MPEC 2023-Y70
slope_parameter = 4
type = comet
[2089962003az84]
absolute_magnitude = 3.8
albedo = 0.15
discoverer = C.A. Trujillo, M.E. Brown
discovery = 2003-01-13
iau_designation = 2003 AZ84
minor_planet_number = 208996
orbit_ArgOfPericenter = 16.30383
orbit_AscendingNode = 251.94133
orbit_Eccentricity = 0.1788293
orbit_Epoch = 2460000.5
orbit_Inclination = 13.55513
orbit_MeanAnomaly = 236.76346
orbit_MeanMotion = 0.00399087
orbit_SemiMajorAxis = 39.3632784
radius = 597
type = plutino
[208pmcmillan(2024)]
absolute_magnitude = 12.5
discoverer = R.S. McMillan
discovery = 2008-10-19
iau_designation = P/2008 U1
name = 208P/McMillan (2024)
orbit_ArgOfPericenter = 310.598
orbit_AscendingNode = 36.4027
orbit_Eccentricity = 0.37395
orbit_Epoch = 2460300.5
orbit_Inclination = 4.4124
orbit_PericenterDistance = 2.528795
orbit_TimeAtPericenter = 2460546.3645
orbit_good = 1000
ref = MPEC 2022-K19
slope_parameter = 4
type = comet
[209plinear(2024)]
absolute_magnitude = 17
discovery = 2004-02-03
iau_designation = P/2004 CB
name = 209P/LINEAR (2024)
orbit_ArgOfPericenter = 152.4855
orbit_AscendingNode = 62.7691
orbit_Eccentricity = 0.673975
orbit_Epoch = 2460300.5
orbit_Inclination = 21.2822
orbit_PericenterDistance = 0.964585
orbit_TimeAtPericenter = 2460506.001
orbit_good = 929
ref = MPEC 2023-XP6
slope_parameter = 2
type = comet
[212pneat(2024)]
absolute_magnitude = 17
discovery = 2000-12
iau_designation = P/2000 YN30
name = 212P/NEAT (2024)
orbit_ArgOfPericenter = 14.0179
orbit_AscendingNode = 97.979
orbit_Eccentricity = 0.586871
orbit_Epoch = 2460300.5