/Reittiopas-php

PHP library for Reittiopas API

Primary LanguagePHP

Reittiopas PHP-library

This PHP library is for accessing Reittiopas Developer API HTTP GET Interface version 2.

Reittiopas API requires authentication.

Reittiopas API Documentation


Example:


include_once 'classes/Core.php';
include_once 'classes/StopsInArea.php';
$reittiopas = new Reittiopas("user","password","request coordinate system","response coordinate system","json/xml");
$stops = new StopsInArea("24.928265,60.187377","3","1500");
$results = $reittiopas->getStopsInArea($stops);