cognito/bomradar
Composer 安装命令:
composer require cognito/bomradar
包简介
Downloads maps and images from the Australian BOM Radars
README 文档
README
This package fetches images from the public ftp server of the Australian Bureau of Meteorology for their RADAR service for repackaging onto your own website.
Installation
Installation is very easy with composer:
composer require cognito/bomradar
If you don't have composer, download the Radar.php file and include it into your project.
Setup
Setup is simple, go to the Radar site http://www.bom.gov.au/australia/radar/ and choose a radar to fetch. Next get the radar size, e.g. 64, 128 or 256km radius and take note of the URL.
For example the 128km Brisbane Loop is IDR663.
We use just the number part, so in this case 663.
Cron to get the images
Set up a regular call through a cron or similar every 10 minutes, to sync and clean the local files.
<?php
// Call this every 10 minutes through a cron or similar
$radar = new \BOMRadar\Radar('663');
$radar->sync(__DIR__ . '/assets', 2);
The sync() command takes the full path to the folder to store the files, and the number of hours to keep the files there for. Set the number of hours to 0 to keep them forever.
If you make the number of hours 1, you will continually download some files as the BOM seems to keep files on their ftp for just under two hours.
Output
To output the radar to the browser, you can use the built-in renderer or make up your own.
<?php
// Call this to render the radar to the browser
$radar = new \BOMRadar\Radar('663');
echo $radar->render(__DIR__ . '/assets', '/assets', 6);
cognito/bomradar 适用场景与选型建议
cognito/bomradar 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.48k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2017 年 06 月 18 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 cognito/bomradar 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 cognito/bomradar 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 2.48k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 24
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-06-18