Skip to content

Commit 67fb899

Browse files
committed
init
0 parents  commit 67fb899

8 files changed

+5627
-0
lines changed

Diff for: .gitignore

+163
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
1+
#################
2+
## Eclipse
3+
#################
4+
5+
*.pydevproject
6+
.project
7+
.metadata
8+
bin/
9+
tmp/
10+
*.tmp
11+
*.bak
12+
*.swp
13+
*~.nib
14+
local.properties
15+
.classpath
16+
.settings/
17+
.loadpath
18+
19+
# External tool builders
20+
.externalToolBuilders/
21+
22+
# Locally stored "Eclipse launch configurations"
23+
*.launch
24+
25+
# CDT-specific
26+
.cproject
27+
28+
# PDT-specific
29+
.buildpath
30+
31+
32+
#################
33+
## Visual Studio
34+
#################
35+
36+
## Ignore Visual Studio temporary files, build results, and
37+
## files generated by popular Visual Studio add-ons.
38+
39+
# User-specific files
40+
*.suo
41+
*.user
42+
*.sln.docstates
43+
44+
# Build results
45+
[Dd]ebug/
46+
[Rr]elease/
47+
*_i.c
48+
*_p.c
49+
*.ilk
50+
*.meta
51+
*.obj
52+
*.pch
53+
*.pdb
54+
*.pgc
55+
*.pgd
56+
*.rsp
57+
*.sbr
58+
*.tlb
59+
*.tli
60+
*.tlh
61+
*.tmp
62+
*.vspscc
63+
.builds
64+
*.dotCover
65+
66+
## TODO: If you have NuGet Package Restore enabled, uncomment this
67+
#packages/
68+
69+
# Visual C++ cache files
70+
ipch/
71+
*.aps
72+
*.ncb
73+
*.opensdf
74+
*.sdf
75+
76+
# Visual Studio profiler
77+
*.psess
78+
*.vsp
79+
80+
# ReSharper is a .NET coding add-in
81+
_ReSharper*
82+
83+
# Installshield output folder
84+
[Ee]xpress
85+
86+
# DocProject is a documentation generator add-in
87+
DocProject/buildhelp/
88+
DocProject/Help/*.HxT
89+
DocProject/Help/*.HxC
90+
DocProject/Help/*.hhc
91+
DocProject/Help/*.hhk
92+
DocProject/Help/*.hhp
93+
DocProject/Help/Html2
94+
DocProject/Help/html
95+
96+
# Click-Once directory
97+
publish
98+
99+
# Others
100+
[Bb]in
101+
[Oo]bj
102+
sql
103+
TestResults
104+
*.Cache
105+
ClientBin
106+
stylecop.*
107+
~$*
108+
*.dbmdl
109+
Generated_Code #added for RIA/Silverlight projects
110+
111+
# Backup & report files from converting an old project file to a newer
112+
# Visual Studio version. Backup files are not needed, because we have git ;-)
113+
_UpgradeReport_Files/
114+
Backup*/
115+
UpgradeLog*.XML
116+
117+
118+
119+
############
120+
## Windows
121+
############
122+
123+
# Windows image file caches
124+
Thumbs.db
125+
126+
# Folder config file
127+
Desktop.ini
128+
129+
130+
#############
131+
## Python
132+
#############
133+
134+
*.py[co]
135+
136+
# Packages
137+
*.egg
138+
*.egg-info
139+
dist
140+
build
141+
eggs
142+
parts
143+
bin
144+
var
145+
sdist
146+
develop-eggs
147+
.installed.cfg
148+
149+
# Installer logs
150+
pip-log.txt
151+
152+
# Unit test / coverage reports
153+
.coverage
154+
.tox
155+
156+
#Translations
157+
*.mo
158+
159+
#Mr Developer
160+
.mr.developer.cfg
161+
162+
# Mac crap
163+
.DS_Store

Diff for: DATA/PlanetaryFactSheetNASA.txt

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
X MERCURY VENUS EARTH MOON MARS JUPITER SATURN URANUS NEPTUNE PLUTO
2+
Mass_(10^24kg) 0.330 4.87 5.97 0.073 0.642 1899 568 86.8 102 0.0125
3+
Diameter_(km) 4879 12,104 12,756 3475 6792 142,984 120,536 51,118 49,528 2390
4+
Density_(kg/m^3) 5427 5243 5515 3340 3933 1326 687 1270 1638 1750
5+
Gravity_(m/s^2) 3.7 8.9 9.8 1.6 3.7 23.1 9.0 8.7 11.0 0.6
6+
Escape_Velocity_(km/s) 4.3 10.4 11.2 2.4 5.0 59.5 35.5 21.3 23.5 1.1
7+
Rotation_Period_(hours) 4222.6 2802.0 24.0 708.7 24.7 9.9 10.7 17.2 16.1 153.3
8+
Distance_from_Sun_(10^6 km) 57.9 108.2 149.6 0.384* 227.9 778.6 1433.5 2872.5 4495.1 5870.0
9+
Perihelion_(10^6 km) 46.0 107.5 147.1 0.363* 206.6 740.5 1352.6 2741.3 4444.5 4435.0
10+
Aphelion_(10^6 km) 69.8 108.9 152.1 0.406* 249.2 816.6 1514.5 3003.6 4545.7 7304.3
11+
Orbital_Period_(days) 88.0 224.7 365.2 27.3 687.0 4331 10,747 30,589 59,800 90,588
12+
Orbital_Velocity_(km/s) 47.9 35.0 29.8 1.0 24.1 13.1 9.7 6.8 5.4 4.7
13+
Orbital_Inclination_(degrees) 7.0 3.4 0.0 5.1 1.9 1.3 2.5 0.8 1.8 17.2
14+
Orbital_Eccentricity 0.205 0.007 0.017 0.055 0.094 0.049 0.057 0.046 0.011 0.244
15+
Axial_Tilt_(degrees) 0.01 177.4 23.4 6.7 25.2 3.1 26.7 97.8 28.3 122.5
16+
Mean_Temperature_(C) 167 464 15 -20 -65 -110 -140 -195 -200 -225
17+
Surface_Pressure_(bars) 0 92 1 0 0.01 Unknown* Unknown* Unknown* Unknown* 0
18+
Number_of_Moons 0 0 1 0 2 67 62 27 13 5
19+
Ring_System? No No No No No Yes Yes Yes Yes No
20+
Global_Magnetic_Field? Yes No Yes No No Yes Yes Yes Yes Unknown

Diff for: README.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Solar System with VVVV

0 commit comments

Comments
 (0)