API for linking to the Huxley National Rail REST proxy for the retrieval of live National Rail data. Still needs work (sadly), but works well for the time being!

Dependencies:   EthernetInterface

National Rail Huxley Integration Interface

This API provides a clear link between the National Rail Huxley Integration JSON interface (available at https://huxley.unop.uk/), and mbed devices, over an Ethernet connection. This project is still very much a work-in-progress, but hopefully I will be able to provide a comprehensive method of retrieving live National Rail departures data in a simple and effective way.

/media/uploads/Leigh_LbR/nre_powered_logo.jpg

departure.cpp

Committer:
Leigh_LbR
Date:
2016-05-24
Revision:
11:4532ff549fcf
Parent:
7:d713a0e47ffe

File content as of revision 11:4532ff549fcf:

#include "departure.h"
#include <string>

Departure::Departure(const std::string& _crs, const std::string& _locationName, const std::string& _std, const std::string& _etd, const std::string& _platform, const std::string& _operatorName, const std::string& _operatorCode)
{
    crs = std::string(_crs);
    locationName = std::string(_locationName);
    std = std::string(_std);
    etd = std::string(_etd);
    platform = std::string(_platform);
    operatorName = std::string(_operatorName);
    operatorCode = std::string(_operatorCode);
};

bool Departure::IsDelayed()
{
    if(etd == "On time") return false;
    else if(etd == "Cancelled") return false;
    else return true;
}   

std::string Departure::GetETDFormatted()
{
    if(etd == "Delayed") return "Unknown";
    else if(etd == "On time") return std;
    else return etd;
}    

bool Departure::IsCancelled()
{
    if(etd == "Cancelled") return true;
    else return false;
}    

bool Departure::IsOnTime()
{
    if(etd == "On time") return true;
    else return false;
}