0

我是脚本新手,只专门研究过 arcpy 模块。我目前正在使用脚本从“http://weather.noaa.gov/pub/data/observations/metar/stations”获取风的详细信息。我需要在 Web 应用程序中集成风向,并且需要帮助修改脚本以仅以度数返回风向,这是我从“http://pypi.python.org/pypi/”下载脚本的链接metar/" 我尝试通过添加一个仅返回方向的函数来对 Metar.py 进行更改

 def windDirection(self):
      """
      Return a textual description of the wind conditions.

      Units may be specified as "MPS", "KT", "KMH", or "MPH".
      """
      if self.wind_speed == None:
          return "missing"
      elif self.wind_speed.value() == 0.0:
          text = "calm"
      else:
          wind_speed = self.wind_speed.string(units)
          text = "%s"(self.wind_dir.directVal)
      return text

还在 Datatypes.py 中添加了一个函数”

def directVal( self ):
    if not self._compass:
      degrees = 22.5 * round(self._degrees/22.5)
      if degrees == 360.0:
        self._directVal = "N"
      else:
        for name, d in direction.compass_dirs.iteritems():
          if d == degrees:
            self._directVal = name
            break
    return self._directVal

我不确定如何将此值作为报告以外的单独文本返回。请协助。

4

1 回答 1

0

METAR 数据的另一种方法(如果您在美国)是连接到该站的 NOAA 观测 XML 数据。虽然这有点冗长,但您可以使用我的 PARFAIT API 得到一个简单的答案。要返回 LAX 机场的当前风速,您可以使用 Current Weather API:http ://parfait.snarkybox.com/current.php?icao=klax&datum=current_observation,wind_mph

API 网站上提供了完整的说明:parfait dot snarkybox dot com。

于 2014-11-26T01:33:11.407 回答