MCPcopy Create free account
hub / github.com/Thanas-R/Virdis / formatYield

Function formatYield

src/components/CropPlanningSection.tsx:1222–1225  ·  view source on GitHub ↗
(profile: CropProfile, suitabilityScore: number, healthScore: number)

Source from the content-addressed store, hash-verified

1220 currentBoost
1221 );
1222}
1223
1224function formatYield(profile: CropProfile, suitabilityScore: number, healthScore: number) {
1225 const multiplier = clamp(0.78 + suitabilityScore * 0.22 + healthScore * 0.12, 0.75, 1.25);
1226 return `${roundTo(profile.baseYield * multiplier)} t/ha`;
1227}
1228

Callers 1

buildLocalCropPlanFunction · 0.85

Calls 2

clampFunction · 0.85
roundToFunction · 0.85

Tested by

no test coverage detected