| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import {Injectable} from '@angular/core';
- import {HttpClient} from '@angular/common/http';
- import {Observable} from 'rxjs';
- import {environment} from '@environments/environment';
- import {first, map} from 'rxjs/operators';
- @Injectable({
- providedIn: 'root'
- })
- export class WeatherService {
- private readonly baseURL = 'https://api.openweathermap.org/data/2.5/weather?q=';
- private readonly forcastURL = 'https://api.openweathermap.org/data/2.5/forecast?q=';
- private readonly appID = environment.appID;
- constructor(public http: HttpClient) {
- }
- getWeather(city: string, metric: 'metric' | 'imperial' = 'metric'): Observable<any> {
- return this.http.get(
- `${this.baseURL}${city}&units=${metric}&APPID=${this.appID}&lang=ES`).pipe();
- }
- getForecast(city: string, metric: 'metric' | 'imperial' = 'metric'): Observable<any> {
- return this.http.get(
- `${this.forcastURL}${city}&units=${metric}&APPID=${this.appID}`)
- .pipe(first(), map((weather) => weather['list']));
- }
- // [0].main
- // getWeatherState
- //
- // getCurrentTemp
- // Math.round(Number(weather.main.temp))
- //
- //
- // getCurrentHum
- // weather.main.humidity
- //
- //
- // getCurrentWind
- // Math.round(Math.round(weather.wind.speed))
- }
|