Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 1x 1x 1x 1x 1x | import Weather from "../src/model/Weather"; import City from "../src/model/City"; export const CITIES_DATA: City[] = [ new City("Paris", 48.866667, 2.333333,"France"), new City("Clermont-Ferrand", 45.777222, 3.087025,"France"), new City("Lyon", 45.764043, 4.835659,"France"), new City("Marseille", 43.296482, 5.36978,"France"), new City("Bruxelles", 50.85034, 4.35171,"France"), ]; export const FAVORITE_CITY_DATA = new City("Clermont-Ferrand", 45.777222, 3.087025, "FR"); export const DEFAULT_SELECTED_CITY_DATA: City = new City("Paris", 48.866667, 2.333333, "FR"); export const WEATHER_DATA: Weather[] = [ new Weather("2023-01-22 09:55:59", 10000, "Nuageux", "couvert", 7, -4.34, 82, 5.14, 1032, CITIES_DATA[0] ), new Weather("2023-01-22 09:55:59", 10000, "Nuageux", "couvert", 5, -4.34, 82, 5.14, 1032, CITIES_DATA[1] ), new Weather("2023-01-22 09:55:59", 10000, "Nuageux", "couvert", 6, -4.34, 82, 5.14, 1032, CITIES_DATA[2] ), new Weather("2023-01-22 09:55:59", 10000, "Nuageux", "couvert", 10, -4.34, 82, 5.14, 1032, CITIES_DATA[3] ), new Weather("2023-01-22 09:55:59", 10000, "Nuageux", "couvert", 9, -4.34, 82, 5.14, 1032, CITIES_DATA[4] ), ]; export const getCurrentWeather = (cityName: string) => { if (cityName === undefined) return {}; return WEATHER_DATA.filter(elt => elt.city.name === cityName)[0]; } |