forked from Stellarium/stellarium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathssystem_major.ini
2010 lines (1924 loc) · 44.7 KB
/
ssystem_major.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_major.ini compatible to Stellarium 0.16 with additions from SoCiS2016.
# Some clean-up can be done when processing this file for V0.16.
# - 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 occurences 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:
# - 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)
# - orbit_visualization_period defaults to orbit_Period
# - rot_periode defaults to orbit_Period*24, reasonable assumption for most moons.
# !! NOTE ALWAYS: rot_periode in hours, orbit_Period in days!
[adrastea]
iau_moon_number=JXV
absolute_magnitude=12.4
albedo=0.1
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Adrastea
orbit_AscendingNode=253.6924110934923
orbit_Eccentricity=0.006543120249224196
orbit_Epoch=2454619.50000
orbit_Inclination=0.06166936906340893
orbit_LongOfPericenter=249.4662007624690000
orbit_MeanLongitude=252.4809048448870000
orbit_Period=0.3023760117035458
orbit_SemiMajorAxis=129866.6459712491
# orbit_visualization_period=0.3023760117035458
parent=Jupiter
radius=10
rot_equator_ascending_node=213.7
rot_obliquity=15.5
# rot_periode=7.2570242808850992
rot_rotation_offset=309.52
rot_pole_ra=268.05
rot_pole_ra1=-0.009
rot_pole_de=64.49
rot_pole_de1=0.003
rot_pole_w0=33.29
rot_pole_w1=1206.9986602
tex_map=lune.png
type=moon
[amalthea]
iau_moon_number=JV
absolute_magnitude=7.4
albedo=0.09
color=1., 0.627, 0.492
coord_func=ell_orbit
name=Amalthea
model=j5amalthea_MLfix.obj
orbit_AscendingNode=141.5521520794674
orbit_Eccentricity=0.006175744402949701
orbit_Epoch=2454619.50000
orbit_Inclination=0.3864576103404582
orbit_LongOfPericenter=245.4222355150120000
orbit_MeanLongitude=224.7924893552550000
orbit_Period=0.5016370462116355
orbit_SemiMajorAxis=181994.8658358799
# orbit_visualization_period=0.5016370462116355
parent=Jupiter
radius=73
rot_equator_ascending_node=213.7
rot_obliquity=15.5
# rot_periode=12.039289109079252
rot_rotation_offset=235.50
rot_pole_ra=268.05
rot_pole_ra1=-0.009
rot_pole_de=64.49
rot_pole_de1=0.003
rot_pole_w0=231.67
rot_pole_w1=722.6314560
tex_map=amalthea.png
type=moon
[ananke]
iau_moon_number=JXII
absolute_magnitude=12.2
albedo=0.04
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Ananke
orbit_AscendingNode=44.39093600694746
orbit_Eccentricity=0.2167681894364261
orbit_Epoch=2454619.50000
orbit_Inclination=148.5711484137670
orbit_LongOfPericenter=140.3109688567360000
orbit_MeanLongitude=14.7478795145449000
orbit_Period=648.6406641467003
orbit_SemiMajorAxis=21600750.92227203
# orbit_visualization_period=648.6406641467003
parent=Jupiter
radius=15
rot_equator_ascending_node=213.7
rot_obliquity=15.5
# rot_periode=648.6406641467003
rot_rotation_offset=14.9
tex_map=lune.png
type=moon
[ariel]
iau_moon_number=UI
absolute_magnitude=1.45
albedo=0.39
color=1., 0.849, 0.731
coord_func=ariel_special
name=Ariel
orbit_visualization_period=2.520
parent=Uranus
radius=578.9
rot_obliquity=0.0
rot_periode=-60.4890929200618
rot_rotation_offset=162.08
rot_pole_ra=257.43
rot_pole_de=-15.10
rot_pole_w0=156.22
rot_pole_w1=-142.8356681
tex_map=ariel.png
type=moon
[atlas]
iau_moon_number=SXV
absolute_magnitude=9.5
albedo=0.5
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Atlas
orbit_AscendingNode=169.5200948744269
orbit_Eccentricity=0.005462739137823721
orbit_Epoch=2457939.5
orbit_Inclination=0.4895489386776732
orbit_LongOfPericenter=324.0749833218269
orbit_MeanLongitude=334.93621367164071
orbit_Period=0.6074527979703287
orbit_SemiMajorAxis=138323.66763259140516208977
# orbit_visualization_period=0.6074527979703287
parent=Saturn
radius=18.5
rot_equator_ascending_node=0
rot_obliquity=0
#rot_periode=0.6074527979703287 # Unknown
rot_rotation_offset=0
tex_map=lune.png
type=moon
[callisto]
iau_moon_number=JIV
absolute_magnitude=-1.05
albedo=0.17
atmosphere=1
color=1., 0.979, 0.897
coord_func=calisto_special
name=Callisto
orbit_visualization_period=16.689
parent=Jupiter
radius=2403.
rot_equator_ascending_node=160.6
rot_obliquity=0.4
rot_periode=400.5364314
rot_rotation_offset=120.80
rot_pole_ra=268.72
rot_pole_ra1=-0.009
rot_pole_de=64.83
rot_pole_de1=0.003
rot_pole_w0=259.51
rot_pole_w1=21.5710715
tex_map=callisto.png
type=moon
[calypso]
iau_moon_number=SXIV
absolute_magnitude=9.4
albedo=0.7
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Calypso
orbit_AscendingNode=172.7090481468045
orbit_Eccentricity=0.001295104663069735
orbit_Epoch=2457939.5
orbit_Inclination=0.4904914193932725
orbit_LongOfPericenter=341.3365920358861
orbit_MeanLongitude=361.31395377154122
orbit_Period=1.891649067318720
orbit_SemiMajorAxis=294972.7190716467861638466
# orbit_visualization_period=1.891649067318720
parent=Saturn
radius=15
rot_equator_ascending_node=0
rot_obliquity=0
# rot_periode=1.891649067318720 # Unknown
rot_rotation_offset=0
tex_map=lune.png
type=moon
[carme]
iau_moon_number=JXI
absolute_magnitude=11.3
albedo=0.04
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Carme
orbit_AscendingNode=157.3089190745055
orbit_Eccentricity=0.2602970868062183
orbit_Epoch=2454619.50000
orbit_Inclination=168.2000198365060
orbit_LongOfPericenter=249.8596440195790000
orbit_MeanLongitude=168.7753954572220000
orbit_Period=691.6548924754876
orbit_SemiMajorAxis=22545456.68297467
# orbit_visualization_period=691.6548924754876
parent=Jupiter
radius=15
rot_equator_ascending_node=213.7
rot_obliquity=15.5
# rot_periode=691.6548924754876
rot_rotation_offset=14.9
tex_map=lune.png
type=moon
[charon]
iau_moon_number=PI
absolute_magnitude=0.9
albedo=0.372
coord_func=ell_orbit
name=Charon
orbit_AscendingNode=93.5582
orbit_Eccentricity=0.0002
orbit_Epoch=2451545.0
orbit_Inclination=0.0048
orbit_LongOfPericenter=227.3188
orbit_MeanLongitude=320.7583
orbit_Period=-6.387246
orbit_SemiMajorAxis=19636
orbit_visualization_period=6.387246
parent=Pluto
radius=593.
rot_equator_ascending_node=287.6
rot_obliquity=1.0
rot_periode=-153.293904
rot_rotation_offset=195.62
rot_pole_de=-6.163
rot_pole_ra=132.993
rot_pole_w0=122.695
rot_pole_w1=-56.3625225
tex_map=charon.png
type=moon
[cordelia]
iau_moon_number=UVI
absolute_magnitude=11.4
albedo=0.07
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Cordelia
orbit_AscendingNode=167.7148904012911
orbit_Eccentricity=0.001333018821781869
orbit_Epoch=2457939.5
orbit_Inclination=1.705913342105055
orbit_LongOfPericenter=440.5689971423595
orbit_MeanLongitude=449.703451650034749
orbit_Period=-0.3359924013672617
orbit_SemiMajorAxis=49823.45426797616627829201
# orbit_visualization_period=0.3359924013672617
parent=Uranus
radius=13
rot_equator_ascending_node=0
rot_obliquity=0
# rot_periode=0.3359924013672617 # Unknown
rot_rotation_offset=0
tex_map=lune.png
type=moon
[cressida]
iau_moon_number=UIX
absolute_magnitude=9.5
albedo=0.07
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Cressida
orbit_AscendingNode=167.6595437537520
orbit_Eccentricity=0.001230172627215345
orbit_Epoch=2457939.5
orbit_Inclination=1.705582431401178
orbit_LongOfPericenter=485.6980669812428
orbit_MeanLongitude=843.4569449635578
orbit_Period=-0.4644183005227532
orbit_SemiMajorAxis=61823.52259021176593381433
# orbit_visualization_period=0.4644183005227532
parent=Uranus
radius=33
rot_equator_ascending_node=0
rot_obliquity=0
# rot_periode=0.4644183005227532 # Unknown
rot_rotation_offset=0
tex_map=lune.png
type=moon
[deimos]
iau_moon_number=MII
absolute_magnitude=12.89
albedo=0.08
color=1., 0.93, 0.832
coord_func=deimos_special
model=m2deimos.obj.gz
name=Deimos
orbit_visualization_period=1.263
parent=Mars
radius=6.2
rot_equator_ascending_node=186.6
rot_obliquity=0.6
rot_periode=30.29857807
rot_rotation_offset=211.4
rot_pole_ra=316.65
rot_pole_ra1=-0.108
rot_pole_de=53.52
rot_pole_de1=-0.061
rot_pole_w0=79.41
rot_pole_w1=285.1618970
tex_map=deimos.png
type=moon
[desdemona]
iau_moon_number=UX
absolute_magnitude=9.8
albedo=0.07
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Desdemona
orbit_AscendingNode=167.6759519500954
orbit_Eccentricity=0.0007928166334102272
orbit_Epoch=2457939.5
orbit_Inclination=1.703907849000125
orbit_LongOfPericenter=252.70345435111075
orbit_MeanLongitude=254.190232823062818
orbit_Period=-0.4744640424063798
orbit_SemiMajorAxis=62711.8674164425501292106
# orbit_visualization_period=0.4744640424063798
parent=Uranus
radius=29
rot_equator_ascending_node=0
rot_obliquity=0
# rot_periode=0.4744640424063798 # Unknown
rot_rotation_offset=0
tex_map=lune.png
type=moon
[despina]
iau_moon_number=NV
absolute_magnitude=7.9
albedo=0.090
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Despina
orbit_AscendingNode=16.63627320068509
orbit_Eccentricity=0.001272032273930335
orbit_Epoch=2454619.50000
orbit_Inclination=0.5113748544074094
orbit_LongOfPericenter=151.8881808
orbit_MeanLongitude=143.7191234
orbit_Period=0.3354528211477725
orbit_SemiMajorAxis=52588.64584972781
# orbit_visualization_period=0.3354528211477725
parent=Neptune
radius=74
rot_equator_ascending_node=213.7
rot_obliquity=15.5
# rot_periode=8.05086770754654
rot_rotation_offset=5.67
rot_pole_ra=299.36
rot_pole_de=43.45
rot_pole_w0=306.51
rot_pole_w1=1075.7341562
tex_map=lune.png
type=moon
[dione]
iau_moon_number=SIV
absolute_magnitude=0.8
albedo=0.6
color=1.0, 0.98, 0.966
coord_func=dione_special
name=Dione
orbit_visualization_period=2.736915
parent=Saturn
radius=560.
rot_obliquity=0.0
rot_periode=65.68597326
rot_rotation_offset=316.98
rot_pole_ra=40.66
rot_pole_ra1=-0.036
rot_pole_de=83.52
rot_pole_de1=-0.004
rot_pole_w0=357.6
rot_pole_w1=131.5349316
tex_map=dione.png
type=moon
[earth]
absolute_magnitude=-3.86
albedo=0.3
atmosphere=1
color=0.898, 0.94, 1.
coord_func=earth_special
landscape=guereins
name=Earth
oblateness=0.003352810664747481
orbit_visualization_period=365.256363004
radius=6378.1366 # IAU2009 Current Best Estimate
rot_epoch=2451545.0
rot_obliquity=-23.4392803055555555556
rot_periode=23.9344694
;rot_precession_rate=1.39639 #degrees/j.century (annual rate 50.27 arcseconds)
rot_rotation_offset=280.5
rot_pole_ra=0
rot_pole_ra1=-0.641
rot_pole_de=90
rot_pole_de1=-0.557
rot_pole_w0=190.147
rot_pole_w1=360.9856235
tex_map=earth-clouds.png
type=planet
[elara]
iau_moon_number=JVII
absolute_magnitude=10.0
albedo=0.04
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Elara
orbit_Ascendingnode=108.1879658680286
orbit_Eccentricity=0.1961747274882456
orbit_Epoch=2454619.50000
orbit_Inclination=31.98511468770062
orbit_LongOfPericenter=271.5797601368340000
orbit_MeanLongitude=172.2385623581720000
orbit_Period=258.8836449322499
orbit_SemiMajorAxis=11709431.51919092
# orbit_visualization_period=258.8836449322499
parent=Jupiter
radius=40
rot_equator_ascending_node=213.7
rot_obliquity=15.5
rot_periode=12
rot_rotation_offset=14.9
tex_map=lune.png
type=moon
[enceladus]
iau_moon_number=SII
absolute_magnitude=2.1
albedo=1.0
color=1., 0.998, 0.991
coord_func=enceladus_special
name=Enceladus
orbit_visualization_period=1.370218
parent=Saturn
radius=249.4
rot_obliquity=0.0
rot_periode=32.88523401
rot_rotation_offset=322.9
rot_pole_ra=40.66
rot_pole_ra1=-0.036
rot_pole_de=83.52
rot_pole_de1=-0.004
rot_pole_w0=6.32
rot_pole_w1=262.7318996
tex_map=enceladus.png
type=moon
[europa]
iau_moon_number=JII
absolute_magnitude=-1.41
albedo=0.67
atmosphere=1
color=1., 0.968, 0.887
coord_func=europa_special
name=Europa
orbit_visualization_period=3.551
parent=Jupiter
radius=1565.
rot_obliquity=0.0
rot_periode=85.22834590
rot_rotation_offset=54.89
rot_pole_ra=268.08
rot_pole_ra1=-0.009
rot_pole_de=64.51
rot_pole_de1=0.003
rot_pole_w0=36.022
rot_pole_w1=101.3747235
tex_map=europa.png
type=moon
[epimetheus]
iau_moon_number=SXI
absolute_magnitude=6.1
albedo=0.5
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Epimetheus
orbit_AscendingNode=169.9393025242506
orbit_Eccentricity=0.01319580173319188
orbit_Epoch=2457939.5
orbit_Inclination=0.4947301853571861
orbit_LongOfPericenter=210.5435328894826
orbit_MeanLongitude=549.356357661891
orbit_Period=0.7004004704802892
orbit_SemiMajorAxis=152096.4546105686004705258
# orbit_visualization_period=0.7004004704802892
parent=Saturn
radius=58.1
rot_equator_ascending_node=0
rot_obliquity=0
# rot_periode=0.7004004704802892
rot_rotation_offset=0
tex_map=epimetheus.png
type=moon
[galatea]
iau_moon_number=NVI
absolute_magnitude=7.6
albedo=0.079
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Galatea
orbit_AscendingNode=8.642606900770915
orbit_Eccentricity=0.0009319587984705302
orbit_Epoch=2454619.50000
orbit_Inclination=0.5752509266760514
orbit_LongOfPericenter=62.03770344
orbit_MeanLongitude=62.60684554
orbit_Period=0.4294734314535237
orbit_SemiMajorAxis=62005.26343616215
# orbit_visualization_period=0.4294734314535237
parent=Neptune
radius=79
rot_equator_ascending_node=213.7
rot_obliquity=15.5
# rot_periode=10.3073623548845688
rot_rotation_offset=88.71
rot_pole_ra=299.36
rot_pole_de=43.43
rot_pole_w0=258.09
rot_pole_w1=839.6597686
tex_map=lune.png
type=moon
[ganymede]
iau_moon_number=JIII
absolute_magnitude=-2.09
albedo=0.43
atmosphere=1
color=1., 0.962, 0.871
coord_func=ganymede_special
name=Ganymede
orbit_visualization_period=7.155
parent=Jupiter
radius=2634.
rot_equator_ascending_node=161.6
rot_obliquity=0.1
rot_periode=171.7092749
rot_rotation_offset=260.61
rot_pole_ra=268.20
rot_pole_ra1=-0.009
rot_pole_de=64.57
rot_pole_de1=0.003
rot_pole_w0=44.064
rot_pole_w1=50.3176081
tex_map=ganymede.png
type=moon
[halimede]
iau_moon_number=NIX
# absolute_magnitude=???
albedo=0.06
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Halimede
orbit_AscendingNode=188.1838751463620
orbit_Eccentricity=0.2619064927013259
orbit_Epoch=2454619.50000
orbit_Inclination=139.1947079371791
orbit_LongOfPericenter=336.4277167
orbit_MeanLongitude=76.5585497
orbit_Period=1875.169478522967
orbit_SemiMajorAxis=16563980.32137450
# orbit_visualization_period=1875.169478522967
parent=Neptune
radius=62
rot_equator_ascending_node=213.7
rot_obliquity=15.5
# rot_periode=1875.169478522967
rot_rotation_offset=14.9
tex_map=lune.png
type=moon
[helene]
iau_moon_number=SXII
absolute_magnitude=8.8
albedo=0.6
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Helene
orbit_AscendingNode=169.1488133099785
orbit_Eccentricity=0.008043134463779933
orbit_Epoch=2457939.5
orbit_Inclination=0.4915331878194952
orbit_LongOfPericenter=519.2269266607293
orbit_MeanLongitude=864.9832300155284
orbit_Period=2.737921632746249
orbit_SemiMajorAxis=377429.1855847576213357566
# orbit_visualization_period=2.737921632746249
parent=Saturn
radius=16
rot_equator_ascending_node=0
rot_obliquity=0
# rot_periode=2.737921632746249 # Unknown
rot_rotation_offset=0
tex_map=lune.png
type=moon
[himalia]
iau_moon_number=JVI
absolute_magnitude=8.14
albedo=0.04
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Himalia
orbit_AscendingNode=62.74369092219344
orbit_Eccentricity=0.1341186732710830
orbit_Epoch=2454619.50000
orbit_Inclination=29.52734924407240
orbit_LongOfPericenter=48.3391873600156000
orbit_MeanLongitude=202.0757439998000000
orbit_Period=248.3161934941932
orbit_SemiMajorAxis=11388576.13393731
# orbit_visualization_period=248.3161934941932
parent=Jupiter
radius=85
rot_equator_ascending_node=213.7
rot_obliquity=15.5
rot_periode=7.782
rot_rotation_offset=14.9
tex_map=lune.png
type=moon
[hydra]
iau_moon_number=PIII
albedo=0.195
coord_func=ell_orbit
name=Hydra
orbit_AscendingNode=227.6182145734207
orbit_Eccentricity=0.008469198926346792
orbit_Epoch=2457939.5
orbit_Inclination=1.974020787636261
orbit_LongOfPericenter=585.8426709065136
orbit_MeanLongitude=616.67133430897493
orbit_Period=-38.46736637831656
orbit_SemiMajorAxis=64900.41061999993140051606
# orbit_visualization_period=38.46736637831656
parent=Pluto
radius=114
rot_obliquity=1.0
# rot_periode=38.46736637831656
rot_rotation_offset=0.0
tex_map=lune.png
type=moon
[hyperion]
iau_moon_number=SVII
absolute_magnitude=4.63
PrecessionRate=51.43
RotationPeriod=120
albedo=0.3
color=1., 0.914, 0.835
coord_func=hyperion_special
name=Hyperion
model=s7hyperion_21_MLfix.obj
orbit_visualization_period=21.276609
parent=Saturn
radius=141.5
rot_equator_ascending_node=145
rot_obliquity=61.
rot_periode=510.72
rot_rotation_offset=318.9
tex_map=hyperion.png
type=moon
[iapetus]
iau_moon_number=SVIII
absolute_magnitude=1.5
albedo=0.2
color=1., 0.973, 0.948
coord_func=iapetus_special
name=Iapetus
orbit_visualization_period=79.33
parent=Saturn
radius=718.
rot_equator_ascending_node=213.7
rot_obliquity=15.5
rot_periode=1903.940390
rot_rotation_offset=223.73
rot_pole_ra=318.16
rot_pole_ra1=-3.949
rot_pole_de=75.03
rot_pole_de1=-1.143
rot_pole_w0=355.2
rot_pole_w1=4.5379572
tex_map=iapetus.png
type=moon
[io]
iau_moon_number=JI
absolute_magnitude=-1.68
albedo=0.63
atmosphere=1
color=1., .885, .598
coord_func=io_special
name=Io
orbit_visualization_period=1.769
parent=Jupiter
radius=1821.3
rot_obliquity=0.0
rot_periode=42.45930719
rot_rotation_offset=220.35
rot_pole_ra=268.05
rot_pole_ra1=-0.009
rot_pole_de=64.50
rot_pole_de1=0.003
rot_pole_w0=200.39
rot_pole_w1=203.4889538
tex_map=io.png
type=moon
[kerberos]
iau_moon_number=PIV
albedo=0.56
coord_func=ell_orbit
name=Kerberos
orbit_AscendingNode=227.3764616597038
orbit_Eccentricity=0.004864921999738080
orbit_Epoch=2457939.5
orbit_Inclination=1.977798409818596
orbit_LongOfPericenter=381.3281088678735
orbit_MeanLongitude=434.71660906890009
orbit_Period=-32.53390657388361
orbit_SemiMajorAxis=58042.31318993637053040642
# orbit_visualization_period=32.53390657388361
parent=Pluto
radius=19
rot_obliquity=1.0
# rot_periode=0
rot_rotation_offset=0.0
tex_map=lune.png
type=moon
[janus]
iau_moon_number=SX
absolute_magnitude=4.9
albedo=0.5
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Janus
orbit_AscendingNode=169.4950252408618
orbit_Eccentricity=0.01039350532665206
orbit_Epoch=2457939.5
orbit_Inclination=0.4924530371249293
orbit_LongOfPericenter=481.1046065786531
orbit_MeanLongitude=500.48456523833078
orbit_Period=0.7000394386551769
orbit_SemiMajorAxis=152044.1833237598760096396
# orbit_visualization_period=0.7000394386551769
parent=Saturn
radius=97
rot_equator_ascending_node=0
rot_obliquity=0
# rot_periode=0.7000394386551769
rot_rotation_offset=0
tex_map=janus.png
type=moon
[jupiter]
absolute_magnitude=-9.40
albedo=0.51
atmosphere=1
color=1., 0.983, 0.934
coord_func=jupiter_special
name=Jupiter
oblateness=0.064874
orbit_visualization_period=4331.87
radius=71492
rot_equator_ascending_node=-22.203
rot_obliquity=2.222461
rot_periode=9.92491
rot_pole_de=64.495303
rot_pole_de1=0.002413
rot_pole_ra=268.056595
rot_pole_ra1=-0.006499
rot_pole_w0=284.95
rot_pole_w1=870.5360000
rot_rotation_offset=-1 # use JupiterGRS patch
tex_map=jupiter.png #texture courtesy of Bj\xf6rn J\xf3nsson
type=planet
[juliet]
iau_moon_number=UXI
absolute_magnitude=8.8
albedo=0.07
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Juliet
orbit_AscendingNode=167.6613914859273
orbit_Eccentricity=0.0003626339414843795
orbit_Epoch=2457939.5
orbit_Inclination=1.706138947278907
orbit_LongOfPericenter=492.2301885277902
orbit_MeanLongitude=535.05424730308089
orbit_Period=-0.4938749171108545
orbit_SemiMajorAxis=64410.82226003643742634391
# orbit_visualization_period=0.4938749171108545
parent=Uranus
radius=42
rot_equator_ascending_node=0
rot_obliquity=0
# rot_periode=0.4938749171108545 # Unknown
rot_rotation_offset=0
tex_map=lune.png
type=moon
[laomedeia]
iau_moon_number=NXII
albedo=0.06
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Laomedeia
orbit_AscendingNode=33.54920843735481
orbit_Eccentricity=0.3845786604193581
orbit_Epoch=2454619.50000
orbit_Inclination=9.744680906468446
orbit_LongOfPericenter=159.9138961
orbit_MeanLongitude=305.1617125
orbit_Period=3185.068758279590
orbit_SemiMajorAxis=23580349.09459848
# orbit_visualization_period=3185.068758279590
parent=Neptune
radius=42
rot_equator_ascending_node=213.7
rot_obliquity=15.5
# rot_periode=3185.068758279590
rot_rotation_offset=14.9
tex_map=lune.png
type=moon
[larissa]
iau_moon_number=NVII
absolute_magnitude=7.3
albedo=0.091
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Larissa
model=n7larissa_MLfix.obj
orbit_AscendingNode=12.97300037402120
orbit_Eccentricity=0.001628627055845952
orbit_Epoch=2454619.50000
orbit_Inclination=0.3672114864338289
orbit_LongOfPericenter=342.2125629
orbit_MeanLongitude=38.69785092
orbit_Period=0.5553035150611498
orbit_SemiMajorAxis=73590.98861163890
# orbit_visualization_period=0.5553035150611498
parent=Neptune
radius=79
rot_equator_ascending_node=213.7
rot_obliquity=15.5
# rot_periode=13.3272843614675952
rot_rotation_offset=120.57
rot_pole_ra=299.36
rot_pole_de=43.41
rot_pole_w0=179.41
rot_pole_w1=649.0534470
tex_map=lune.png
type=moon
[leda]
iau_moon_number=JXIII
absolute_magnitude=13.5
albedo=0.04
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Leda
orbit_AscendingNode=205.5729208452909
orbit_Eccentricity=0.1849972068029340
orbit_Epoch=2454619.50000
orbit_Inclination=28.26096889279179
orbit_LongOfPericenter=133.1912542293990000
orbit_MeanLongitude=276.4502233853120000
orbit_Period=242.2566769525344
orbit_SemiMajorAxis=11202541.76637748
# orbit_visualization_period=242.2566769525344
parent=Jupiter
radius=5
rot_equator_ascending_node=213.7
rot_obliquity=15.5
# rot_periode=242.2566769525344
rot_rotation_offset=14.9
tex_map=lune.png
type=moon
[lysithea]
iau_moon_number=JX
absolute_magnitude=11.7
albedo=0.04
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Lysithea
orbit_AscendingNode=0.2875682490706584
orbit_Eccentricity=0.1281232102397132
orbit_Epoch=2454619.50000
orbit_Inclination=24.59040357245339
orbit_LongOfPericenter=78.9389828310578000
orbit_MeanLongitude=337.5492383800380000
orbit_Period=259.0469768771512
orbit_SemiMajorAxis=11714356.05630203
# orbit_visualization_period=259.0469768771512
parent=Jupiter
radius=12
rot_equator_ascending_node=213.7
rot_obliquity=15.5
# rot_periode=259.0469768771512
rot_rotation_offset=14.9
tex_map=lune.png
type=moon
[mars]
absolute_magnitude=-1.52
albedo=0.150
atmosphere=1
color=1., 0.768, 0.504
coord_func=mars_special
landscape=mars
name=Mars
oblateness=0.006772
orbit_visualization_period=686.971
radius=3396.2
rot_equator_ascending_node=82.91
rot_obliquity=26.72
rot_periode=24.622962
rot_pole_de=52.88650
rot_pole_de1=-0.0609
rot_pole_ra=317.68143
rot_pole_ra1=-0.1061
rot_pole_w0=176.630
rot_pole_w1=350.89198226
rot_rotation_offset=136.005
tex_map=mars.png
type=planet
[mercury]
absolute_magnitude=-0.60
albedo=0.06
color=1.0, 0.964, 0.914
coord_func=mercury_special
name=Mercury
orbit_visualization_period=87.97
radius=2439.7
rot_equator_ascending_node=48.42
rot_obliquity=7.01
rot_periode=1407.509405
rot_pole_de=61.4143
rot_pole_de1=-0.0049
rot_pole_ra=281.0097
rot_pole_ra1=-0.0328
rot_pole_w0=329.5469
rot_pole_w1=6.1385205 # ExpSup2013. WGCCRE2009 gives 6.1385025
rot_rotation_offset=291.20
tex_map=mercury.png
type=planet
[metis]
iau_moon_number=JXVI
absolute_magnitude=10.8
albedo=0.061
color=1., 0.9, 0.75
coord_func=ell_orbit
name=Metis
orbit_AscendingNode=99.25512108544794
orbit_Eccentricity=0.007934699878209682
orbit_Epoch=2454619.50000
orbit_Inclination=0.06061013894618508