This commit is contained in:
Tatiana Villa Ema 2026-02-18 00:15:05 +01:00
parent b2967c9ed3
commit c0b0dc875a
6 changed files with 17 additions and 1 deletions

View File

@ -0,0 +1,14 @@
SELECT
DATE(fecha) AS dia,
MAX(temp_max) AS temp_max,
MIN(temp_min) AS temp_min,
AVG(humedad) AS humedad,
SUM(lluvia) AS lluvia,
AVG(nubes) AS nubes,
AVG(viento_velocidad) AS viento_velocidad,
AVG(viento_direccion) AS viento_direccion
FROM weather
WHERE ciudad LIKE CONCAT('%', 'madrid', '%')
AND DATE(fecha) BETWEEN '2026-02-01' AND '2026-02-17'
GROUP BY DATE(fecha)
ORDER BY DATE(fecha);

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

BIN
favicon1.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -6,7 +6,7 @@
</head> </head>
<body> <body>
<header> <header>
<link rel="icon" href="img/eltiempo-logo.png" type="image/x-icon"> <link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/estilos.css"> <link rel="stylesheet" href="css/estilos.css">
<h1>Temario TAI AGE</h1> <h1>Temario TAI AGE</h1>

View File

@ -7,6 +7,7 @@
<script src="js/piedra.js" defer></script> <script src="js/piedra.js" defer></script>
<link rel="stylesheet" href="css/piedra-papel-tijera.css"> <link rel="stylesheet" href="css/piedra-papel-tijera.css">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head> </head>
<body> <body>

View File

@ -7,6 +7,7 @@
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css"> <link rel="stylesheet" href="css/style.css">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head> </head>
<body class="bg-black text-light"> <body class="bg-black text-light">