Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Petabit/Models/StationStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public static class StationStatus
{
public static readonly TimeSpan MaximumVerificationAge = TimeSpan.FromDays(45);

// NASA's public station-status pages were checked on 26 July 2026.
// NASA's public station-status pages were checked on 14 September 2026.
// Keep this curated data separate from the live orbital-position feed.
public static readonly IReadOnlyList<CrewMember> Crew =
[
Expand All @@ -26,11 +26,10 @@ public static class StationStatus
new("Crew-12 Dragon", "Posadna letjelica", "SpaceX / NASA"),
new("Cygnus XL", "Teretna letjelica", "Northrop Grumman / NASA"),
new("Soyuz MS-29", "Posadna letjelica", "Roscosmos"),
new("Progress 94", "Teretna letjelica", "Roscosmos"),
new("Progress 95", "Teretna letjelica", "Roscosmos")
];

public static readonly DateTimeOffset LastVerified = new(2026, 7, 26, 0, 0, 0, TimeSpan.Zero);
public static readonly DateTimeOffset LastVerified = new(2026, 9, 14, 0, 0, 0, TimeSpan.Zero);
public const string SourceUrl = "https://www.nasa.gov/international-space-station/space-station-visiting-vehicles/";

public static bool IsStale(DateTimeOffset now) => now - LastVerified > MaximumVerificationAge;
Expand Down
Loading