amwhalen/noaa
Composer 安装命令:
composer require amwhalen/noaa
包简介
Client library for NOAA's forecast and current weather services
README 文档
README
Overview
This library provides a PHP client for NOAA's forecast and current weather services.
Current weather data is provided by NOAA's XML Feeds of Current Weather Conditions. Forecast data is provided by the NOAA's National Digital Forecast Database (NDFD) REST Web Service. The National Oceanic and Atmospheric Administration (NOAA) is a United States federal agency, so the data they provide is only available for US locations.
Requirements
- PHP 5.3.0+
- PHP cURL
- PHP SimpleXML
Current Weather Conditions
To find your current weather conditions you'll first need to know a local NOAA Weather Observation Station ID. You can search for your local station ID here: http://www.weather.gov/xml/current_obs/. There is also a list of stations in XML if you'd like to do something with the station data: http://www.weather.gov/xml/current_obs/index.xml. Here is some sample code for getting the current weather conditions:
require_once 'noaa/Forecaster.php'; $config = new \noaa\weather\Configuration(); $myWritableCacheDirectory = dirname(__FILE__) . '/cache'; $config->setCache(new \noaa\weather\cache\FileCache($myWritableCacheDirectory)); $forecaster = new \noaa\Forecaster($config); $stationId = 'KBAF'; try { // returns a CurrentWeather object or throws an exception on API error $current = $forecaster->getCurrentWeather($stationId); } catch (\Exception $e) { echo "Error: " . $e->getMessage() . "\n"; } echo "Temperature: " . $current->getTemperatureF() . " °F\n";
You can find more sample code in the example/current.php file.
Forecast
A latitude and longitude are required to retrieve forecast data. There are many APIs that will convert addresses and zip codes into latitude and longitude, but those conversions are outside the scope of this library. The data provided by the API is 24-hour summarized data from 6am-6pm (local time for the supplied location). The precipitation probabilities provided are 12-hour summaries for day and night, running from 6am-6pm and 6pm-6am respectively. Here is some sample code for getting the 7-day forecast starting from the current time:
require_once 'noaa/Forecaster.php'; $config = new \noaa\weather\Configuration(); $myWritableCacheDirectory = dirname(__FILE__) . '/cache'; $config->setCache(new \noaa\weather\cache\FileCache($myWritableCacheDirectory)); $forecaster = new \noaa\Forecaster($config); $lat = '42.16'; $lng = '-72.72'; $startTime = date('Y-m-d', time()); $numDays = 7; try { // returns a Forecast object or throws an exception on API error $forecast = $forecaster->getForecastByLatLng($lat, $lng, $startTime, $numDays); } catch (\Exception $e) { echo "There was an error fetching the forecast: " . $e->getMessage() . "\n"; } // get ForecastDay object for the first day of the forecast $day = $forecast->getDay(0); echo "High Temperature: " . $day->getHighTemperature() . "\n";
You can find more sample code in the example/forecast.php file.
Nightly Forecasts
For forecasts made at night (after 6pm local time), the first day in the forecast result will be for "tomorrow." The doesStartAtNight() method will tell you if a forecast is a "night time" forecast:
$forecast->doesStartAtNight();
There will also be one item of information that's still of value for "today," and that is the precipitation probability from 6pm-6am. That probability can be retrieved like so:
if ($forecast->doesStartAtNight()) { $tonightsPrecipitation = $forecast->getPrecipitationProbabilityTonight(); }
Caching
NOAA suggests that consumers of their API ask for new data only once per hour. This library offers a simple to use FileCache class that only requires a writable directory in which to store the cached data. It will handle cache invalidation on its own based on file modification time. The directory you set must exist and be writable.
If you prefer to use a different cache other than the supplied FileCache it's easy to create your own. Just create a class that implements the \noaa\weather\cache\Cache interface. Use the setCache() Configuration method to set your own custom caching class. See the noaa/weather/cache/ArrayCache.php file for an example.
To instantiate a Forecaster object without a caching mechanism (not recommended!):
require_once 'noaa/Forecaster.php'; $forecaster = new \noaa\Forecaster();
License
MIT License
Copyright (c) 2023 Andrew M. Whalen
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
amwhalen/noaa 适用场景与选型建议
amwhalen/noaa 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.52k 次下载、GitHub Stars 达 30, 最近一次更新时间为 2015 年 10 月 25 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「weather」 「noaa」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 amwhalen/noaa 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 amwhalen/noaa 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 amwhalen/noaa 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Laravel-forecast provides a service provider and a facade around the Forecast-php wrapper
A simple implementation of NOAA's NCAT API.
Add a weather widget to Flarum
A PHP library to query aerodrome METAR information.
Simple weather forecaster for Laravel
Unofficial PHP client for aWhere weather API
统计信息
- 总下载量: 1.52k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 30
- 点击次数: 22
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-10-25