Return number of waypoints. :return: The number of waypoints in the sequence.
(self)
| 2720 | |
| 2721 | @property |
| 2722 | def count(self): |
| 2723 | ''' |
| 2724 | Return number of waypoints. |
| 2725 | |
| 2726 | :return: The number of waypoints in the sequence. |
| 2727 | ''' |
| 2728 | return max(self._vehicle._wploader.count() - 1, 0) |
| 2729 | |
| 2730 | @property |
| 2731 | def next(self): |