Skip to content

Commit 0583291

Browse files
committed
added initial site data
1 parent ec0aa1c commit 0583291

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

data/sites.rb

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
test_locations: {
3+
name: 'Rocket Development Facility',
4+
city: 'McGregor',
5+
state: 'Texas',
6+
size_acres: '4000',
7+
year_built: '2003',
8+
engines_tested: {
9+
engine_1: 'Merlin',
10+
engine_2: 'Draco'
11+
},
12+
yearly_tests: '400',
13+
daily_tests: '2'
14+
},
15+
launch_locations: {
16+
CCAFS: {
17+
name: 'Cape Canaveral Air Force Station',
18+
launchpad: 'Space Launch Complex 40',
19+
state: 'Florida',
20+
orbits_avaliable: '[LEO, GTO, ISS]',
21+
vehicles: 'Falcon 9'
22+
},
23+
VAFB: {
24+
name: 'Vandenberg Air Force Base',
25+
launchpad: 'Space Launch Complex 4 East',
26+
state: 'California',
27+
orbits_avaliable: '[Polar, HIO]',
28+
vehicles: 'Falcon 9'
29+
},
30+
KSC: {
31+
name: 'Kennedy Space Center',
32+
launchpad: 'Launch Complex 39A',
33+
state: 'Florida',
34+
orbits_avaliable: '[LEO, GTO, ISS]',
35+
vehicles: 'Falcon 9'
36+
},
37+
STLS: {
38+
name: 'South Texas Launch Site',
39+
launchpad: 'custom pad',
40+
state: 'Texas',
41+
orbits_avaliable: '[LEO, GTO, ISS]'
42+
}
43+
}
44+
}

0 commit comments

Comments
 (0)