Last active
February 1, 2019 22:51
-
-
Save privatenumber/8af28509864aed5657693aef99005477 to your computer and use it in GitHub Desktop.
Planets Data for Orbit Demo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"planet": "Mercury", | |
"moons": 0, | |
"diameter": 4879, | |
"distanceFromSun": 57.9, | |
"icon": "https://img.icons8.com/color/48/000000/mercury-planet.png" | |
}, | |
{ | |
"planet": "Venus", | |
"moons": 0, | |
"diameter": 12104, | |
"distanceFromSun": 108.2, | |
"icon": "https://img.icons8.com/color/48/000000/venus-planet.png" | |
}, | |
{ | |
"planet": "Earth", | |
"moons": 1, | |
"diameter": 12756, | |
"distanceFromSun": 149.6, | |
"icon": "https://img.icons8.com/color/48/000000/earth-planet.png" | |
}, | |
{ | |
"planet": "Mars", | |
"moons": 0, | |
"diameter": 6792, | |
"distanceFromSun": 227.9, | |
"icon": "https://img.icons8.com/color/48/000000/mars-planet.png" | |
}, | |
{ | |
"planet": "Jupiter", | |
"moons": 67, | |
"diameter": 142984, | |
"distanceFromSun": 778.6, | |
"icon": "https://img.icons8.com/color/48/000000/jupiter-planet.png" | |
}, | |
{ | |
"planet": "Saturn", | |
"moons": 62, | |
"diameter": 120536, | |
"distanceFromSun": 1433.5, | |
"icon": "https://img.icons8.com/color/48/000000/saturn-planet.png" | |
}, | |
{ | |
"planet": "Uranus", | |
"moons": 27, | |
"diameter": 51118, | |
"distanceFromSun": 2872.5, | |
"icon": "https://img.icons8.com/color/48/000000/uranus-planet.png" | |
}, | |
{ | |
"planet": "Neptune", | |
"moons": 14, | |
"diameter": 49528, | |
"distanceFromSun": 4495.1, | |
"icon": "https://img.icons8.com/color/48/000000/neptune-planet.png" | |
}, | |
{ | |
"planet": "Pluto(Dwarf-Planet)", | |
"moons": 5, | |
"diameter": 2370, | |
"distanceFromSun": 5906.4, | |
"icon": "https://img.icons8.com/color/48/000000/pluto-dwarf-planet.png" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment