-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplots.py
66 lines (53 loc) · 2.74 KB
/
plots.py
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
58
59
60
61
62
63
64
65
66
# Preamble
import plotsCodes
from tqdm import tqdm
def generate_plots(show):
pbar = tqdm(total=36, desc="Plots", ncols=80, position=0, leave=True)
# Main plots
plotsCodes.OrbitalAttemptsPerCountryStacked.main(pbar, show=show)
plotsCodes.OrbitalAttemptsPerCountry.main(pbar, show=show)
plotsCodes.OrbitalAttemptsPerLSPStacked.main(pbar, show=show)
plotsCodes.OrbitalAttemptsPerLSP.main(pbar, show=show)
plotsCodes.OrbitalAttemptsPerLSPStacked.main(pbar, show=show)
plotsCodes.OrbitalAttemptsPerLSPType.main(pbar, show=show)
plotsCodes.OrbitalAttemptsPerLSPTypeStacked.main(pbar, show=show)
plotsCodes.DailyOrbitalAttemptsPerCountry.main(pbar, show=show)
plotsCodes.DailyOrbitalFailuresPerCountry.main(pbar, show=show)
plotsCodes.DailyOrbitalSuccessRate.main(pbar, show=show)
plotsCodes.OrbitalFailuresPerCountry.main(pbar, show=show)
plotsCodes.LaunchCadenceWorldwide.main(pbar, show=show)
plotsCodes.LaunchCadenceWorldwidePrediction.main(pbar, show=show)
plotsCodes.LaunchCadenceWorldwidePredictionLinear.main(pbar, show=show)
plotsCodes.OrbitalFailuresPerCountryStacked.main(pbar, show=show)
plotsCodes.OrbitalSuccessFailures.main(pbar, show=show)
plotsCodes.DailyConsecutiveYears.main(pbar, show=show)
plotsCodes.MaidenFlights.main(pbar, show=show)
plotsCodes.TotalOrbitalAttemptsPerCountry.main(pbar, show=show)
# Plots per Country
plotsCodes.LaunchCadenceByCountry.main(pbar, show=False)
plotsCodes.OrbitalSuccessRatePerCountry.main(pbar, show=False)
plotsCodes.OrbitalSuccessFailuresPerCountry.main(pbar, show=False)
plotsCodes.LaunchCadenceByCountryPrediction.main(pbar, show=False)
plotsCodes.LaunchCadenceByCountryLinear.main(pbar, show=False)
# Plots per LSP
plotsCodes.LaunchCadenceByLSP.main(pbar, show=False)
plotsCodes.LaunchCadenceByLSPprediction.main(pbar, show=False)
plotsCodes.OrbitalSuccessFailuresPerLSP.main(pbar, show=False)
plotsCodes.LaunchCadenceByLSPpredictionLinear.main(pbar, show=False)
plotsCodes.OrbitalReusabilityPerLSP.main(pbar, show=False)
# Plots per Launcher Family
plotsCodes.OrbitalSuccessFailuresPerLauncherFamily.main(pbar, show=False)
# Yearly plots
plotsCodes.YearlyOrbitalAttemptsPerCountry.main(pbar, show=False)
plotsCodes.YearlyOrbitalAttemptsPerLSP.main(pbar, show=False)
# Plotly plots
plotsCodes.PlotlyOrbitalAttemptsPerCountry.main(pbar)
plotsCodes.PlotlyOrbitalAttemptsPerLSP.main(pbar)
# LL2 meta plots
plotsCodes.LL2UpdatesPerLibrarianStacked.main(pbar, show=show)
# XKCD plots
plotsCodes.XKCDstarlink.main(pbar, show=show)
pbar.close()
print("Successfully generated and exported all plots.")
if __name__ == "__main__":
generate_plots(False)