averageTPS property

double averageTPS

Retrieve the average number of tiles per second that are being downloaded

Uses an exponentially smoothed moving average algorithm instead of a linear average algorithm. This should lead to more accurate estimations based on this data. The full original algorithm (written in Python) can be found at https://stackoverflow.com/a/54264570/11846040.

Implementation

double get averageTPS => _progressManagement.averageTPS;