我正在开发一个应用程序,我想要包含的功能之一是能够获取用户位置并将其转换为WOEID值,然后从Yahoo Weather RSS提要获取天气数据。以下是说明WOEID值要求的文档: http://developer.yahoo.com/weather/
答案 0 :(得分:1)
您可以使用Yahoo! PlaceFinder API获取WOEID。首先,您需要申请API密钥,然后您可以发送您的请求:
http://where.yahooapis.com/geocode?q=[search query]&appid=[yourappidhere]
你会得到这个作为回应:
<ResultSet xmlns:ns1="http://www.yahooapis.com/v1/base.rng" version="2.0" xml:lang="en-US">
<Error>0</Error>
<ErrorMessage>No error</ErrorMessage>
<Locale>en-US</Locale>
<Found>1</Found>
<Quality>85</Quality>
<Result>
<quality>85</quality>
<latitude>38.898708</latitude>
<longitude>-77.036369</longitude>
<offsetlat>38.89719</offsetlat>
<offsetlon>-77.036537</offsetlon>
<radius>400</radius>
<name/>
<line1>1600 Pennsylvania Ave NW</line1>
<line2>Washington, DC 20500-0005</line2>
<line3/>
<line4>United States</line4>
<house>1600</house>
<street>Pennsylvania Ave NW</street>
<xstreet/>
<unittype/>
<unit/>
<postal>20500-0005</postal>
<neighborhood/>
<city>Washington</city>
<county>District of Columbia</county>
<state>District of Columbia</state>
<country>United States</country>
<countrycode>US</countrycode>
<statecode>DC</statecode>
<countycode>DC</countycode>
<uzip>20500</uzip>
<hash>4216F67AA1A143E9</hash>
<woeid>12766118</woeid> // This is what you need
<woetype>11</woetype>
</Result>
</ResultSet>
您可以解析<woeid>
标记的响应。
修改强>
如果您有一个EditText,并且您希望根据他从输入中获得的城市获得天气,那么您将不得不这样做:
String searchQuery = Uri.encode(myEditText.getText().toString());
现在您将拥有搜索查询。因此,例如,如果用户键入:
汉堡德国
然后将它转换为:
Hamburg_Germany