This commit is contained in:
Fbase965
2026-03-11 12:46:53 +00:00
parent 7ad9b36249
commit 1ceffa0dea
87 changed files with 8133 additions and 353 deletions

View File

@@ -0,0 +1,391 @@
export const launches = [
{
id: '1',
name: 'Starlink 4-36',
date_utc: '2024-11-15T10:30:00.000Z',
success: true,
details: 'This mission launched 53 Starlink satellites to low Earth orbit.',
rocket: 'Falcon 9',
launchpad: 'Kennedy Space Center LC-39A',
flight_number: 245,
upcoming: false
},
{
id: '2',
name: 'Crew-8',
date_utc: '2024-10-20T14:15:00.000Z',
success: true,
details: "NASA's SpaceX Crew-8 mission to the International Space Station.",
rocket: 'Falcon 9',
launchpad: 'Kennedy Space Center LC-39A',
flight_number: 244,
upcoming: false
},
{
id: '3',
name: 'Starship Flight 5',
date_utc: '2024-09-30T08:00:00.000Z',
success: true,
details: 'Fifth orbital test flight of the Starship super heavy-lift launch vehicle.',
rocket: 'Starship',
launchpad: 'Starbase',
flight_number: 5,
upcoming: false
},
{
id: '4',
name: 'PACE Mission',
date_utc: '2024-08-12T18:45:00.000Z',
success: true,
details: 'Plankton, Aerosol, Cloud, ocean Ecosystem mission for NASA.',
rocket: 'Falcon 9',
launchpad: 'Vandenberg SFB SLC-4E',
flight_number: 243,
upcoming: false
},
{
id: '5',
name: 'Starlink 6-15',
date_utc: '2026-04-25T12:00:00.000Z',
success: null,
details: 'Next generation Starlink V2 satellites deployment.',
rocket: 'Falcon 9',
launchpad: 'Cape Canaveral SLC-40',
flight_number: 280,
upcoming: true
},
{
id: '6',
name: 'Europa Clipper',
date_utc: '2026-06-10T09:30:00.000Z',
success: null,
details: "NASA mission to explore Jupiter's moon Europa.",
rocket: 'Falcon Heavy',
launchpad: 'Kennedy Space Center LC-39A',
flight_number: 12,
upcoming: true
}
];
export const rockets = [
{
id: '1',
name: 'Falcon 9',
active: true,
stages: 2,
boosters: 0,
cost_per_launch: 67000000,
success_rate_pct: 99,
first_flight: '2010-06-04',
country: 'United States',
company: 'SpaceX',
height: { meters: 70, feet: 229.6 },
diameter: { meters: 3.7, feet: 12 },
mass: { kg: 549054, lb: 1207920 },
description:
'Falcon 9 is a reusable, two-stage rocket designed and manufactured by SpaceX for the reliable and safe transport of people and payloads into Earth orbit and beyond.'
},
{
id: '2',
name: 'Falcon Heavy',
active: true,
stages: 2,
boosters: 2,
cost_per_launch: 97000000,
success_rate_pct: 100,
first_flight: '2018-02-06',
country: 'United States',
company: 'SpaceX',
height: { meters: 70, feet: 229.6 },
diameter: { meters: 12.2, feet: 39.9 },
mass: { kg: 1420788, lb: 3125735 },
description:
'With the ability to lift into orbit nearly 64 metric tons (141,000 lb) Falcon Heavy is the most powerful operational rocket in the world by a factor of two.'
},
{
id: '3',
name: 'Starship',
active: true,
stages: 2,
boosters: 0,
cost_per_launch: 10000000,
success_rate_pct: 80,
first_flight: '2023-04-20',
country: 'United States',
company: 'SpaceX',
height: { meters: 120, feet: 394 },
diameter: { meters: 9, feet: 30 },
mass: { kg: 5000000, lb: 11000000 },
description:
'Starship is a fully reusable super heavy-lift launch vehicle under development by SpaceX. It is the largest and most powerful rocket ever built.'
},
{
id: '4',
name: 'Falcon 1',
active: false,
stages: 2,
boosters: 0,
cost_per_launch: 6700000,
success_rate_pct: 40,
first_flight: '2006-03-24',
country: 'United States',
company: 'SpaceX',
height: { meters: 22.25, feet: 73 },
diameter: { meters: 1.68, feet: 5.5 },
mass: { kg: 30146, lb: 66460 },
description:
'The Falcon 1 was an expendable launch system privately developed and manufactured by SpaceX during 2006-2009.'
}
];
export const capsules = [
{
id: '1',
serial: 'C201',
status: 'active',
type: 'Dragon 2',
reuse_count: 5,
water_landings: 5,
land_landings: 0,
last_update: 'Capsule successfully recovered after latest mission',
launches: ['Crew-1', 'Crew-2', 'Axiom-1', 'Crew-6', 'Axiom-3']
},
{
id: '2',
serial: 'C206',
status: 'active',
type: 'Dragon 2',
reuse_count: 3,
water_landings: 3,
land_landings: 0,
last_update: 'Currently docked at ISS',
launches: ['CRS-22', 'CRS-26', 'CRS-28']
},
{
id: '3',
serial: 'C112',
status: 'retired',
type: 'Dragon 1',
reuse_count: 3,
water_landings: 3,
land_landings: 0,
last_update: 'Retired after successful mission completion',
launches: ['CRS-10', 'CRS-13', 'CRS-16']
},
{
id: '4',
serial: 'C208',
status: 'active',
type: 'Dragon 2',
reuse_count: 2,
water_landings: 2,
land_landings: 0,
last_update: 'Undergoing refurbishment',
launches: ['Crew-4', 'Axiom-2']
},
{
id: '5',
serial: 'C210',
status: 'unknown',
type: 'Dragon 2',
reuse_count: 0,
water_landings: 0,
land_landings: 0,
last_update: 'Capsule under construction',
launches: []
}
];
export const starlink = [
{
id: '1',
version: 'v2.0 Mini',
launch: '2024-11-15',
longitude: -122.5,
latitude: 37.8,
height_km: 550,
velocity_kms: 7.59
},
{
id: '2',
version: 'v1.5',
launch: '2024-09-20',
longitude: -95.3,
latitude: 29.7,
height_km: 540,
velocity_kms: 7.61
},
{
id: '3',
version: 'v2.0 Mini',
launch: '2024-10-05',
longitude: 2.3,
latitude: 48.8,
height_km: 545,
velocity_kms: 7.6
},
{
id: '4',
version: 'v1.5',
launch: '2024-08-12',
longitude: 139.6,
latitude: 35.6,
height_km: 538,
velocity_kms: 7.62
},
{
id: '5',
version: 'v2.0 Mini',
launch: '2024-11-01',
longitude: -0.1,
latitude: 51.5,
height_km: 548,
velocity_kms: 7.59
},
{
id: '6',
version: 'v1.0',
launch: '2023-05-15',
longitude: 12.4,
latitude: 41.9,
height_km: 535,
velocity_kms: 7.63
}
];
export const launchpads = [
{
id: '1',
name: 'Kennedy Space Center LC-39A',
full_name: 'Kennedy Space Center Historic Launch Complex 39A',
status: 'active',
locality: 'Cape Canaveral',
region: 'Florida',
latitude: 28.6,
longitude: -80.6,
launch_attempts: 187,
launch_successes: 185,
rockets: ['Falcon 9', 'Falcon Heavy', 'Starship'],
details:
'LC-39A has been used for SpaceX launches since 2017. It was previously used for the Saturn V and Space Shuttle launches.'
},
{
id: '2',
name: 'Vandenberg SFB SLC-4E',
full_name: 'Vandenberg Space Force Base Space Launch Complex 4E',
status: 'active',
locality: 'Vandenberg',
region: 'California',
latitude: 34.6,
longitude: -120.6,
launch_attempts: 95,
launch_successes: 94,
rockets: ['Falcon 9'],
details: "SpaceX's primary West Coast launch site for polar orbit missions."
},
{
id: '3',
name: 'Cape Canaveral SLC-40',
full_name: 'Cape Canaveral Space Force Station Space Launch Complex 40',
status: 'active',
locality: 'Cape Canaveral',
region: 'Florida',
latitude: 28.5,
longitude: -80.5,
launch_attempts: 156,
launch_successes: 154,
rockets: ['Falcon 9'],
details: "SpaceX's primary East Coast launch site, used for most commercial missions."
},
{
id: '4',
name: 'Starbase',
full_name: 'SpaceX South Texas Launch Site',
status: 'active',
locality: 'Boca Chica',
region: 'Texas',
latitude: 25.9,
longitude: -97.1,
launch_attempts: 5,
launch_successes: 4,
rockets: ['Starship'],
details: "SpaceX's private launch facility for Starship development and testing."
}
];
export const landingpads = [
{
id: '1',
name: 'LZ-1',
full_name: 'Landing Zone 1',
status: 'active',
type: 'RTLS',
locality: 'Cape Canaveral',
region: 'Florida',
latitude: 28.4,
longitude: -80.5,
landing_attempts: 45,
landing_successes: 44,
details:
"SpaceX's first East Coast landing pad, located at Cape Canaveral Space Force Station."
},
{
id: '2',
name: 'LZ-2',
full_name: 'Landing Zone 2',
status: 'active',
type: 'RTLS',
locality: 'Cape Canaveral',
region: 'Florida',
latitude: 28.4,
longitude: -80.5,
landing_attempts: 28,
landing_successes: 28,
details:
'Second East Coast landing pad, used for Falcon Heavy side boosters.'
},
{
id: '3',
name: 'LZ-4',
full_name: 'Landing Zone 4',
status: 'active',
type: 'RTLS',
locality: 'Vandenberg',
region: 'California',
latitude: 34.6,
longitude: -120.6,
landing_attempts: 32,
landing_successes: 31,
details: "SpaceX's West Coast landing facility at Vandenberg Space Force Base."
},
{
id: '4',
name: 'OCISLY',
full_name: 'Of Course I Still Love You',
status: 'active',
type: 'ASDS',
locality: 'Atlantic Ocean',
region: 'Sea',
latitude: null,
longitude: null,
landing_attempts: 102,
landing_successes: 98,
details:
'Autonomous spaceport drone ship stationed in the Atlantic Ocean for offshore landings.'
},
{
id: '5',
name: 'JRTI',
full_name: 'Just Read the Instructions',
status: 'active',
type: 'ASDS',
locality: 'Pacific Ocean',
region: 'Sea',
latitude: null,
longitude: null,
landing_attempts: 67,
landing_successes: 64,
details:
'Autonomous spaceport drone ship stationed in the Pacific Ocean for West Coast missions.'
}
];