How to get Yahoo's woeid by location?

旧时模样 提交于 2019-11-30 14:28:07

Yahoo has moved to paid service called BOSS but they do offer a non-commercial service:

Non-Commercial usage of Yahoo Geo API's

Yahoo! continues to fully support developer applications built on top of Placefinder and PlaceSpotter in non-commercial settings. Both services are available to you via YQL and rate limited to 2000 queries per table. Learn more about using the Placefinder and Placespotter YQL tables.

Using Placefinder you can reverse lookup a latitude and longitude:

http://developer.yahoo.com/yql/console/?q=select%20*%20from%20geo.placefinder%20where%20text%3D%2237.416275%2C-122.025092%22%20and%20gflags%3D%22R%22

which can be converted into a json request:

http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20geo.placefinder%20where%20text%3D%2237.416275%2C-122.025092%22%20and%20gflags%3D%22R%22&format=json

Istvan

A city can also be used as location as follows:

select * 
from weather.forecast 
where woeid in (
    select woeid 
    from geo.places(1) 
    where text="frankfurt"
) and u="c"

Where "frankfurt" can be replaced with any location of choice.

To get the Yahoo Weather WOEID by latitude and longitude, you can use this

https://query.yahooapis.com/v1/public/yql?q=select%20woeid%20from%20geo.places%20where%20text%3D%22(20,34)%22%20limit%201&diagnostics=false&format=json

And you will receive a response like the following:

{
  "query":{
    "count":1,
    "created":"2017-03-17T20:34:50Z",
    "lang":"es-AR",
    "results":{
      "place":{
        "woeid":"1435509"
      }
    }
  }
}

If still someone need answear. You have basic URL:

https://query.yahooapis.com/v1/public/yql?q=

Now you have to make correct YQL statement (replace city with your city name) e.x.

select * from geo.places where text="city"

Now you have to encode to URI. You can use javascript method: encodeURIComponent(). Then you have to merge basicURL and encoded YQL statement and

&format=json

So example of the whole link for San Francisco will be:

http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20geo.places%20where%20text%3D%22san%20francisco%2C%20ca%22&format=json

Now from response you have to get WOEID number. You can get it by: query>results>place>[0]>woeid

So in Javascript it will be something like:

const woeidNumber = responseObject['query']['results']['place'][0]['woeid'];
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!