|
9 | 9 | <dependency> |
10 | 10 | <groupId>com.github.prominence</groupId> |
11 | 11 | <artifactId>openweathermap-api</artifactId> |
12 | | - <version>2.1.0</version> |
| 12 | + <version>2.1.1-SNAPSHOT</version> |
13 | 13 | </dependency> |
14 | 14 | ``` |
15 | 15 |
|
16 | 16 | ### Gradle coordinates: |
17 | 17 |
|
18 | 18 | ```groovy |
19 | | -compile('com.github.prominence:openweathermap-api:2.1.0') |
| 19 | +compile('com.github.prominence:openweathermap-api:2.1.1-SNAPSHOT') |
20 | 20 | ``` |
21 | 21 |
|
22 | 22 | ### How to use: |
@@ -332,38 +332,40 @@ You are able to set preferable options(via chain methods) and execute appropriat |
332 | 332 |
|
333 | 333 | `com.github.prominence.openweathermap.api.model.onecall.current.Hourly`'s useful public methods(setters are not listed): |
334 | 334 |
|
335 | | -| Method | Description | |
336 | | -|-----------------------------------|---------------------------------------------------------------------------------------------------| |
337 | | -| `getForecastTime()` | Returns `LocalDateTime` object with weather forecast time. | |
338 | | -| `getWeatherState()` | Returns `WeatherState` object with basic weather state information. | |
339 | | -| `getTemperature()` | Returns `Temperature` object. Available fields: `value`, `feelsLike`, `dewPoint` and `unit`. | |
340 | | -| `getAtmosphericPressure()` | Returns `AtmosphericPressure` object. Available fields: `seaLevelValue`. | |
341 | | -| `getHumidity()` | Returns `Humidity` object. Available fields: `value` and `unit`. | |
342 | | -| `getClouds()` | Returns `Clouds` object. Available fields: `value` and `unit`. | |
343 | | -| `getUvIndex()` | Returns UV index value. | |
344 | | -| `getVisibilityInMetres()` | Returns visibility in metres. | |
345 | | -| `getWind()` | Returns `Wind` object. Available fields: `speed`, `degrees`, `gust` and `unit`. | |
346 | | -| `getProbabilityOfPrecipitation()` | Returns probability of precipitation(not percentage). | |
347 | | -| `getRain()` | Returns `Rain` object. Available fields: `oneHourLevel` and `unit`. | |
348 | | -| `getSnow()` | Returns `Snow` object. Available fields: `oneHourLevel` and `unit`. | |
| 335 | +| Method | Description | |
| 336 | +|-----------------------------------------------|---------------------------------------------------------------------------------------------------| |
| 337 | +| `getForecastTime()` | Returns `LocalDateTime` object with weather forecast time. | |
| 338 | +| `getWeatherState()` | Returns `WeatherState` object with basic weather state information. | |
| 339 | +| `getTemperature()` | Returns `Temperature` object. Available fields: `value`, `feelsLike`, `dewPoint` and `unit`. | |
| 340 | +| `getAtmosphericPressure()` | Returns `AtmosphericPressure` object. Available fields: `seaLevelValue`. | |
| 341 | +| `getHumidity()` | Returns `Humidity` object. Available fields: `value` and `unit`. | |
| 342 | +| `getClouds()` | Returns `Clouds` object. Available fields: `value` and `unit`. | |
| 343 | +| `getUvIndex()` | Returns UV index value. | |
| 344 | +| `getVisibilityInMetres()` | Returns visibility in metres. | |
| 345 | +| `getWind()` | Returns `Wind` object. Available fields: `speed`, `degrees`, `gust` and `unit`. | |
| 346 | +| `getProbabilityOfPrecipitation()` | Returns probability of precipitation(not percentage). | |
| 347 | +| `getProbabilityOfPrecipitationPercentage()` | Returns probability of precipitation percentage. | |
| 348 | +| `getRain()` | Returns `Rain` object. Available fields: `oneHourLevel` and `unit`. | |
| 349 | +| `getSnow()` | Returns `Snow` object. Available fields: `oneHourLevel` and `unit`. | |
349 | 350 |
|
350 | 351 | `com.github.prominence.openweathermap.api.model.onecall.current.Daily`'s useful public methods(setters are not listed): |
351 | 352 |
|
352 | | -| Method | Description | |
353 | | -|-----------------------------------|---------------------------------------------------------------------------------------------------| |
354 | | -| `getForecastTime()` | Returns `LocalDateTime` object with weather forecast time. | |
355 | | -| `getSunriseTime()` | Returns `LocalDateTime` object with sunrise time. | |
356 | | -| `getSunsetTime()` | Returns `LocalDateTime` object with sunset time. | |
357 | | -| `getWeatherState()` | Returns `WeatherState` object with basic weather state information. | |
358 | | -| `getTemperature()` | Returns `DailyTemperature` object. Available fields: `value`, `feelsLike`, `dewPoint` and `unit`. | |
359 | | -| `getAtmosphericPressure()` | Returns `AtmosphericPressure` object. Available fields: `seaLevelValue`. | |
360 | | -| `getHumidity()` | Returns `Humidity` object. Available fields: `value` and `unit`. | |
361 | | -| `getWind()` | Returns `Wind` object. Available fields: `speed`, `degrees`, `gust` and `unit`. | |
362 | | -| `getClouds()` | Returns `Clouds` object. Available fields: `value` and `unit`. | |
363 | | -| `getUvIndex()` | Returns UV index value. | |
364 | | -| `getProbabilityOfPrecipitation()` | Returns probability of precipitation(not percentage). | |
365 | | -| `getRain()` | Returns `DailyRain` object. Available fields: `value`. | |
366 | | -| `getSnow()` | Returns `DailySnow` object. Available fields: `value`. | |
| 353 | +| Method | Description | |
| 354 | +|-----------------------------------------------|---------------------------------------------------------------------------------------------------| |
| 355 | +| `getForecastTime()` | Returns `LocalDateTime` object with weather forecast time. | |
| 356 | +| `getSunriseTime()` | Returns `LocalDateTime` object with sunrise time. | |
| 357 | +| `getSunsetTime()` | Returns `LocalDateTime` object with sunset time. | |
| 358 | +| `getWeatherState()` | Returns `WeatherState` object with basic weather state information. | |
| 359 | +| `getTemperature()` | Returns `DailyTemperature` object. Available fields: `value`, `feelsLike`, `dewPoint` and `unit`. | |
| 360 | +| `getAtmosphericPressure()` | Returns `AtmosphericPressure` object. Available fields: `seaLevelValue`. | |
| 361 | +| `getHumidity()` | Returns `Humidity` object. Available fields: `value` and `unit`. | |
| 362 | +| `getWind()` | Returns `Wind` object. Available fields: `speed`, `degrees`, `gust` and `unit`. | |
| 363 | +| `getClouds()` | Returns `Clouds` object. Available fields: `value` and `unit`. | |
| 364 | +| `getUvIndex()` | Returns UV index value. | |
| 365 | +| `getProbabilityOfPrecipitation()` | Returns probability of precipitation(not percentage). | |
| 366 | +| `getProbabilityOfPrecipitationPercentage()` | Returns probability of precipitation percentage. | |
| 367 | +| `getRain()` | Returns `DailyRain` object. Available fields: `value`. | |
| 368 | +| `getSnow()` | Returns `DailySnow` object. Available fields: `value`. | |
367 | 369 |
|
368 | 370 | `com.github.prominence.openweathermap.api.model.onecall.current.Alert`'s useful public methods(setters are not listed): |
369 | 371 |
|
|
0 commit comments