我正在开发一个应用程序,我想包含的功能之一是能够获取用户位置并将其转换为WOEID值,然后从Yahoo Weather RSS feed中获取天气数据。这是说明WOEID值要求的文档:
http://developer.yahoo.com/weather/

最佳答案

您可以使用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());


现在,您将拥有搜索查询。因此,例如,如果用户输入:


  德国汉堡


然后将其转换为:


  汉堡_德国

07-26 04:17