问题标签 [weather-api]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
jquery - Forecast.io API 使用 jQuery
我在使用 API 创建完整的应用程序时遇到了一些麻烦,特别是 Forecast.io 天气 API。为简单起见,我将我的 JS 直接放在我的 HTML 页面中。对于这个基本版本,我很乐意让这个展示一些东西。假设我想要当前温度(当前 -> 温度)。另外,我不确定“?回调?” 始终推荐用于所有 RESTful API。
javascript - Values Not Being Passed Using API & JS
I'm creating a simple application to get the user's coordinates, plug them into the Forecast API, and get back the current weather. Things seem to be working smoothly for the first 2 parts but when it's all put together, the coordinates are not passed properly into the API call even though they are printed just fine. Pretty confused and appreciate any help.
ios - 在 UILabel 中显示 JSON 信息
我从 World Weather Online 获取 JSON,我试图在标签中显示华氏温度,但是当我运行它时,该标签显示 (null)。JSON 在控制台中显示良好,所以我知道它正在提取正确的数据。有任何想法吗?
的结果NSLog(@"weather: %@", weather);
我试图用我发布的代码来完成这项工作。NSDictionary *weatherConditions = [weather objectAtIndex:0];
如果我使用天气数组,应用程序会崩溃[__NSCFDictionary objectAtIndex:]: unrecognized selector sent to instance 0xa158f70
更新:我解决了它为 temp_F 返回 NULL 的问题。
这是当前代码:
我现在遇到的唯一问题是 weatherIconUrl 现在返回 NULL,我不知道为什么。
ios - EXC_BAD_ACCESS 与 worldweatheronline API
在我的 iOS 应用程序中,我正在使用 worldweatheronline.com 的天气 API,但我得到一个随机的“EXC_BAD_ACCESS”错误哦,这一行(并非总是但有时):
这是我的代码:
}
javascript - 使用openweathermap api进行时间预报
我正在使用 openweathermap api 使用提供的 api 将预报打印到屏幕上。
我想要做的是获取未来或过去给定时间的预测,我可以在 api 调用的结果中看到这些信息。我不确定如何获得这些信息?它看起来是 unix 时间戳和人类可读格式,但我可以看到如何在 api 中打印出给定时间的预测?
谢谢
web-services - 如何从气象站获取气象数据?
我一直在寻找如何获取气象站的历史数据。
一个站有两个 ID: - ISD(前 074969)见http://www.ncdc.noaa.gov/oa/climate/isd/ - PWS(前 IFRANCEC5)见http://french.wunderground.com/气象站/about.asp
无论是使用 wunderground.com 还是 forecast.io API,我都可以在 13 年 1 月 1 日通过该站记录天气。
有人可以帮忙吗?
python - 如何使用 NOAA API 查询给定坐标集的过去天气数据
我正在尝试使用纬度和经度坐标检索过去的 NOAA 数据。我对温度、风速、云量和降水等变量的历史时间序列和年度总结都很感兴趣。
例如:2008-02-20 13:00 在 (25.033972, 121.564493)
我希望自动化一个流程,为 900,000 多个地点实现这一目标。有任何想法吗?理想情况下,该脚本将使用 R 或 Python 编写。
javascript - 从开放天气图 API 返回的数据没有意义
我正在使用Open Weather Map API
. 我还在玩电话。我正在查看 2 个特定调用的结果。一个是 for London
,另一个是 for Hermanus
in South Africa
。我观察到,并非 Hermanus 调用中返回的所有数据都包含在 London 调用中返回的数据中。
这是我的两个电话:
- http://api.openweathermap.org/data/2.5/weather?q=london,uk
- http://api.openweathermap.org/data/2.5/weather?q=hermanus,za
伦敦返回的数据是:
Hermanus 返回的数据是:
为什么一个包含某些数据而另一个不包含?我怎样才能找出可以从这样的调用中返回的所有内容?我怎么知道退回的每件商品的含义?