From 0fa1aa7fea6c7b8d15a0aa3c4e3e785a5f4eab33 Mon Sep 17 00:00:00 2001 From: cwasicki <126617870+cwasicki@users.noreply.github.com> Date: Wed, 3 Jan 2024 17:49:25 +0100 Subject: [PATCH] Minor: Fix doc for 2m temperature in proto specs --- proto/frequenz/api/weather/weather.proto | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/proto/frequenz/api/weather/weather.proto b/proto/frequenz/api/weather/weather.proto index cf37764..ee6b484 100644 --- a/proto/frequenz/api/weather/weather.proto +++ b/proto/frequenz/api/weather/weather.proto @@ -43,8 +43,9 @@ enum ForecastFeature { // Default value. When used, the API responds with all features listed below. FORECAST_FEATURE_UNSPECIFIED = 0; - // Temperature at 2 m altitude. It is the temperature of the air at a height - // of 2 metres above the surface of land, sea or in-land waters. + // Temperature at 2 m above the earth's surface. It is the temperature of + // the air at a height of 2 metres above the surface of land, sea or + // in-land waters. // Measured in Kelvin. To convert to Celsius, subtract 273.15. FORECAST_FEATURE_TEMPERATURE_2_METRE = 1;