From b39af0055bb32aa3385517735d419fad36368e80 Mon Sep 17 00:00:00 2001 From: Daniel Himmelstein Date: Sun, 5 Jan 2025 22:03:53 -0500 Subject: [PATCH] solar model descriptions --- openskistats/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openskistats/models.py b/openskistats/models.py index 513e30d8ed..6ff961f46e 100644 --- a/openskistats/models.py +++ b/openskistats/models.py @@ -49,7 +49,7 @@ class SkiRunUsage(StrEnum): _solar_irradiation_description = ( "This value measures solar irradiation by treating each run segment as a plane according to its latitude, longitude, elevation, bearing, and slope. " - "Solar irradiance is computed using clear sky estimates for diffuse normal irradiance, global horizontal irradiance, and direct horizontal irradiance according to the Ineichen and Perez model with Linke turbidity.", + "Solar irradiance is computed using clear sky estimates for diffuse normal irradiance, global horizontal irradiance, and direct horizontal irradiance according to the Ineichen and Perez model with Linke turbidity." ) @@ -438,7 +438,7 @@ class SkiAreaModel(Model): # type: ignore [misc] solar_irradiation_season: Annotated[ float | None, Field( - description="Average daily solar irradiation received by run segments over the course of a typical 120 ski season in kilowatt-hours per square meter (kW/m²/day). " + description="Average daily solar irradiation received by run segments over the course of a typical 120 day ski season in kilowatt-hours per square meter (kW/m²/day). " "The average is weighted by the vertical drop of each segment. " f"{_solar_irradiation_description}", ),