gpt4 book ai didi

python - openweathermap API 错误

转载 作者:行者123 更新时间:2023-12-01 02:20:58 28 4
gpt4 key购买 nike

我正在尝试按纬度和经度获取当前天气数据。这是我的 Python 代码的一部分:

import requests

def get_weather(lat, lon):
return requests.get(f'http://api.openweathermap.org/data/2.5/weather?lat={lat}&lon={lon},fr&appid=<MY API KEY>').json()

print(get_weather(96.95, 21.83))

它返回:

{"cod":"400","message":"96.95 is not a float"}

你知道出了什么问题吗?

最佳答案

当提供的纬度或经度超出范围时,将出现此错误消息。纬度 96.95 不在有效纬度范围内。

Latitudes range from -90 to 90. Longitudes range from -180 to 180.

range source: https://stackoverflow.com/a/16743805/1816667

关于python - openweathermap API 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47952691/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com