(self, file_path, configuration_file_path, inclination,
satellite_altitude, orbit_number, sat_number, duration,
antenna_number, GS_lat_long, antenna_inclination,
intra_routing, hello_interval, AS)
| 17 | class Observer(): |
| 18 | |
| 19 | def __init__(self, file_path, configuration_file_path, inclination, |
| 20 | satellite_altitude, orbit_number, sat_number, duration, |
| 21 | antenna_number, GS_lat_long, antenna_inclination, |
| 22 | intra_routing, hello_interval, AS): |
| 23 | self.file_path = file_path |
| 24 | self.configuration_file_path = configuration_file_path |
| 25 | self.inclination = inclination |
| 26 | self.satellite_altitude = satellite_altitude |
| 27 | self.orbit_number = orbit_number |
| 28 | self.sat_number = sat_number |
| 29 | self.duration = duration |
| 30 | self.antenna_number = antenna_number |
| 31 | self.GS_lat_long = GS_lat_long |
| 32 | self.antenna_inclination = antenna_inclination |
| 33 | self.intra_routing = intra_routing |
| 34 | self.hello_interval = hello_interval |
| 35 | self.AS = AS |
| 36 | |
| 37 | def access_P_L_shortest(self, sat_cbf, fac_cbf, fac_num, sat_num, |
| 38 | num_orbits, num_sats_per_orbit, duration, fac_ll, |
nothing calls this directly
no outgoing calls
no test coverage detected