Skip to content

Commit ae5760a

Browse files
committed
numbers and bools aren't strings anymore
1 parent 510b3db commit ae5760a

File tree

1 file changed

+41
-41
lines changed

1 file changed

+41
-41
lines changed

data/falcon_heavy.rb

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,102 +1,102 @@
11
$falcon_heavy = {
22
name: 'Falcon Heavy',
3-
active: 'false',
4-
stages: '2',
5-
boosters: '2',
6-
cost_per_launch: '90 million',
3+
active: false,
4+
stages: 2,
5+
boosters: 2,
6+
cost_per_launch: 90000000,
77
first_flight: 'TBD',
88
country: 'United States',
99
company: 'SpaceX',
1010
height: {
11-
meters: '70',
12-
feet: '229.6'
11+
meters: 70,
12+
feet: 229.6
1313
},
1414
total_width: {
15-
meters: '12.2',
16-
feet: '39.9'
15+
meters: 12.2,
16+
feet: 39.9
1717
},
1818
mass: {
19-
kg: '1420788',
20-
lb: '3125735'
19+
kg: 1420788,
20+
lb: 3125735
2121
},
2222
payload_weights: {
2323
leo: {
2424
name: 'low earth orbit',
25-
kg: '63800',
26-
lb: '140660'
25+
kg: 63800,
26+
lb: 140660
2727
},
2828
gto: {
2929
name: 'geosynchronous transfer orbit',
30-
kg: '26700',
31-
lb: '58860'
30+
kg: 26700,
31+
lb: 58860
3232
},
3333
mars: {
3434
name: 'mars orbit',
35-
kg: '16800',
36-
lb: '37040'
35+
kg: 16800,
36+
lb: 37040
3737
},
3838
pluto: {
3939
name: 'pluto orbit',
40-
kg: '3500',
41-
lb: '7720'
40+
kg: 3500,
41+
lb: 7720
4242
}
4343
},
4444
first_stage: {
4545
reusable: 'true',
46-
engines: '27',
47-
cores: '3',
48-
burn_time_sec: '162',
46+
engines: 27,
47+
cores: 3,
48+
burn_time_sec: 162,
4949
thrust_sea_level: {
50-
kN: '22819',
51-
lbf: '5130000'
50+
kN: 22819,
51+
lbf: 5130000
5252
},
5353
thrust_vacuum: {
54-
kN: '24681',
55-
lbf: '5548500'
54+
kN: 24681,
55+
lbf: 5548500
5656
}
5757
},
5858
second_stage: {
59-
engines: '1',
60-
burn_time_sec: '397',
59+
engines: 1,
60+
burn_time_sec: 397,
6161
thrust: {
62-
kN: '934',
63-
lbf: '210000'
62+
kN: 934,
63+
lbf: 210000
6464
},
6565
payloads: {
6666
option_1: 'dragon',
6767
option_2: 'composite fairing',
6868
composite_fairing: {
6969
height: {
70-
meters: '13.1',
71-
feet: '43'
70+
meters: 13.1,
71+
feet: 43
7272
},
7373
diameter: {
74-
meters: '5.2',
75-
feet: '17.1'
74+
meters: 5.2,
75+
feet: 17.1
7676
}
7777
}
7878
}
7979
},
8080
engines: {
81-
number: '27',
81+
number: 27,
8282
type: 'merlin',
8383
version: '1D+',
8484
layout: 'octaweb',
85-
engine_loss_max: '6',
85+
engine_loss_max: 6,
8686
propellant_1: 'oxygen',
8787
propellant_2: 'kerosene',
8888
thrust_sea_level: {
89-
kN: '845',
90-
lbf: '190000'
89+
kN: 845,
90+
lbf: 190000
9191
},
9292
thrust_vacuum: {
93-
kN: '914',
94-
lbf: '205500'
93+
kN: 914,
94+
lbf: 205500
9595
},
96-
thrust_to_weight: '180.1'
96+
thrust_to_weight: 180.1
9797
},
9898
landing_legs: {
99-
number: '12',
99+
number: 12,
100100
material: 'carbon fiber'
101101
},
102102
description: 'With the ability to lift into orbit over 54 metric tons (119,000 lb)--a mass equivalent to a 737 jetliner loaded with passengers, crew, luggage and fuel--Falcon Heavy can lift more than twice the payload of the next closest operational vehicle, the Delta IV Heavy, at one-third the cost.'

0 commit comments

Comments
 (0)