72 lines
1.8 KiB
C
72 lines
1.8 KiB
C
|
|
// Copyright 2016, University of Freiburg,
|
||
|
|
// Chair of Algorithms and Data Structures.
|
||
|
|
// Authors: Patrick Brosi <brosi@informatik.uni-freiburg.de>
|
||
|
|
|
||
|
|
#ifndef PFAEDLE_GTFS_STOPTIME_H_
|
||
|
|
#define PFAEDLE_GTFS_STOPTIME_H_
|
||
|
|
|
||
|
|
#include <iomanip>
|
||
|
|
#include <sstream>
|
||
|
|
#include <string>
|
||
|
|
#include <vector>
|
||
|
|
#include "ad/cppgtfs/gtfs/Stop.h"
|
||
|
|
#include "ad/cppgtfs/gtfs/StopTime.h"
|
||
|
|
#include "util/Misc.h"
|
||
|
|
|
||
|
|
using std::exception;
|
||
|
|
using std::string;
|
||
|
|
|
||
|
|
namespace pfaedle {
|
||
|
|
namespace gtfs {
|
||
|
|
|
||
|
|
template <typename StopT>
|
||
|
|
class StopTime {
|
||
|
|
public:
|
||
|
|
StopTime(const ad::cppgtfs::gtfs::Time& at, const ad::cppgtfs::gtfs::Time& dt,
|
||
|
|
typename StopT::Ref s, uint32_t seq, const std::string& hs,
|
||
|
|
ad::cppgtfs::gtfs::flat::StopTime::PU_DO_TYPE put,
|
||
|
|
ad::cppgtfs::gtfs::flat::StopTime::PU_DO_TYPE dot, float distTrav,
|
||
|
|
bool isTp)
|
||
|
|
: _s(s), _sequence(seq), _dist(distTrav) {
|
||
|
|
UNUSED(at);
|
||
|
|
UNUSED(dt);
|
||
|
|
UNUSED(hs);
|
||
|
|
UNUSED(put);
|
||
|
|
UNUSED(dot);
|
||
|
|
UNUSED(distTrav);
|
||
|
|
UNUSED(isTp);
|
||
|
|
}
|
||
|
|
|
||
|
|
const typename StopT::Ref getStop() const { return _s; }
|
||
|
|
typename StopT::Ref getStop() { return _s; }
|
||
|
|
void setShapeDistanceTravelled(double d) { _dist = d; }
|
||
|
|
|
||
|
|
ad::cppgtfs::gtfs::Time getArrivalTime() const {
|
||
|
|
return ad::cppgtfs::gtfs::Time(0, 0, 0);
|
||
|
|
}
|
||
|
|
ad::cppgtfs::gtfs::Time getDepartureTime() const {
|
||
|
|
return ad::cppgtfs::gtfs::Time(0, 0, 0);
|
||
|
|
}
|
||
|
|
|
||
|
|
float getShapeDistanceTravelled() const { return _dist; }
|
||
|
|
|
||
|
|
uint16_t getSeq() const { return _sequence; }
|
||
|
|
|
||
|
|
private:
|
||
|
|
typename StopT::Ref _s;
|
||
|
|
uint32_t _sequence;
|
||
|
|
float _dist;
|
||
|
|
};
|
||
|
|
|
||
|
|
template <typename StopTimeT>
|
||
|
|
struct StopTimeCompare {
|
||
|
|
bool operator()(const StopTimeT& lh, const StopTimeT& rh) const {
|
||
|
|
return lh.getSeq() < rh.getSeq();
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace gtfs
|
||
|
|
} // namespace pfaedle
|
||
|
|
|
||
|
|
#endif // PFAEDLE_GTFS_STOPTIME_H_
|