You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starlink v0.9 (mission CRS-14 reused capsule #79) is using a different Starlink badge as all the other Starlink missions. This one is notably bigger.
The block number of B1019 and B1020 are listed as '1' which is associated with 'v1.1', however wikipedia lists them as 'FT' which generally seems to be associated with block '2' in this data set.
More of a question than an issue, but wikipedia also says: "Since no data is provided, F9s listed as simply "FT" (Full Thrust) denote Blocks 1 to 3, while Block 4 is listed as "FT Block 4"". In this data set however, there is a distinction between block 2 and 3. How is this data determined?
Also, I'm currently using the following code to determine the booster version; is there perhaps a better way to accomplish this:
varversion:String{
if booster ==.falcon1 {return""}else if booster ==.falcon9 {
if serial[1]=="0"{return"v1.0"}else if ["B1019","B1020"].contains(serial){return"FT"}else{
switch block {case1:return"v1.1"case2:return"FT"case3:return"FT"case4:return"block 4"case5:return"block 5"default:return""}}}return""}
The text was updated successfully, but these errors were encountered:
Also, I'm currently using the following code to determine the booster version; is there perhaps a better way to accomplish this:
The text was updated successfully, but these errors were encountered: