From 8b57d3eb2b42d406f67af35f8a907c9fbf72e73c Mon Sep 17 00:00:00 2001 From: Patrick Zippenfenig Date: Wed, 24 Jul 2024 13:06:23 +0200 Subject: [PATCH] link to aws registry (#17) --- README.md | 2 +- tutorial_download_era5/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d71694f..2a3d5df 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Open-Meteo on AWS Open Data -**AWS Bucket Name and Region: [s3://openmeteo](https://openmeteo.s3.amazonaws.com/index.html#data/); us-west-2** +**AWS Bucket Name and Region: [s3://openmeteo](https://openmeteo.s3.amazonaws.com/index.html#data/); us-west-2; [AWS Registry](https://registry.opendata.aws/open-meteo/)** Open-Meteo integrates weather models from well-known national weather services, delivering a rapid weather API. Real-time weather forecasts are unified within a time-series database that covers both historical and future weather data. Open-Meteo is designed to analyse long time-series of weather data any place on earth. diff --git a/tutorial_download_era5/README.md b/tutorial_download_era5/README.md index 5ccc9d6..cde42db 100644 --- a/tutorial_download_era5/README.md +++ b/tutorial_download_era5/README.md @@ -92,7 +92,7 @@ responses = openmeteo.weather_api(url, params=params) # Process first location. Add a for-loop for multiple locations or weather models 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")