(self, miscParams, src, tgt)
| 93 | _extraDepth = 2 |
| 94 | |
| 95 | def _getCommonData(self, miscParams, src, tgt): |
| 96 | # Prepare time cache here because we need to do it only once, |
| 97 | # and this function is called once per point info fetch |
| 98 | self._prepareTimeCache(src=src, ancReload=miscParams['ancReload'], maxTime=miscParams['time']) |
| 99 | return {'rrMap': self._getRepsPerKey(src=src, ancReload=miscParams['ancReload'], time=miscParams['time'])} |
| 100 | |
| 101 | def _calculatePoint(self, x, miscParams, src, tgt, commonData): |
| 102 | distance = x |
nothing calls this directly
no test coverage detected