17 lines
990 B
TypeScript
17 lines
990 B
TypeScript
import { Forecast } from "@/types/types";
|
|
|
|
export async function GET(request: Request) {
|
|
const { searchParams } = new URL(request.url);
|
|
const lat = searchParams.get("lat");
|
|
const lng = searchParams.get("lng");
|
|
const res = await fetch(
|
|
`https://api.open-meteo.com/v1/forecast?latitude=${lat}&longitude=${lng}¤t=temperature_2m,apparent_temperature,is_day,precipitation,rain,showers,snowfall,weather_code,cloud_cover,wind_speed_10m,wind_direction_10m&hourly=temperature_2m,apparent_temperature,precipitation_probability,precipitation,weather_code,wind_speed_10m,is_day&daily=weather_code,temperature_2m_max,temperature_2m_min,apparent_temperature_max,apparent_temperature_min,sunrise,sunset,daylight_duration,sunshine_duration,uv_index_max,precipitation_sum,precipitation_hours,wind_speed_10m_max&timezone=auto`
|
|
);
|
|
if (!res.ok) {
|
|
throw new Error(`Failed to fetch the weather data`);
|
|
}
|
|
const data: Forecast = await res.json();
|
|
|
|
return Response.json({ data });
|
|
}
|