|
@@ -419,6 +419,12 @@ average wind speed and temperature etc.
|
|
|
|[analyse](#analyse-appyrforecasttabularstatistics)|[Statistics](#statistics-appyrforecasttabular)|public| Analyse a single Time-object|
|
|
|
|[getAverageTemperature](#getaveragetemperature-appyrforecasttabularstatistics)|[AbstractUnit](#abstractunit-appyrforecasttabulartime)|public| |
|
|
|
|[getAverageWindSpeed](#getaveragewindspeed-appyrforecasttabularstatistics)|[AbstractUnit](#abstractunit-appyrforecasttabulartime)|public| |
|
|
|
+|[getHighestTemperature](#gethighesttemperature-appyrforecasttabularstatistics)|[Temperature](#temperature-appyrforecasttabulartime)|public| |
|
|
|
+|[getLowestTemperature](#getlowesttemperature-appyrforecasttabularstatistics)|[Temperature](#temperature-appyrforecasttabulartime)|public| |
|
|
|
+|[getHighestWindspeed](#gethighestwindspeed-appyrforecasttabularstatistics)|[WindSpeed](#windspeed-appyrforecasttabulartime)|public| |
|
|
|
+|[getLowestWindSpeed](#getlowestwindspeed-appyrforecasttabularstatistics)|[WindSpeed](#windspeed-appyrforecasttabulartime)|public| |
|
|
|
+|[getAverageSymbols](#getaveragesymbols-appyrforecasttabularstatistics)|array|public| |
|
|
|
+|[getMostCommonSymbol](#getmostcommonsymbol-appyrforecasttabularstatistics)|array|public| |
|
|
|
|
|
|
#### Method details
|
|
|
|
|
@@ -467,6 +473,66 @@ Returns: [AbstractUnit](#abstractunit-appyrforecasttabulartime)
|
|
|
---
|
|
|
|
|
|
|
|
|
+##### getHighestTemperature `App\Yr\Forecast\Tabular\Statistics`
|
|
|
+```php
|
|
|
+public function getHighestTemperature();
|
|
|
+```
|
|
|
+
|
|
|
+Returns: [Temperature](#temperature-appyrforecasttabulartime)
|
|
|
+
|
|
|
+---
|
|
|
+
|
|
|
+
|
|
|
+##### getLowestTemperature `App\Yr\Forecast\Tabular\Statistics`
|
|
|
+```php
|
|
|
+public function getLowestTemperature();
|
|
|
+```
|
|
|
+
|
|
|
+Returns: [Temperature](#temperature-appyrforecasttabulartime)
|
|
|
+
|
|
|
+---
|
|
|
+
|
|
|
+
|
|
|
+##### getHighestWindspeed `App\Yr\Forecast\Tabular\Statistics`
|
|
|
+```php
|
|
|
+public function getHighestWindspeed();
|
|
|
+```
|
|
|
+
|
|
|
+Returns: [WindSpeed](#windspeed-appyrforecasttabulartime)
|
|
|
+
|
|
|
+---
|
|
|
+
|
|
|
+
|
|
|
+##### getLowestWindSpeed `App\Yr\Forecast\Tabular\Statistics`
|
|
|
+```php
|
|
|
+public function getLowestWindSpeed();
|
|
|
+```
|
|
|
+
|
|
|
+Returns: [WindSpeed](#windspeed-appyrforecasttabulartime)
|
|
|
+
|
|
|
+---
|
|
|
+
|
|
|
+
|
|
|
+##### getAverageSymbols `App\Yr\Forecast\Tabular\Statistics`
|
|
|
+```php
|
|
|
+public function getAverageSymbols();
|
|
|
+```
|
|
|
+
|
|
|
+Returns: array
|
|
|
+
|
|
|
+---
|
|
|
+
|
|
|
+
|
|
|
+##### getMostCommonSymbol `App\Yr\Forecast\Tabular\Statistics`
|
|
|
+```php
|
|
|
+public function getMostCommonSymbol();
|
|
|
+```
|
|
|
+
|
|
|
+Returns: array
|
|
|
+
|
|
|
+---
|
|
|
+
|
|
|
+
|
|
|
### Time `App\Yr\Forecast\Tabular`
|
|
|
|
|
|
|
|
@@ -688,6 +754,7 @@ Time-object entity should inherit this
|
|
|
|[__construct](#__construct-appyrforecasttabulartimeabstractunit)||public| |
|
|
|
|[transformClass](#transformclass-appyrforecasttabulartimeabstractunit)|[AbstractUnit](#abstractunit-appyrforecasttabulartime)|protected| |
|
|
|
|[add](#add-appyrforecasttabulartimeabstractunit)|[AbstractUnit](#abstractunit-appyrforecasttabulartime)|public| Addition method|
|
|
|
+|[sub](#sub-appyrforecasttabulartimeabstractunit)|[AbstractUnit](#abstractunit-appyrforecasttabulartime)|public| Subtraction method|
|
|
|
|[mul](#mul-appyrforecasttabulartimeabstractunit)|[AbstractUnit](#abstractunit-appyrforecasttabulartime)|public| Multiplication method|
|
|
|
|[div](#div-appyrforecasttabulartimeabstractunit)|[AbstractUnit](#abstractunit-appyrforecasttabulartime)|public| Divide method|
|
|
|
|[getValue](#getvalue-appyrforecasttabulartimeabstractunit)|float|public| Get the value|
|
|
@@ -745,6 +812,24 @@ Returns: [AbstractUnit](#abstractunit-appyrforecasttabulartime)
|
|
|
---
|
|
|
|
|
|
|
|
|
+##### sub `App\Yr\Forecast\Tabular\Time\AbstractUnit`
|
|
|
+```php
|
|
|
+public function sub(AbstractUnit $with);
|
|
|
+```
|
|
|
+ Subtraction method
|
|
|
+
|
|
|
+
|
|
|
+Parameters
|
|
|
+
|
|
|
+| Type | Variable | Description |
|
|
|
+|---|---|---|
|
|
|
+|[AbstractUnit](#time-appyrforecasttabular)|$with|Unit to sub with|
|
|
|
+
|
|
|
+Returns: [AbstractUnit](#abstractunit-appyrforecasttabulartime)
|
|
|
+
|
|
|
+---
|
|
|
+
|
|
|
+
|
|
|
##### mul `App\Yr\Forecast\Tabular\Time\AbstractUnit`
|
|
|
```php
|
|
|
public function mul(AbstractUnit $with);
|