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
Loading statistics...
Total
0
Successful
0
Failed
0
Success Rate
0%
Top Agencies
Top Rockets
Top Locations
Top Missions
Top Countries
- ';
data.top_agencies.forEach(function(agency) {
agenciesHtml += `
- ${agency.count} ${agency.name} `; }); 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 += '
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 += '
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 += '
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 += '
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(); });