list the LLA of a node at a certain time
(self, line)
| 160 | output("The connected GS(es) is(are): " + str(GSes) + ".\n") |
| 161 | |
| 162 | def do_get_position(self, line): |
| 163 | "list the LLA of a node at a certain time" |
| 164 | arg, args, line = self.parseline(line) |
| 165 | rest = line.split(' ') |
| 166 | LLA = self.sn.get_position(int(rest[0]), int(rest[1])) |
| 167 | output("The LLA is: " + str(LLA)) |
| 168 | |
| 169 | def do_get_IP(self, line): |
| 170 | "list the IP of a node" |
nothing calls this directly
no test coverage detected