From 5689aaa22129e80b7f07db1a4a051b882369003e Mon Sep 17 00:00:00 2001 From: ChevCellios <171721150+ChevCellios@users.noreply.github.com> Date: Mon, 14 Sep 2026 23:12:57 +0200 Subject: [PATCH] Refresh curated ISS station status --- Petabit/Models/StationStatus.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Petabit/Models/StationStatus.cs b/Petabit/Models/StationStatus.cs index 956bd0b..148ba29 100644 --- a/Petabit/Models/StationStatus.cs +++ b/Petabit/Models/StationStatus.cs @@ -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 Crew = [ @@ -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;