-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplanets.json
More file actions
57 lines (56 loc) · 1.05 KB
/
planets.json
File metadata and controls
57 lines (56 loc) · 1.05 KB
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
[
{
"name": "Mercury",
"diameter": 4879,
"distance_from_sun": 57.9,
"has_rings": false
},
{
"name": "Venus",
"diameter": 12104,
"distance_from_sun": 108.2,
"has_rings": false
},
{
"name": "Earth",
"diameter": 12742,
"distance_from_sun": 149.6,
"moons": 1,
"has_rings": false
},
{
"name": "Mars",
"diameter": 6779,
"distance_from_sun": 227.9,
"moons": 2,
"has_rings": false
},
{
"name": "Jupiter",
"diameter": 139820,
"distance_from_sun": 778.5,
"moons":79,
"has_rings": true
},
{
"name": "Saturn",
"diameter": 116460,
"distance_from_sun": 1434,
"moons": 82,
"has_rings": true
},
{
"name": "Uranus",
"diameter": 50724,
"distance_from_sun": 2871,
"moons": 27,
"has_rings": true
},
{
"name": "Neptune",
"diameter": 49244,
"distance_from_sun": 4497,
"moons": 14,
"has_rings": true
}
]