비행기에서 스타링크를 이용할 수 있을까?
📌 핵심 요약
스타링크(Starlink)를 탑재한 비행기의 정보를 제공하는 데이터베이스와 검색 도구가 개발되었습니다. 비행기 번호와 날짜를 입력하면 스타링크의 탑재 가능성을 예측할 수 있습니다.
📰 상세 내용
스타링크를 경험해본 사람들은 그 성능에 감명을 받았을 것입니다. 하지만 스타링크의 비행기 탑재 여부는 불규칙하고 예측하기 어렵습니다. 이를 해결하기 위해 스타링크를 도입한 항공사와 비행기 정보를 기반으로 한 데이터베이스를 구축했습니다. 사용자는 비행기 번호와 날짜를 입력하여 해당 비행기에 스타링크가 탑재될 확률을 확인할 수 있습니다. 현재 스타링크를 운영하는 항공사는 유나이티드(United), 하와이안(Hawaiian), 알래스카(Alaskan) 등 몇몇에 불과합니다.
💡 시사점
이 도구는 여행자들에게 스타링크의 이용 가능성을 미리 확인할 수 있는 유용한 자원이 될 것입니다. 또한 항공사들이 스타링크 서비스를 확대하는 데 도움을 줄 수 있습니다.
📄 Original (English)
Show HN: Will my flight have Starlink?
However, its availability on flights is patchy and hard to predict. So we built a database of all airlines that have rolled out Starlink (beyond just a trial), and a flight search tool to predict it. Plug in a flight number and date, and we'll estimate the likelihood of Starlink on-board based on aircraft type and tail number.
If you don’t have any trips coming up, you can also look up specific routes to see what flights offer Starlink. You can find it here: https://stardrift.ai/starlink .
-
I wanted to add a few notes on how this works too. There are three things we check, in order, when we answer a query:
- Does this airline have Starlink?
- Does this aircraft body have Starlink?
- Does this specific aircraft have Starlink?
Only a few airlines at all have Starlink right now: United, Hawaiian, Alaskan, Air France, Qatar, JSX, and a handful of others. So if an aircraft is operated by any other airline, we can issue a blanket no immediately.
Then, we check the actual body that's flying on the plane. Airlines usually publish equipment assignments in advance, and they're also rolling out Starlink body-by-body. So we know, for instance, that all JSX E145s have Starlink and that none of Air France's A320s have Starlink. (You can see a summary of our data at https://stardrift.ai/starlink/fleet-summary, though the live logic has a few rules not encoded there.)
If there's a complete match at the body type level, we can confidently tell you your flight will have Starlink. However, in most cases, the airline has only rolled out a partial upgrade to that aircraft type. In that case, we need to drill down a little more and figure out exactly which plane is flying on your route.
We can do this by looking up the 'tail number' (think of it as a license plate for the plane). Unfortunately, the tail number is usually only assigned a few days before a flight. So, before that, the best we can do is calculate the probability that your plane will be assigned an aircraft with Starlink enabled.
To do this, we had to build a mapping of aircraft tails to Starlink status. Here, I have to thank online airline enthusiasts who maintain meticulous spreadsheets and forum threads to track this data! As I understand it, they usually get this data from airline staff who are enthusiastic about Starlink rollouts, so it's a reliable, frequently updated source. Most of our work was finding each source, normalizing their formats, building a reliable & responsible system to pull them in, and then tying them together with our other data sources.
Basically, it's a data normalization problem! I