mirror of
https://github.com/Prominence/openweathermap-java-api.git
synced 2026-01-09 19:46:41 +03:00
52 lines
1.1 KiB
Markdown
52 lines
1.1 KiB
Markdown
# OpenWeatherMap Java API
|
|
Java API for OpenWeatherMap services.
|
|
|
|
### Implemented features:
|
|
* Current weather data
|
|
* 5 day / 3 hour forecast
|
|
* 16 day / daily forecast
|
|
* UV Index
|
|
* Air pollution(beta)
|
|
|
|
### Will be implemented later:
|
|
Global changes in API and more functionality.
|
|
|
|
### Maven coordinates:
|
|
|
|
```xml
|
|
<dependency>
|
|
<groupId>com.github.prominence</groupId>
|
|
<artifactId>openweathermap-api</artifactId>
|
|
<version>1.2</version>
|
|
</dependency>
|
|
```
|
|
|
|
New experimental version:
|
|
```xml
|
|
<dependency>
|
|
<groupId>com.github.prominence</groupId>
|
|
<artifactId>openweathermap-api</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</dependency>
|
|
```
|
|
|
|
### Gradle coordinates:
|
|
|
|
```groovy
|
|
compile('com.github.prominence:openweathermap-api:1.2')
|
|
```
|
|
|
|
New experimental version:
|
|
```groovy
|
|
compile('com.github.prominence:openweathermap-api:2.0-SNAPSHOT')
|
|
```
|
|
|
|
### Documentation
|
|
* [OpenWeatherMap Java API - 1.0](docs/Release_1.0.md)
|
|
* [OpenWeatherMap Java API - 1.1](docs/Release_1.1.md)
|
|
* [OpenWeatherMap Java API - 1.2](docs/Release_1.2.md)
|
|
* [OpenWeatherMap Java API - SNAPSHOT](docs/SNAPSHOT.md)
|
|
|
|
### License
|
|
MIT
|