zoukankan      html  css  js  c++  java
  • 使用Google Weather API查询天气预报

     

    使用Google Weather API查询天气预报 收藏Google Weather API 只支持美国地区使用邮政编码进行查询,例如:

    http://www.google.com/ig/api?hl=zh-cn&weather=94043

    (94043 为 山景城, 美国加州 的邮政编码)

    而除了美国以外的地区需要使用经纬度坐标作为参数才能执行 Google Weather API, 例如:

    http://www.google.com/ig/api?hl=zh-cn&weather=,,,30670000,104019996

    (30670000,104019996 为 成都, 中国大陆 的经纬度坐标)

    当然,也可能通行城市名称的汉语拼音来查询,例如:以下是北京的天气

    http://www.google.com/ig/api?hl=zh-cn&weather=Beijing

    要其它地区的经纬度坐标,可以通过 Google API 提供的国家代码列表及相应的城市经纬度坐标列表可以查询到,以下是 Google API 提供的查询参数:

    http://www.google.com/ig/countries?output=xml&hl=zh-cn

    (查询 Google 所支持的所有国家的代码,并以 zh-cn 简体中文显示)

    http://www.google.com/ig/cities?output=xml&hl=zh-cn&country=cn

    http://www.google.com/ig/cities?country=cn

    缺省返回的是英文, 可以增加一个参数来返回中文:

    http://www.google.com/ig/api?weather=Nanjing&hl=zh-cn

    取得中国的所有城市代码:

    http://www.google.com/ig/cities?country=cn

    缺省返回是 JSON 格式.增加一个参数返回XML格式(Firefox 中不行)

    http://www.google.com/ig/cities?country=cn&output=xml

    注:中国天气网沈阳天气预报

    http://m.weather.com.cn/data/101070101.html

    注明:QQ技术交流群:108614806   感兴趣的加一下。

  • 相关阅读:
    ntp时钟同步
    io,进程监控
    Linux下修改主机名
    DataGuard主库增加联机日志
    external table
    linux卸载HBA卡驱动
    Oracle DataGuard延迟应用归档归档日志
    index unusable
    VBOX 克隆虚拟机
    device eth0 has different MAC address than expected,igoring
  • 原文地址:https://www.cnblogs.com/zhiqiangsimida/p/2774664.html
Copyright © 2011-2022 走看看