我正在使用openweathermap.org获取城市的天气。
jsonp调用正在运行,一切正常,但生成的对象包含未知单位的温度:
{
//...
"main": {
"temp": 290.38, // What unit of measurement is this?
"pressure": 1005,
"humidity": 72,
"temp_min": 289.25,
"temp_max": 291.85
},
//...
}
这是一个console.log
完整对象的演示。
我不认为产生的温度是华氏温度,因为将290.38
华氏温度转换为摄氏温度为143.544
。
有谁知道openweathermap返回的温度单位是什么?
答案 0 :(得分:102)
看起来像kelvin。将开尔文转换为摄氏温度很简单:只需减去273.15。
the API documentation上的最简短的一瞥告诉我们,如果您将&units=metric
添加到您的请求中,您将会收回摄氏数。
答案 1 :(得分:9)
这似乎是开尔文,但您可以指定要为temp返回的格式,例如:
http://api.openweathermap.org/data/2.5/weather?q=London&mode=json&units=metric
或
http://api.openweathermap.org/data/2.5/weather?q=London&mode=json&units=imperial
答案 2 :(得分:2)
Kelvin to Fahrenheit是:
(( kelvinValue - 273.15) * 9/5) + 32
我注意到,如果传入的话,并非所有的OpenWeatherApp调用都会读取units参数。 (此错误的一个示例: http://api.openweathermap.org/data/2.5/group?units=Imperial&id=5375480,4737316,4164138,5099133,4666102,5391811,5809844,5016108,4400860,4957280&appid=XXXXXX) 开尔文仍然归还。
答案 3 :(得分:1)
您可以将单位更改为公制。
这是我的代码。
<head>
<script src="http://code.jquery.com/jquery-1.6.1.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.min.js"></script>
<style type="text/css">]
body{
font-size: 100px;
}
#weatherLocation{
font-size: 40px;
}
</style>
</head>
<body>
<div id="weatherLocation">Click for weather</div>
<div id="location"><input type="text" name="location"></div>
<div class="showHumidity"></div>
<div class="showTemp"></div>
<script type="text/javascript">
$(document).ready(function() {
$('#weatherLocation').click(function() {
var city = $('input:text').val();
let request = new XMLHttpRequest();
let url = `http://api.openweathermap.org/data/2.5/weather?q=${city}&units=metric&appid=[YOUR API KEY HERE]`;
request.onreadystatechange = function() {
if (this.readyState === 4 && this.status === 200) {
let response = JSON.parse(this.responseText);
getElements(response);
}
}
request.open("GET", url, true);
request.send();
getElements = function(response) {
$('.showHumidity').text(`The humidity in ${city} is ${response.main.humidity}%`);
$('.showTemp').text(`The temperature in Celcius is ${response.main.temp} degrees.`);
}
});
});
</script>
</body>
答案 4 :(得分:0)
首先确定所需的格式。 在BASE_URL中发送城市后,仅添加&mode = json&units = metric 。您将从服务器获取直接的摄氏温度。