list the GS connected to the node at a certain time
(self, line)
| 153 | output("The neighbors are: " + str(neighbors_index) + ".\n") |
| 154 | |
| 155 | def do_get_GSes(self, line): |
| 156 | "list the GS connected to the node at a certain time" |
| 157 | arg, args, line = self.parseline(line) |
| 158 | rest = line.split(' ') |
| 159 | GSes = self.sn.get_GSes(int(rest[0]), int(rest[1])) |
| 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" |