local-weather/app/defaultState.ts

102 lines
2.2 KiB
TypeScript
Raw Normal View History

import { coordType } from "@/types/types";
2024-05-05 20:55:51 +00:00
export const defaultState = {
results: [
{
address_components: [
{
long_name: "Sluseholmen",
short_name: "Sluseholmen",
types: ["route"],
},
{
long_name: "Vesterbro",
short_name: "Vesterbro",
types: ["political", "sublocality", "sublocality_level_1"],
},
{
long_name: "København",
short_name: "København",
types: ["locality", "political"],
},
{
long_name: "Denmark",
short_name: "DK",
types: ["country", "political"],
},
{
long_name: "2450",
short_name: "2450",
types: ["postal_code"],
},
],
formatted_address: "Sluseholmen, 2450 København, Denmark",
geometry: {
bounds: {
northeast: {
lat: 55.64754749999999,
lng: 12.5502837,
2024-05-05 20:55:51 +00:00
},
southwest: {
lat: 55.6435823,
lng: 12.5452758,
2024-05-05 20:55:51 +00:00
},
},
location: {
lat: 55.6452427,
lng: 12.5475522,
},
location_type: "GEOMETRIC_CENTER",
viewport: {
northeast: {
lat: 55.64754749999999,
lng: 12.5502837,
2024-05-05 20:55:51 +00:00
},
southwest: {
lat: 55.6435823,
lng: 12.5452758,
2024-05-05 20:55:51 +00:00
},
},
},
place_id: "ChIJBzR68YNUUkYRoxbRfFuUlEM",
types: ["route"],
},
],
status: "OK",
};
export const defaultForecast = {
coord: { lon: 12.5476, lat: 55.6452 },
weather: [
{ id: 803, main: "Clouds", description: "broken clouds", icon: "04n" },
],
base: "stations",
main: {
temp: 284.38,
feels_like: 283.83,
temp_min: 283.94,
temp_max: 285.38,
pressure: 1013,
humidity: 87,
},
visibility: 10000,
wind: { speed: 3.09, deg: 60 },
clouds: { all: 75 },
dt: 1715027131,
sys: {
type: 1,
id: 1575,
country: "DK",
sunrise: 1714965344,
sunset: 1715021822,
},
timezone: 7200,
id: 2618424,
name: "Copenhagen municipality",
cod: 200,
};
export const defaultGeoLocation: coordType = {
lat: 55.647229603577124,
lng: 12.54995987788925
}