Skip to content

Add the new Space Bees #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 5, 2022
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,9 @@ const char myAltitude[] = "100"; // <-- Update this wi

// At the time or writing:
// Swarm satellites are named: SPACEBEE-n or SPACEBEENZ-n
// I guess SPACEBEENZ could be in a special orbit for New Zealand?
// SPACEBEE numbers are 1 - 111 (8 and 9 are missing)
// SPACEBEENZ numbers are 1 - 10
const int maxSats = 120;
// SPACEBEE numbers are 1 - 139 (8 and 9 are missing)
// SPACEBEENZ numbers are 1 - 14
const int maxSats = 152;

// Stop checking when we find this many satellite duplications for a single satellite
// (When > 24 hours of passes have been processed)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Kindly provided by:
// https://celestrak.com/NORAD/elements/table.php?tleFile=swarm&title=Swarm%20Satellites&orbits=0&pointsPerRev=90&frame=1

const int maxSwarmNORAD = 111;
const int maxSwarmNORAD = 139;
const unsigned long swarmNORAD[] = {
0,
43142, // SPACEBEE-1
Expand Down Expand Up @@ -115,10 +115,38 @@ const unsigned long swarmNORAD[] = {
48895, // SPACEBEE-108
48897, // SPACEBEE-109
48899, // SPACEBEE-110
48904 // SPACEBEE-111
48904, // SPACEBEE-111
52025, // SPACEBEE-112
52024, // SPACEBEE-113
52010, // SPACEBEE-114
52016, // SPACEBEE-115
52023, // SPACEBEE-116
52022, // SPACEBEE-117
52012, // SPACEBEE-118
52015, // SPACEBEE-119
52013, // SPACEBEE-120
52009, // SPACEBEE-121
52014, // SPACEBEE-122
52027, // SPACEBEE-123
52029, // SPACEBEE-124
52021, // SPACEBEE-125
52011, // SPACEBEE-126
52020, // SPACEBEE-127
52182, // SPACEBEE-128
52179, // SPACEBEE-129
52176, // SPACEBEE-130
52181, // SPACEBEE-131
52185, // SPACEBEE-132
52183, // SPACEBEE-133
52180, // SPACEBEE-134
52187, // SPACEBEE-135
52164, // SPACEBEE-136
52186, // SPACEBEE-137
52166, // SPACEBEE-138
52177 // SPACEBEE-139
};

const int maxSwarmNZNORAD = 10;
const int maxSwarmNZNORAD = 14;
const unsigned long swarmNZNORAD[] = {
0,
46959, // SPACEBEENZ-1
Expand All @@ -130,5 +158,9 @@ const unsigned long swarmNZNORAD[] = {
48889, // SPACEBEENZ-7
48891, // SPACEBEENZ-8
48887, // SPACEBEENZ-9
48882 // SPACEBEENZ-10
48882, // SPACEBEENZ-10
52019, // SPACEBEENZ-11
52028, // SPACEBEENZ-12
52026, // SPACEBEENZ-13
52018 // SPACEBEENZ-14
};