-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplanets.toml
130 lines (100 loc) · 2.35 KB
/
planets.toml
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
# Maybe:
# one between
# - distance (must have a Sun) - scalar
# - origin - vector
# moons as sub--array-of-tables
# in config a way to configure the "tail" (on|off, color, length...)
[config]
# TODO: mass_unit = "Yg"
# TODO: distance_unit = "Gm"
# TODO: orbital_velocity_unit = "km/s"
# TODO: visual_radius = 448.8
# default length for motion trail (in days) | default: 0 (disabled)
motion_trail_length = 45
# default density for motion trail (in pts/day) | default: 5
motion_trail_density = 10
# default radius for objects (in px) | default: 5.
default_px_radius = 5.0
# default color for objects (hex or int) | default: 0x994C00
default_color = 0x994C00
[[object]]
name = "Mario"
mass = 5974.2
distance = 200.6
orbital_velocity = 29.8
[[object]]
name = "sun"
mass = 1988435000
distance = 0
orbital_velocity = 0
px_radius = 10
color = 0xFFFF00
motion_trail_length = 0
[[object]]
name = "mercury"
mass = 330.11
distance = 46.00
orbital_velocity = 58.98
px_radius = 2.0
color = 0x79757D
[[object]]
name = "venus"
mass = 4867.5
distance = 107.48
orbital_velocity = 35.26
color = 0xC1792E
[[object]]
name = "earth"
mass = 5972.3
distance = 147.9
orbital_velocity = 30.29
color = 0x0080FF
[[object.satellites]]
name = "moon"
mass = 73.46
distance = [0, 0.3633, 0]
orbital_velocity = [0, 0, 1.082]
px_radius = 1
color = 0x79757D
[[object]]
name = "mars"
mass = 641.71
distance = 206.62
orbital_velocity = 26.5
color = 0xD17252
[[object]]
name = "jupiter"
mass = 1898190
distance = 740.52
orbital_velocity = 13.72
color = 0xFF9933
[[object]]
name = "saturn"
mass = 568340
distance = 1352.55
orbital_velocity = 10.18
color = 0xFFFF99
[[object]]
name = "uranus"
mass = 86813
distance = 2741.3
orbital_velocity = 7.11
color = 0xCCFFFF
[[object]]
name = "neptune"
mass = 102413
distance = 4444.45
orbital_velocity = 5.5
color = 0x3333FF
[[object]]
name = "pluto"
mass = 13.03
distance = 4436.82
orbital_velocity = 6.1
color = 0xA19E91
[[object]]
name = "eris"
mass = 16.6
distance = 14062.199
orbital_velocity = 3.4338
color = 0x93A6BD