From 78e25ff4ee6595bca5d4b5a1502523b56e778b26 Mon Sep 17 00:00:00 2001 From: SB-511 <43184120+SB-511@users.noreply.github.com> Date: Tue, 2 Jul 2024 15:31:02 +0200 Subject: [PATCH] Update README.md (#71) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In the Python example, the coordinate identifiers °N and °E were swapped. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 373a64a..851602f 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ params = { responses = om.weather_api("https://api.open-meteo.com/v1/forecast", params=params) response = responses[0] -print(f"Coordinates {response.Latitude()}°E {response.Longitude()}°N") +print(f"Coordinates {response.Latitude()}°N {response.Longitude()}°E") print(f"Elevation {response.Elevation()} m asl") print(f"Timezone {response.Timezone()} {response.TimezoneAbbreviation()}") print(f"Timezone difference to GMT+0 {response.UtcOffsetSeconds()} s")