(current_sat_id, current_orbit_id, sat_num)
| 39 | |
| 40 | |
| 41 | def get_down_satellite(current_sat_id, current_orbit_id, sat_num): |
| 42 | if current_sat_id == sat_num - 1: |
| 43 | return [0, current_orbit_id] |
| 44 | else: |
| 45 | return [current_sat_id + 1, current_orbit_id] |
| 46 | |
| 47 | |
| 48 | def sn_load_file(path, GS_lat_long): |
nothing calls this directly
no outgoing calls
no test coverage detected