-
Notifications
You must be signed in to change notification settings - Fork 0
/
openweathermap.org.html
215 lines (194 loc) · 8.45 KB
/
openweathermap.org.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>OpenMétéo - OpenWeather</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #111;
color: #fff;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: flex-start;
}
.weather-card {
margin: 20px;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
max-width: 300px;
}
ul {
padding-left: 0;
}
a {
color: #0070FF;
}
.api-key-container {
margin-bottom: 20px;
}
</style>
</head>
<body>
<h1>OpenMétéo</h1>
<h3>OpenWeather (<a href="https://home.openweathermap.org/api_keys">openweathermap.org</a>)</h3>
<br>
<div>
<label for="color-picker">Arrière-plan :</label>
<input type="color" id="color-picker" onchange="changeBackgroundColor()">
</div>
<br></br>
<br></br>
<p>github.com/LeBazarDeBryan</p>
<div class="container">
<div class="weather-card" id="current-weather-card">
<h2>Actuelle</h2>
<hr>
<p id="current-temperature"></p>
<p id="current-conditions"></p>
<p id="current-humidity"></p>
<p id="current-wind"></p>
<p id="current-feels-like"></p>
<hr>
</div>
<div class="weather-card" id="hourly-weather-card">
<h2>Heure par heure</h2>
<hr>
<ul id="hourly-forecast"></ul>
</div>
<div class="weather-card" id="weekly-weather-card">
<h2>Hebdomadaire</h2>
<hr>
<ul id="weekly-forecast"></ul>
</div>
</div>
<div class="api-key-container">
<label for="api-key">Clé API :</label>
<input type="text" id="api-key" placeholder="Entrez votre clé API">
<button onclick="updateApiKey()">Mettre à jour</button>
</div>
<script>
let apiKey = ''; // Variable pour stocker la clé API
// Fonction pour formater la date complète
function formatDateTime(dateObj) {
const options = {
weekday: 'long',
day: 'numeric',
month: 'long',
year: 'numeric'
};
return dateObj.toLocaleDateString('fr-FR', options);
}
// Fonction pour obtenir les informations météorologiques actuelles
function getCurrentWeather(latitude, longitude) {
const apiUrl = `https://api.openweathermap.org/data/2.5/weather?lat=${latitude}&lon=${longitude}&appid=${apiKey}&units=metric&lang=fr`;
fetch(apiUrl)
.then(response => response.json())
.then(data => {
const currentData = data.main;
const weather = data.weather[0];
document.getElementById('current-temperature').textContent = `Température : ${currentData.temp}°C`;
document.getElementById('current-conditions').textContent = `Conditions : ${weather.description}`;
document.getElementById('current-humidity').textContent = `Humidité : ${currentData.humidity}%`;
document.getElementById('current-wind').textContent = `Vitesse du vent : ${data.wind.speed} km/h`;
document.getElementById('current-feels-like').textContent = `Ressenti : ${currentData.feels_like}°C`;
})
.catch(error => console.error('Une erreur s\'est produite:', error));
}
// Fonction pour obtenir les prévisions météorologiques horaires
function getHourlyForecast(latitude, longitude) {
const apiUrl = `https://api.openweathermap.org/data/2.5/forecast?lat=${latitude}&lon=${longitude}&appid=${apiKey}&units=metric&lang=fr`;
fetch(apiUrl)
.then(response => response.json())
.then(data => {
const hourlyData = data.list;
const hourlyForecastList = document.getElementById('hourly-forecast');
hourlyForecastList.innerHTML = ''; // Efface le contenu précédent avant d'afficher les nouvelles données
hourlyData.forEach(interval => {
const dateTime = new Date(interval.dt * 1000); // Convertir la date en millisecondes
const time = dateTime.getHours().toString().padStart(2, '0') + ':' + dateTime.getMinutes().toString().padStart(2, '0');
const temperature = interval.main.temp;
const weatherCode = interval.weather[0].description;
const listItem = document.createElement('li');
listItem.innerHTML = `${formatDateTime(dateTime)} - ${time}<br>${temperature}°C<br>Conditions: ${weatherCode}<hr>`;
listItem.style.listStyle = 'none'; // Ajouter un style CSS pour masquer le point de la liste
hourlyForecastList.appendChild(listItem);
});
})
.catch(error => console.error('Une erreur s\'est produite:', error));
}
// Fonction pour obtenir les prévisions météorologiques hebdomadaires
function getWeeklyForecast(latitude, longitude) {
const apiUrl = `https://api.openweathermap.org/data/2.5/forecast/daily?lat=${latitude}&lon=${longitude}&appid=${apiKey}&units=metric&cnt=7&lang=fr`;
fetch(apiUrl)
.then(response => response.json())
.then(data => {
const dailyData = data.list;
const weeklyForecastList = document.getElementById('weekly-forecast');
weeklyForecastList.innerHTML = ''; // Efface le contenu précédent avant d'afficher les nouvelles données
dailyData.forEach(interval => {
const dateTime = new Date(interval.dt * 1000); // Convertir la date en millisecondes
const minTemperature = interval.temp.min;
const maxTemperature = interval.temp.max;
const weatherCode = interval.weather[0].description;
const listItem = document.createElement('li');
listItem.innerHTML = `${formatDateTime(dateTime)}<br><br>Température Min : ${minTemperature}°C<br>Température Max : ${maxTemperature}°C<br>Conditions: ${weatherCode}<hr>`;
listItem.style.listStyle = 'none'; // Ajouter un style CSS pour masquer le point de la liste
weeklyForecastList.appendChild(listItem);
});
})
.catch(error => console.error('Une erreur s\'est produite:', error));
}
// Fonction pour obtenir la position de l'utilisateur et appeler les fonctions de récupération des donnéesmétéorologiques
function getLocationAndWeather() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(
position => {
const latitude = position.coords.latitude;
const longitude = position.coords.longitude;
getCurrentWeather(latitude, longitude);
getHourlyForecast(latitude, longitude);
getWeeklyForecast(latitude, longitude);
},
error => console.error('Erreur lors de la récupération de la position:', error)
);
} else {
console.error('La géolocalisation n\'est pas prise en charge par ce navigateur.');
}
}
// Appeler la fonction pour obtenir la position de l'utilisateur et afficher les informations météorologiques
getLocationAndWeather();
// Fonction pour mettre à jour la clé API
function updateApiKey() {
const apiKeyInput = document.getElementById('api-key');
apiKey = apiKeyInput.value;
getLocationAndWeather();
}
// Fonction pour changer la couleur d'arrière-plan
function changeBackgroundColor() {
const colorPicker = document.getElementById('color-picker');
const body = document.body;
const textColor = calculateContrastColor(colorPicker.value);
body.style.backgroundColor = colorPicker.value;
body.style.color = textColor;
}
// Fonction pour calculer la couleur de contraste en fonction de la couleur d'arrière-plan
function calculateContrastColor(backgroundColor) {
const hexColor = backgroundColor.replace('#', '');
const red = parseInt(hexColor.substring(0, 2), 16);
const green = parseInt(hexColor.substring(2, 4), 16);
const blue = parseInt(hexColor.substring(4, 6), 16);
const luminance = (0.299 * red + 0.587 * green + 0.114 * blue) / 255;
return luminance > 0.5 ? '#000' : '#fff';
}
</script>
</body>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8012919770859575"
crossorigin="anonymous"></script>
</html>