mechawrench/cafcp-hydrogen-station-fuel-status

从CAFCP数据源检索H35/H70燃料可用性和数量

v2.1.1 2020-05-28 21:23 UTC

This package is auto-updated.

Last update: 2024-09-06 08:37:04 UTC


README

cafcp-hydrogen-station-fuel-status Package

run-tests Latest Version on Packagist Total Downloads

从CAFCP检索氢燃料站燃料可用性状态。列出H70和H35的状态和数量。此包与Laravel 7.x兼容。

安装

您可以通过composer安装此包

composer require mechawrench/cafcp-hydrogen-station-fuel-status

使用方法

// All station actions
$stations = CafcpHydrogenStationFuelStatus::getAllStations();

$stations_offline = $stations->where('statusH70', 'offline')->all();

// Single station actions
// Get Station names from https://cafcp.org/stationmap
$station = CafcpHydrogenStationFuelStatus::getStationStatus('Diamond Bar');

$station_name = $station->station;
$statusH70 = $station->statusH70;
$capacity70 = $station->capacity70;
$statusH35 = $station->statusH35;
$capacityH35 = $station->capacityH35;

直接从CAFCP找到所有位置

https://cafcp.org/stationmap

更新日志

有关最近更改的更多信息,请参阅更新日志

贡献

有关详细信息,请参阅贡献指南

鸣谢

许可证

MIT