|
7 | 7 | *
|
8 | 8 | * @package openweather-laravel-api
|
9 | 9 | * @author Md. Rakibul Islam <[email protected]>
|
10 |
| - * @version 1.6 |
11 | 10 | * @since 2021-01-09
|
12 | 11 | */
|
13 | 12 |
|
14 | 13 | class Weather
|
15 | 14 | {
|
16 |
| - /** |
17 |
| - * current weather api endpoint : https://api.openweathermap.org/data/2.5/weather. |
18 |
| - * See documentation : https://openweathermap.org/current. |
19 |
| - * |
20 |
| - * @var string |
21 |
| - */ |
22 |
| - |
23 |
| - protected $current = 'weather?'; |
24 |
| - |
25 |
| - /** |
26 |
| - * onecall api endpoint : https://api.openweathermap.org/data/2.5/onecall. |
27 |
| - * See documentation : https://openweathermap.org/api/one-call-api |
28 |
| - * |
29 |
| - * @var string |
30 |
| - */ |
31 |
| - |
32 |
| - protected $one_call = 'onecall?'; |
33 |
| - |
34 |
| - /** |
35 |
| - * hourly forecast 5 Days 3 hour api endpoint : https://api.openweathermap.org/data/2.5/forecast. |
36 |
| - * See documentation : https://openweathermap.org/forecast5. |
37 |
| - * |
38 |
| - * @var string |
39 |
| - */ |
40 |
| - |
41 |
| - protected $forecast = 'forecast?'; |
42 |
| - |
43 |
| - /** |
44 |
| - * last 5 Days history api endpoint : https://api.openweathermap.org/data/2.5/onecall/timemachine. |
45 |
| - * See documentation : https://openweathermap.org/api/one-call-api#history |
46 |
| - * |
47 |
| - * @var string |
48 |
| - */ |
49 |
| - |
50 |
| - protected $historical = 'onecall/timemachine?'; |
51 |
| - |
52 |
| - /** |
53 |
| - * air pollution api endpoint : https://api.openweathermap.org/data/2.5/air_pollution. |
54 |
| - * See documentation : https://openweathermap.org/api/air-pollution. |
55 |
| - * |
56 |
| - * @var string |
57 |
| - */ |
58 |
| - |
59 |
| - protected $air_pollution = 'air_pollution?'; |
60 |
| - /** |
61 |
| - * temp_format available strings are c, f, k. |
62 |
| - * |
63 |
| - * @var string |
64 |
| - */ |
65 |
| - |
66 |
| - |
67 |
| - /** |
68 |
| - * Access current weather data for any location on Earth including over 200,000 cities! Open Weathe Map API collect and process weather data from different sources such as global and local weather models, satellites, radars and vast network of weather stations. |
69 |
| - * documentation : https://openweathermap.org/current. |
70 |
| - * |
71 |
| - * @param array $query |
72 |
| - * |
73 |
| - */ |
74 |
| - |
75 |
| - |
76 |
| - private function getCurrent(array $query) |
77 |
| - { |
78 |
| - $data = (new WeatherClient)->client()->fetch($this->current, $query); |
79 |
| - |
80 |
| - return (new WeatherFormat())->formatCurrent($data); |
81 |
| - } |
82 |
| - |
83 |
| - /** |
84 |
| - * Make just one API call and get all your essential weather data for a specific location with OpenWeather One Call API. |
85 |
| - * documentation : https://openweathermap.org/api/one-call-api. |
86 |
| - * |
87 |
| - * @param array $query |
88 |
| - * |
89 |
| - */ |
90 |
| - |
91 |
| - private function getOneCall(array $query) |
92 |
| - { |
93 |
| - $data = (new WeatherClient)->client()->fetch($this->one_call, $query); |
94 |
| - |
95 |
| - return (new WeatherFormat())->formatOneCall($data); |
96 |
| - } |
97 |
| - |
98 |
| - /** |
99 |
| - * 5 day forecast is available at any location or city. It includes weather forecast data with 3-hour step. |
100 |
| - * documentation : https://openweathermap.org/forecast5. |
101 |
| - * |
102 |
| - * @param array $query |
103 |
| - * |
104 |
| - */ |
105 |
| - |
106 |
| - private function get3Hourly(array $query) |
107 |
| - { |
108 |
| - $data = (new WeatherClient)->client()->fetch($this->forecast, $query); |
109 |
| - |
110 |
| - return (new WeatherFormat())->format3Hourly($data); |
111 |
| - } |
112 |
| - |
113 |
| - /** |
114 |
| - * Historical weather data for the previous 5 days |
115 |
| - * documentation : https://openweathermap.org/api/one-call-api#history. |
116 |
| - * |
117 |
| - * @param array $query |
118 |
| - * |
119 |
| - */ |
120 |
| - |
121 |
| - private function getHistorical(array $query) |
122 |
| - { |
123 |
| - $data = (new WeatherClient)->client()->fetch($this->historical, $query); |
124 |
| - |
125 |
| - return (new WeatherFormat())->formatHistorical($data); |
126 |
| - } |
127 |
| - |
128 |
| - /** |
129 |
| - * Air Pollution API concept |
130 |
| - * Air Pollution API provides current, forecast and historical air pollution data for any coordinates on the globe |
131 |
| - * Besides basic Air Quality Index, the API returns data about polluting gases, such as Carbon monoxide (CO), Nitrogen monoxide (NO), |
132 |
| - * Nitrogen dioxide (NO2), Ozone (O3),Sulphur dioxide (SO2), Ammonia (NH3), and particulates (PM2.5 and PM10). |
133 |
| - * Air pollution forecast is available for 5 days with hourly granularity. |
134 |
| - * documentation : https://openweathermap.org/api/air-pollution. |
135 |
| - * |
136 |
| - * @param array $query |
137 |
| - * |
138 |
| - */ |
139 |
| - |
140 |
| - private function getAirPollution(array $query) |
141 |
| - { |
142 |
| - $data = (new WeatherClient)->client()->fetch($this->air_pollution, $query); |
143 |
| - |
144 |
| - return (new WeatherFormat())->formatAirPollution($data); |
145 |
| - } |
146 |
| - |
147 |
| - |
148 |
| - /** |
149 |
| - * Geocoding API is a simple tool that we have developed to ease the search for locations while working with geographic names and coordinates. |
150 |
| - * documentation : https://openweathermap.org/api/geocoding-api. |
151 |
| - * |
152 |
| - * @param array $query |
153 |
| - * |
154 |
| - */ |
155 |
| - |
156 |
| - private function getGeo(string $type, array $query) |
157 |
| - { |
158 |
| - return (new WeatherClient)->client('geo')->fetch($type, $query); |
159 |
| - } |
160 |
| - |
161 | 15 | public function getCurrentByCity(string $city)
|
162 | 16 | {
|
163 | 17 | if (! is_numeric($city)) {
|
@@ -272,4 +126,106 @@ public function getGeoByCord(string $lat, string $lon, string $limit = null)
|
272 | 126 |
|
273 | 127 | return $this->getGeo('reverse?', $params);
|
274 | 128 | }
|
| 129 | + |
| 130 | + /** |
| 131 | + * Access current weather data for any location on Earth including over 200,000 cities! |
| 132 | + * Open Weathe Map API collect and process weather data from different sources such as global |
| 133 | + * and local weather models, satellites, radars and vast network of weather stations. |
| 134 | + * |
| 135 | + * Documentation : https://openweathermap.org/current. |
| 136 | + * |
| 137 | + * @param array $query |
| 138 | + * |
| 139 | + */ |
| 140 | + private function getCurrent(array $query) |
| 141 | + { |
| 142 | + $ep = 'data/' . config('openweather.weather_api_version', '2.5') . '/weather?'; |
| 143 | + |
| 144 | + $data = (new WeatherClient)->client()->fetch($ep, $query); |
| 145 | + |
| 146 | + return (new WeatherFormat())->formatCurrent($data); |
| 147 | + } |
| 148 | + |
| 149 | + /** |
| 150 | + * Make just one API call and get all your essential weather data for a specific location with OpenWeather One Call API. |
| 151 | + * documentation : https://openweathermap.org/api/one-call-api. |
| 152 | + * |
| 153 | + * @param array $query |
| 154 | + * |
| 155 | + */ |
| 156 | + private function getOneCall(array $query) |
| 157 | + { |
| 158 | + $ep = 'data/' . config('openweather.onecall_api_version', '2.5') . '/onecall?'; |
| 159 | + $data = (new WeatherClient)->client()->fetch($ep, $query); |
| 160 | + |
| 161 | + return (new WeatherFormat())->formatOneCall($data); |
| 162 | + } |
| 163 | + |
| 164 | + /** |
| 165 | + * 5 day forecast is available at any location or city. It includes weather forecast data with 3-hour step. |
| 166 | + * documentation : https://openweathermap.org/forecast5. |
| 167 | + * |
| 168 | + * @param array $query |
| 169 | + * |
| 170 | + */ |
| 171 | + private function get3Hourly(array $query) |
| 172 | + { |
| 173 | + $ep = 'data/' . config('openweather.forecast_api_version', '2.5') . '/forecast?'; |
| 174 | + $data = (new WeatherClient)->client()->fetch($ep, $query); |
| 175 | + |
| 176 | + return (new WeatherFormat())->format3Hourly($data); |
| 177 | + } |
| 178 | + |
| 179 | + /** |
| 180 | + * Historical weather data for the previous 5 days |
| 181 | + * documentation : https://openweathermap.org/api/one-call-api#history. |
| 182 | + * |
| 183 | + * @param array $query |
| 184 | + * |
| 185 | + */ |
| 186 | + private function getHistorical(array $query) |
| 187 | + { |
| 188 | + $ep = 'data/' . config('openweather.historical_api_version', '2.5') . '/onecall/timemachine?'; |
| 189 | + $data = (new WeatherClient)->client()->fetch($ep, $query); |
| 190 | + |
| 191 | + return (new WeatherFormat())->formatHistorical($data); |
| 192 | + } |
| 193 | + |
| 194 | + /** |
| 195 | + * Air Pollution API concept |
| 196 | + * Air Pollution API provides current, forecast and historical air pollution data for any coordinates on the globe |
| 197 | + * Besides basic Air Quality Index, the API returns data about polluting gases, such as Carbon monoxide (CO), Nitrogen monoxide (NO), |
| 198 | + * Nitrogen dioxide (NO2), Ozone (O3),Sulphur dioxide (SO2), Ammonia (NH3), and particulates (PM2.5 and PM10). |
| 199 | + * Air pollution forecast is available for 5 days with hourly granularity. |
| 200 | + * |
| 201 | + * Documentation : https://openweathermap.org/api/air-pollution. |
| 202 | + * |
| 203 | + * @param array $query |
| 204 | + * |
| 205 | + */ |
| 206 | + private function getAirPollution(array $query) |
| 207 | + { |
| 208 | + $ep = 'data/' . config('openweather.pollution_api_version', '2.5') . '/air_pollution?'; |
| 209 | + $data = (new WeatherClient)->client()->fetch($ep, $query); |
| 210 | + |
| 211 | + return (new WeatherFormat())->formatAirPollution($data); |
| 212 | + } |
| 213 | + |
| 214 | + |
| 215 | + /** |
| 216 | + * Geocoding API is a simple tool that we have developed to ease the search for locations |
| 217 | + * while working with geographic names and coordinates. |
| 218 | + * |
| 219 | + * Documentation : https://openweathermap.org/api/geocoding-api. |
| 220 | + * |
| 221 | + * @param string $type |
| 222 | + * @param array $query |
| 223 | + * |
| 224 | + */ |
| 225 | + private function getGeo(string $type, array $query) |
| 226 | + { |
| 227 | + $ep = 'geo/' . config('openweather.geo_api_version', '1.0') . '/' . $type; |
| 228 | + |
| 229 | + return (new WeatherClient)->client()->fetch($ep, $query); |
| 230 | + } |
275 | 231 | }
|
0 commit comments