All Projects → fedy2 → yahoo-weather-java-api

fedy2 / yahoo-weather-java-api

Licence: other
A Java API for the yahoo weather service

Programming Languages

java
68154 projects - #9 most used programming language
Batchfile
5799 projects
shell
77523 projects

Projects that are alternatives of or similar to yahoo-weather-java-api

ioBroker.dwd
Fetches weather warnings from "Deutscher Wetterdienst" (germany only)
Stars: ✭ 19 (-26.92%)
Mutual labels:  weather, weather-forecast
wetterdienst
Open weather data for humans
Stars: ✭ 190 (+630.77%)
Mutual labels:  weather, weather-forecast
WeatherApp MVI sample
🌸[Functional reactive programming (FRP)] 🍁Simple Android weather forecast application written in Kotlin, using RxKotlin, Retrofit2, Mosby, Room Persistence ❄️MVI Pattern with Mosby Library
Stars: ✭ 106 (+307.69%)
Mutual labels:  weather, weather-forecast
WorldWeather
The largest three-dimensional web-based interactive browser of satellite, weather, climate, and other time-aware geospatial data on the web, built upon NASA's revolutionary WorldWind technology.
Stars: ✭ 49 (+88.46%)
Mutual labels:  weather, weather-forecast
info-bot
🤖 A Versatile Telegram Bot
Stars: ✭ 37 (+42.31%)
Mutual labels:  weather, weather-forecast
api
Community discussion and documentation for the NWS API
Stars: ✭ 168 (+546.15%)
Mutual labels:  weather, weather-forecast
AZ-Touch-Pi0-Weather
AZ-Touch PiZero Weatherstation
Stars: ✭ 31 (+19.23%)
Mutual labels:  weather, weather-forecast
AndroidWeatherApp
Android WeatherApp, using the http://openweathermap.org/ API. Made for Network + JSON Parsing and Material Design Experiments.
Stars: ✭ 17 (-34.62%)
Mutual labels:  weather
SmaAt-UNet
PyTorch-Code for the Paper "SmaAt-UNet: Precipitation Nowcasting using a Small, Attentive UNet-Architecture"
Stars: ✭ 112 (+330.77%)
Mutual labels:  weather-forecast
eorzea-weather
Weather forecast for Eorzea.
Stars: ✭ 26 (+0%)
Mutual labels:  weather
react-weather-app
An attempt to make an ultimate weather app. In ReactJS, with React hooks and context.
Stars: ✭ 39 (+50%)
Mutual labels:  weather
WeatherSwiftUI
Implementation of the Weather app using SwiftUI and OpenWeather API.
Stars: ✭ 37 (+42.31%)
Mutual labels:  weather
wingpanel-indicator-weather
Weather app for elementary os
Stars: ✭ 12 (-53.85%)
Mutual labels:  weather
dc-plugins
基于DC-SDK开发的插件库,包含动画、效果、天气、材质、热区图层、聚合图层🌎
Stars: ✭ 40 (+53.85%)
Mutual labels:  weather
Weather
用WPF写的日历天气桌面小程序
Stars: ✭ 44 (+69.23%)
Mutual labels:  weather
weather
基于MVP的安卓天气demo
Stars: ✭ 49 (+88.46%)
Mutual labels:  weather
Beauty
从中央天气网获取七天天气数据http://www.weather.com.cn/ 搜索框联想功能,根据输入联想位置名称和城市代码 窗体呈现,每一个卡片在hover时有三个动画,上升一定高度,阴影渐变出现,offset渐变增加,卡片上方按钮渐变出现
Stars: ✭ 16 (-38.46%)
Mutual labels:  weather
descent
Elegant now playing display for Last.fm showing song metadata and local weather.
Stars: ✭ 97 (+273.08%)
Mutual labels:  weather
natsuha-weather
Natsuha Weather for WeChat Mini Program.
Stars: ✭ 33 (+26.92%)
Mutual labels:  weather
dwdweather2
Python client to access weather data from Deutscher Wetterdienst (DWD), the federal meteorological service in Germany.
Stars: ✭ 68 (+161.54%)
Mutual labels:  weather

yahoo-weather-java-api Build Status

Current version is not working because the yql service by Yahoo has been dismissed (https://developer.yahoo.com/yql/)

A Java library for the yahoo weather service.

The library is a lightweight wrapper for the Yahoo Weather API (http://developer.yahoo.com/weather/).

The only required dependency is the slf4j-api library.

Usage example:

YahooWeatherService service = new YahooWeatherService();
Channel channel = service.getForecast("2502265", DegreeUnit.CELSIUS);
System.out.println(channel.getDescription());

Dependency declaration:

<dependency>
     <groupId>com.github.fedy2</groupId>
     <artifactId>yahoo-weather-java-api</artifactId>
     <version>2.0.2</version>
</dependency>

Changelog:

* 2.0.2 Fixes time parsing when minutes are not padded.
* 2.0.1 Fixes RFC822 date parsing. Fixed lastBuildDate field parsing.
* 2.0.0 Changed whole implementation to use YQL for querying
* 1.2.0 YahooWeatherService constructor now accepts a Proxy to be used during service connections
* 1.1.0 Updated data model: Atmosphere and Wind numeric values have been replaced by corresponding Classes (int to Integer and float to Float) in order to support "missing" values in Weather system response.
* 1.0.1 fixed issues on Date parsing and local settings
* 1.0.0 first release
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].