Iβve been trying to get the auto scheduler running on my ground station and I am getting permission errors. Running the command from the crontab example in a shell:
sudo ~/env/bin/python ~/env/bin/schedule_single_station.py -s 3132 -d 1.2 -P ~/env/bin/priorities_3132.txt -f -z
I get this result:
2023-07-15 22:44:20,670 - auto_scheduler.satnogs_client - INFO - Requesting information for ground station 3132
2023-07-15 22:44:21,266 - auto_scheduler.satnogs_client - INFO - Ground station information retrieved!
2023-07-15 22:44:21,823 - root - INFO - Finding all passes for 840 satellites:
100%|βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ| 840/840 [00:32<00:00, 25.67it/s]
2023-07-15 22:44:54,574 - auto_scheduler.satnogs_client - INFO - Requesting scheduled passes for ground station 3132
2023-07-15 22:44:55,543 - auto_scheduler.satnogs_client - INFO - Scheduled passes for ground station 3132 retrieved!
2023-07-15 22:44:55,558 - root - INFO - Found 0 scheduled passes between 2023-07-15 22:54:20 and 2023-07-16 00:06:20 on ground station 3132
2023-07-15 22:44:55,560 - root - INFO - 2 passes selected out of 71, 1463 s out of 2733 s at 53.526% efficiency
2023-07-15 22:44:55,561 - root - INFO - GS | Sch | NORAD | Start time | End time | Duration | El | Priority | Transmitter UUID | Mode | Satellite name
2023-07-15 22:44:55,562 - root - INFO - 3132 | N | 56745 | 2023-07-15T23:08:18 | 2023-07-15T23:19:52 | 0:11:34 | 25 | 1.000000 | fDywUVLPJc2FMkFoYv7EeV | MSK | {βnameβ: βSNIPE 2β}
2023-07-15 22:44:55,562 - root - INFO - 3132 | N | 40014 | 2023-07-15T23:41:02 | 2023-07-15T23:53:50 | 0:12:48 | 68 | 1.000000 | NSXo8tGxmxpTUMsmSH34FF | FSK | {βnameβ: βBUGSAT-1 (TITA)β}
2023-07-15 22:44:55,563 - root - INFO - Scheduling all unscheduled passes listed above.
2023-07-15 22:44:56,522 - auto_scheduler.satnogs_client - ERROR - Failed to batch-schedule the passes. Reason: {βnon_field_errorsβ: [βNo permission to schedule observations on station: 3132β]}
2023-07-15 22:44:56,522 - auto_scheduler.satnogs_client - ERROR - Fall-back to single-pass scheduling.
2023-07-15 22:44:57,244 - auto_scheduler.satnogs_client - ERROR - Failed to schedule the pass at 2023-07-15 23:19:52. Reason: {βnon_field_errorsβ: [βNo permission to schedule observations on station: 3132β]}
2023-07-15 22:44:58,020 - root - INFO - Done.
Any ideas on what I can check to resolve the βNo Permissionβ errors?
George