@@ -20,11 +20,11 @@ public static string Print() {
2020 str += $ "Current Precipitation: { ShowPrecipitation ( ) } \n ";
2121 str += $ "Current Humidity: { Data . Current . Humidity } %\n ";
2222 str += $ "Current Cloud Cover: { Data . Current . Cloud } %\n ";
23- str += $ "Current UV Index: { Data . Current . UvIndex } ({ ShowUvIndex ( ) } )";
23+ str += $ "Current UV Index: { Data . Current . UvIndex } ({ ShowUvIndex ( ) } )\n \n ";
2424 str += ShowAlerts ( ) ;
2525 str += ShowForecast ( ) ;
2626 str += ShowAirQuality ( ) ;
27- str += $ "\n \n Last Update: { Data . Current . LastUpdated } ";
27+ str += $ "Last Update: { Data . Current . LastUpdated } ";
2828
2929 return str ;
3030 }
@@ -41,7 +41,7 @@ private static string ShowAlerts() {
4141 return "" ;
4242 }
4343
44- return alerts . WeatherAlerts . Aggregate ( "\n \n ALERTS :\n " , ( current , alert ) => current + $ "{ alert . AlertHeadline } :\n { alert . AlertDescription } \n \n ") ;
44+ return alerts . WeatherAlerts . Aggregate ( "ALERTS :\n " , ( current , alert ) => current + $ "{ alert . AlertHeadline } :\n { alert . AlertDescription } \n \n ") ;
4545 }
4646
4747 private static string ShowForecast ( ) {
@@ -53,14 +53,14 @@ private static string ShowForecast() {
5353
5454 var forecast = Data . Forecast . ForecastsDay [ 1 ] . Day ;
5555
56- str += "\n \n FORECAST :" ;
56+ str += "FORECAST :" ;
5757 str += $ "\n Tomorrow it will be { forecast . Condition . ConditionState } ";
5858 str += $ "{ ShowForecastTemp ( ) } ";
5959 str += $ "\n Maximum Wind Speed: { ShowForecastWindSpeed ( ) } ";
6060 str += $ "\n Average Visibility: { ShowForecastVisibility ( ) } ";
6161 str += $ "\n Maximum Precipitation: { ShowForecastPrecipitation ( ) } ";
6262 str += $ "\n UV Index: { forecast . UvIndex } ({ ShowForecastUvIndex ( ) } )";
63- str += $ "\n Chance of rain/snow: { forecast . ChanceOfRain } % / { forecast . ChanceOfSnow } %";
63+ str += $ "\n Chance of rain/snow: { forecast . ChanceOfRain } % / { forecast . ChanceOfSnow } %\n \n ";
6464
6565 return str ;
6666 }
@@ -135,14 +135,14 @@ private static string ShowAirQuality() {
135135
136136 string str = "" ;
137137
138- str += "\n \n AIR QUALITY:\n " ;
138+ str += "AIR QUALITY:\n " ;
139139 str += $ "Carbon Monoxide: { Math . Round ( airQuality . Co , 2 ) } μg/m³\n ";
140140 str += $ "Nitrogen Dioxide: { Math . Round ( airQuality . No2 , 2 ) } μg/m³\n ";
141141 str += $ "Ozone: { Math . Round ( airQuality . O3 , 2 ) } μg/m³\n ";
142142 str += $ "Sulphur Dioxide: { Math . Round ( airQuality . So2 , 2 ) } μg/m³\n ";
143143 str += $ "Fine Particles Matter: { Math . Round ( airQuality . Pm25 , 2 ) } μg/m³\n ";
144144 str += $ "Coarse Particles Matter: { Math . Round ( airQuality . Pm10 , 2 ) } μg/m³\n ";
145- str += $ "US Epa Index: { airQuality . UsEpaIndex } ({ PrintEpaStandards ( airQuality . UsEpaIndex ) } )";
145+ str += $ "US Epa Index: { airQuality . UsEpaIndex } ({ PrintEpaStandards ( airQuality . UsEpaIndex ) } )\n \n ";
146146
147147 return str ;
148148 }
0 commit comments