使用 Yql 查询纬度、经度参数获取天气信息
我使用以下 YQL 查询来获取天气信息
有没有办法以经度、纬度作为YQL查询参数来获取天气信息。
I am using the following YQL query to get weather information
Is there any way to get weather information using longitude, latitude as YQL query parameter.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用子选择从纬度/经度对转到 WOEID< /a> 就像
(在 YQL 控制台中尝试)
You could use a sub-select to go from a latitude/longitude pair to a WOEID like
(Try in YQL console)
这对我有用:
……
然后:
This works for me:
...
... and then:
我发现了一些有用的东西;如果您需要预测天气 yql 使用
SELECT * FROM Weather.bylocation WHERE location='印度尼西亚'
从 Weather.forecast 中选择 *,其中 location=90210
I have found some thing use ful; if you need to forcast weather yql use the
SELECT * FROM weather.bylocation WHERE location='Indonesia'
select * from weather.forecast where location=90210