Skip to content

Instantly share code, notes, and snippets.

@xccds
Created April 29, 2012 12:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save xccds/2550075 to your computer and use it in GitHub Desktop.
Save xccds/2550075 to your computer and use it in GitHub Desktop.
get weather data from wunderground
# 加载所需扩展包
library(RCurl)
library(RJSONIO)
library(XML)
# 建立一个根据网址提取天气预报的子函数
fromurl<- function(finalurl) {
# 先读取网页,再解析JSON数据存在raw中
web <- getURL(finalurl)
raw <-fromJSON(web)
high <- raw$forecast$simpleforecast$forecastday[[2]]$high['celsius']
low <- raw$forecast$simpleforecast$forecastday[[2]]$low['celsius']
condition <- raw$forecast$simpleforecast$forecastday[[2]]$conditions
currenttemp <- raw$current_observation$temp_c
currentweather <- raw$current_observation$weather
city <- as.character(raw$current_observation$display_location['full'])
result <-list(city=city,current=paste(currenttemp,'°C ',currentweather,sep=''),
tomorrow=paste(high,'°C','-',low,'°C ',condition,sep=''))
names(result) <-c('城市','当前', '明天')
return(result)
}
# 提取天气预报的主函数
getweather <- function(city='') {
# 如果用户输入为空,则根据IP地址来查询
if (city == '') {
finalurl <- 'http://api.wunderground.com/api/yourkey/conditions/
forecast/lang:CN/q/autoip.json'
return(fromurl(finalurl))
# 否则就调用google API,这时需要用XML包来解析数据得到经纬度
} else {
requestUrl<-paste("http://maps.googleapis.com/maps/api/geocode/xml?address="
,city,"&sensor=false", sep="")
xmlResult<-xmlTreeParse(requestUrl,isURL=TRUE)
root <- xmlRoot(xmlResult)
lat <-xmlValue(root[['result']][['geometry']][['location']][['lat']])
lon <-xmlValue(root[['result']][['geometry']][['location']][['lng']])
url <- 'http://api.wunderground.com/api/yourkey/conditions/forecast/lang:CN/q/'
# 将经纬度与其它信息相结合,形成查询地址
finalurl <- paste(url,as.character(lat),',',as.character(lon),'.json',sep='')
return(fromurl(finalurl))
}
}
@williamwanliliu
Copy link

very helpful! THs!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment