Login with Patreon to Remove Ads

Rocket Launch Statistics

Keeping pace with the rapidly evolving space industry requires data that is both accessible and precise. Our Rocket Launch Statistics dashboard provides a deep dive into global mission analytics, allowing you to track the pulse of modern space exploration. Whether you are looking for the current year’s performance or historical trends, you can easily filter our database by space agency, launch location, rocket configuration, and mission. From SpaceX’s rapid reusability milestones to global orbital attempts, our real-time statistics offer a comprehensive look at how we reach the stars.

Filter Launch Statistics
2026202520242023202220212020201920182017201620152014201320122011201020092008200720062005200420032002200120001999199819971996199519941993199219911990198919881987198619851984198319821981198019791978197719761975197419731972197119701969196819671966196519641963196219611960195919581957
Loading...

Loading statistics...

Top Agencies
Top Rockets
Top Locations
Top Missions
Top Countries
.launch-stats-wrapper .card { box-shadow: 0 2px 4px rgba(0,0,0,0.1); } .launch-stats-wrapper .progress { height: 25px; margin-bottom: 10px; } .launch-stats-wrapper .progress-bar { line-height: 25px; } .launch-stats-wrapper .stat-badge { min-width: 45px; text-align: center; font-size: 14px; font-weight: 600; padding: 6px 10px; } .launch-stats-wrapper .list-group-item { padding: 12px 15px; } .launch-stats-wrapper .stat-filter-link { color: #333; text-decoration: none; transition: color 0.2s; } .launch-stats-wrapper .stat-filter-link:hover { color: #007bff; text-decoration: none; } const ajaxurl = 'https://www.spacelaunchschedule.com/wp-admin/admin-ajax.php'; jQuery(document).ready(function($) { const nonce = 'e809d02397'; // Load statistics function loadStats() { $('#stats-loading').show(); $('#stats-display').hide(); const filters = { action: 'get_launch_stats', nonce: nonce, year: $('#filter-year').val(), agency: $('#filter-agency').val(), location: $('#filter-location').val(), country: $('#filter-country').val(), rocket: $('#filter-rocket').val(), mission: $('#filter-mission').val() }; $.ajax({ url: ajaxurl, data: filters, success: function(response) { if (response.success) { displayStats(response.data); } $('#stats-loading').hide(); $('#stats-display').show(); }, error: function() { $('#stats-loading').hide(); $('#stats-display').show(); } }); } // Display statistics function displayStats(data) { $('#stat-total').text(data.total); $('#stat-success').text(data.successful); $('#stat-failed').text(data.failed); $('#stat-rate').text(data.success_rate + '%'); // Top agencies let agenciesHtml = ''; if (data.top_agencies.length > 0) { agenciesHtml = '
    '; data.top_agencies.forEach(function(agency) { agenciesHtml += `
  • ${agency.count} ${agency.name}
  • `; }); agenciesHtml += '
'; } else { agenciesHtml = '

No data available

'; } $('#stat-agencies-list').html(agenciesHtml); // Top rockets let rocketsHtml = ''; if (data.top_rockets.length > 0) { rocketsHtml = '
    '; data.top_rockets.forEach(function(rocket) { rocketsHtml += `
  • ${rocket.count} ${rocket.name}
  • `; }); rocketsHtml += '
'; } else { rocketsHtml = '

No data available

'; } $('#stat-rockets-list').html(rocketsHtml); // Top locations let locationsHtml = ''; if (data.top_locations.length > 0) { locationsHtml = '
    '; data.top_locations.forEach(function(location) { locationsHtml += `
  • ${location.count} ${location.name}
  • `; }); locationsHtml += '
'; } else { locationsHtml = '

No data available

'; } $('#stat-locations-list').html(locationsHtml); // Top missions let missionsHtml = ''; if (data.top_missions.length > 0) { missionsHtml = '
    '; data.top_missions.forEach(function(mission) { missionsHtml += `
  • ${mission.count} ${mission.name}
  • `; }); missionsHtml += '
'; } else { missionsHtml = '

No data available

'; } $('#stat-missions-list').html(missionsHtml); // Top countries let countriesHtml = ''; if (data.top_countries.length > 0) { countriesHtml = '
    '; data.top_countries.forEach(function(country) { countriesHtml += `
  • ${country.count} ${country.name}
  • `; }); countriesHtml += '
'; } else { countriesHtml = '

No data available

'; } $('#stat-countries-list').html(countriesHtml); } // Event handlers $('#apply-filters').on('click', function() { loadStats(); }); $('#reset-filters').on('click', function() { $('#filter-year').val('2026'); $('#filter-agency').val(''); $('#filter-location').val(''); $('#filter-country').val(''); $('#filter-rocket').val(''); $('#filter-mission').val(''); loadStats(); }); // Enter key in any text search $('#filter-agency, #filter-location, #filter-country, #filter-rocket, #filter-mission').on('keypress', function(e) { if (e.which === 13) { e.preventDefault(); loadStats(); } }); // Click handler for stat filter links $(document).on('click', '.stat-filter-link', function(e) { e.preventDefault(); const filterType = $(this).data('filter-type'); const filterValue = $(this).data('filter-value'); // Clear all filters first $('#filter-agency').val(''); $('#filter-location').val(''); $('#filter-country').val(''); $('#filter-rocket').val(''); $('#filter-mission').val(''); // Set the appropriate filter $('#filter-' + filterType).val(filterValue); // Reload stats with new filter loadStats(); // Scroll to top of stats $('html, body').animate({ scrollTop: $('#launch-stats-container').offset().top - 20 }, 500); }); // Initialize loadStats(); });
guest
0 Comments
Inline Feedbacks
View all comments