PHP code example of ridvanbaluyos / noah

1. Go to this page and download the library: Download ridvanbaluyos/noah library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

ridvanbaluyos / noah example snippets



error_reporting(E_ALL);

use Ridvanbaluyos\Noah\Noah as Noah;

tions);

$noah = new Noah();
$stations = $noah->getDoppler();

$noah = new Noah();
// First parameter is station type, second parameter is station id.
$stations = $noah->getStationByTypeAndId(1, 27); 

$noah = new Noah();
$stations = $noah->getStations();


$noah = new Noah();
$stations = $noah->getFloodMaps();


$noah = new Noah();
$stations = $noah->getFloodReport(2011);


$noah = new Noah();
$stations = $noah->getFloogetLandslideMapsReport();


$noah = new Noah();
$stations = $noah->getStormSurgeMaps();


$noah = new Noah();
$stations = $noah->getFourHourForecast();


$noah = new Noah();
// Parameter is location id (optional)
$stations = $noah->getSevenDayForecast(1); 


$noah = new Noah();
$stations = $noah->getLatestContour();


$noah = new Noah();
$stations = $noah->getMtSat();