bug5450: implement Percent Target Boat Speed as leaderboard column;

for ORC PCS compute it based on implied wind divided by current wind
speed
This commit is contained in:
Axel Uhl
2025-02-06 11:30:38 +01:00
parent c3b9d4d518
commit cea7f47a4a
20 changed files with 148 additions and 30 deletions
@@ -1410,4 +1410,10 @@ public class MockedTrackedRace implements DynamicTrackedRace {
public UUID getCourseAreaId() {
return null;
}
@Override
public Double getPercentTargetBoatSpeed(Competitor competitor, TimePoint timePoint,
WindLegTypeAndLegBearingAndORCPerformanceCurveCache cache) {
return null;
}
}
@@ -934,4 +934,10 @@ public class MockedTrackedRaceWithStartTimeAndRanks implements TrackedRace {
public UUID getCourseAreaId() {
return null;
}
@Override
public Double getPercentTargetBoatSpeed(Competitor competitor, TimePoint timePoint,
WindLegTypeAndLegBearingAndORCPerformanceCurveCache cache) {
return null;
}
}