628 lines
20 KiB
C++
628 lines
20 KiB
C++
// Copyright 2018, University of Freiburg,
|
|
// Chair of Algorithms and Data Structures.
|
|
// Authors: Patrick Brosi <brosi@informatik.uni-freiburg.de>
|
|
|
|
#include <omp.h>
|
|
#include <map>
|
|
#include <mutex>
|
|
#include <unordered_map>
|
|
#include <utility>
|
|
#include "ad/cppgtfs/gtfs/Feed.h"
|
|
#include "pfaedle/eval/Collector.h"
|
|
#include "pfaedle/osm/OsmBuilder.h"
|
|
#include "pfaedle/router/ShapeBuilder.h"
|
|
#include "pfaedle/trgraph/StatGroup.h"
|
|
#include "util/geo/output/GeoGraphJsonOutput.h"
|
|
#include "util/geo/output/GeoJsonOutput.h"
|
|
#include "util/graph/EDijkstra.h"
|
|
#include "util/log/Log.h"
|
|
|
|
using util::geo::FPoint;
|
|
using util::geo::extendBox;
|
|
using util::geo::Box;
|
|
using util::geo::minbox;
|
|
using util::geo::FLine;
|
|
using util::geo::webMercMeterDist;
|
|
using util::geo::webMercToLatLng;
|
|
using util::geo::latLngToWebMerc;
|
|
using util::geo::output::GeoGraphJsonOutput;
|
|
using pfaedle::router::ShapeBuilder;
|
|
using pfaedle::router::FeedStops;
|
|
using pfaedle::router::NodeCandGroup;
|
|
using pfaedle::router::NodeCandRoute;
|
|
using pfaedle::router::RoutingAttrs;
|
|
using pfaedle::router::EdgeListHops;
|
|
using pfaedle::router::Clusters;
|
|
using pfaedle::osm::BBoxIdx;
|
|
using ad::cppgtfs::gtfs::Stop;
|
|
using ad::cppgtfs::gtfs::Trip;
|
|
using ad::cppgtfs::gtfs::Feed;
|
|
using ad::cppgtfs::gtfs::StopTime;
|
|
using ad::cppgtfs::gtfs::ShapePoint;
|
|
|
|
// _____________________________________________________________________________
|
|
ShapeBuilder::ShapeBuilder(Feed* feed, MOTs mots,
|
|
const config::MotConfig& motCfg,
|
|
eval::Collector* ecoll, const config::Config& cfg)
|
|
: _feed(feed),
|
|
_mots(mots),
|
|
_motCfg(motCfg),
|
|
_ecoll(ecoll),
|
|
_cfg(cfg),
|
|
_crouter(_g, omp_get_num_procs()),
|
|
_curShpCnt(0) {
|
|
_numThreads = _crouter.getCacheNumber();
|
|
writeMotStops();
|
|
|
|
// TODO(patrick): maybe do this on demand to avoid graph filtering / reading
|
|
// for input where no routing is necessary (already shape'd)
|
|
buildGraph();
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
void ShapeBuilder::writeMotStops() {
|
|
for (auto t : _feed->getTrips()) {
|
|
if (!_cfg.shapeTripId.empty() && t.second->getId() != _cfg.shapeTripId)
|
|
continue;
|
|
if (_mots.count(t.second->getRoute()->getType()) &&
|
|
_motCfg.mots.count(t.second->getRoute()->getType())) {
|
|
for (auto st : t.second->getStopTimes()) {
|
|
_stops[st.getStop()] = 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
FeedStops* ShapeBuilder::getFeedStops() { return &_stops; }
|
|
|
|
// _____________________________________________________________________________
|
|
const NodeCandGroup& ShapeBuilder::getNodeCands(const Stop* s) const {
|
|
if (_stops.find(s) == _stops.end() || _stops.at(s) == 0) {
|
|
return _emptyNCG;
|
|
}
|
|
return _stops.at(s)->pl().getSI()->getGroup()->getNodeCands(s);
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
FLine ShapeBuilder::shapeL(const router::NodeCandRoute& ncr,
|
|
const router::RoutingAttrs& rAttrs) {
|
|
const router::EdgeListHops& res = route(ncr, rAttrs);
|
|
|
|
FLine l;
|
|
for (const auto& hop : res) {
|
|
const trgraph::Node* last = hop.start;
|
|
if (hop.edges.size() == 0) {
|
|
l.push_back(*hop.start->pl().getGeom());
|
|
l.push_back(*hop.end->pl().getGeom());
|
|
}
|
|
for (auto i = hop.edges.rbegin(); i != hop.edges.rend(); i++) {
|
|
const auto* e = *i;
|
|
if ((e->getFrom() == last) ^ e->pl().isRev()) {
|
|
l.insert(l.end(), e->pl().getGeom()->begin(), e->pl().getGeom()->end());
|
|
} else {
|
|
l.insert(l.end(), e->pl().getGeom()->rbegin(),
|
|
e->pl().getGeom()->rend());
|
|
}
|
|
last = e->getOtherNd(last);
|
|
}
|
|
}
|
|
|
|
return l;
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
FLine ShapeBuilder::shapeL(Trip* trip) {
|
|
return shapeL(getNCR(trip), getRAttrs(trip));
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
EdgeListHops ShapeBuilder::route(const router::NodeCandRoute& ncr,
|
|
const router::RoutingAttrs& rAttrs) const {
|
|
router::Graph g;
|
|
|
|
if (_cfg.solveMethod == "global") {
|
|
const router::EdgeListHops& ret =
|
|
_crouter.route(ncr, rAttrs, _motCfg.routingOpts, _restr, &g);
|
|
|
|
// write combination graph
|
|
if (!_cfg.shapeTripId.empty() && _cfg.writeCombGraph) {
|
|
LOG(INFO) << "Outputting combgraph.json...";
|
|
std::ofstream pstr(_cfg.dbgOutputPath + "/combgraph.json");
|
|
GeoGraphJsonOutput o;
|
|
o.print(g, pstr);
|
|
}
|
|
|
|
return ret;
|
|
} else if (_cfg.solveMethod == "greedy") {
|
|
return _crouter.routeGreedy(ncr, rAttrs, _motCfg.routingOpts, _restr);
|
|
} else if (_cfg.solveMethod == "greedy2") {
|
|
return _crouter.routeGreedy2(ncr, rAttrs, _motCfg.routingOpts, _restr);
|
|
} else {
|
|
LOG(ERROR) << "Unknown solution method " << _cfg.solveMethod;
|
|
exit(1);
|
|
}
|
|
|
|
return EdgeListHops();
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
pfaedle::router::Shape ShapeBuilder::shape(Trip* trip) const {
|
|
LOG(VDEBUG) << "Map-matching shape for trip #" << trip->getId() << " of mot "
|
|
<< trip->getRoute()->getType() << "(sn=" << trip->getShortname()
|
|
<< ", rsn=" << trip->getRoute()->getShortName()
|
|
<< ", rln=" << trip->getRoute()->getLongName() << ")";
|
|
Shape ret;
|
|
ret.hops = route(getNCR(trip), getRAttrs(trip));
|
|
ret.avgHopDist = avgHopDist(trip);
|
|
|
|
LOG(VDEBUG) << "Finished map-matching for #" << trip->getId();
|
|
|
|
return ret;
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
pfaedle::router::Shape ShapeBuilder::shape(Trip* trip) {
|
|
LOG(VDEBUG) << "Map-matching shape for trip #" << trip->getId() << " of mot "
|
|
<< trip->getRoute()->getType() << "(sn=" << trip->getShortname()
|
|
<< ", rsn=" << trip->getRoute()->getShortName()
|
|
<< ", rln=" << trip->getRoute()->getLongName() << ")";
|
|
|
|
Shape ret;
|
|
ret.hops = route(getNCR(trip), getRAttrs(trip));
|
|
ret.avgHopDist = avgHopDist(trip);
|
|
|
|
LOG(VDEBUG) << "Finished map-matching for #" << trip->getId();
|
|
|
|
return ret;
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
void ShapeBuilder::shape(pfaedle::netgraph::Graph* ng) {
|
|
TrGraphEdgs gtfsGraph;
|
|
|
|
LOG(INFO) << "Clustering trips...";
|
|
Clusters clusters = clusterTrips(_feed, _mots);
|
|
LOG(INFO) << "Clustered trips into " << clusters.size() << " clusters.";
|
|
|
|
std::map<ad::cppgtfs::gtfs::Shape*, size_t> shpUsage;
|
|
for (auto t : _feed->getTrips()) {
|
|
if (t.second->getShape()) shpUsage[t.second->getShape()]++;
|
|
}
|
|
|
|
// to avoid unfair load balance on threads
|
|
std::random_shuffle(clusters.begin(), clusters.end());
|
|
|
|
size_t iters = EDijkstra::ITERS;
|
|
size_t totiters = EDijkstra::ITERS;
|
|
size_t oiters = EDijkstra::ITERS;
|
|
size_t j = 0;
|
|
|
|
auto t1 = TIME();
|
|
auto t2 = TIME();
|
|
double totAvgDist = 0;
|
|
size_t totNumTrips = 0;
|
|
|
|
#pragma omp parallel for num_threads(_numThreads)
|
|
for (size_t i = 0; i < clusters.size(); i++) {
|
|
j++;
|
|
|
|
if (j % 10 == 0) {
|
|
#pragma omp critical
|
|
{
|
|
LOG(INFO) << "@ " << j << " / " << clusters.size() << " ("
|
|
<< (static_cast<int>((j * 1.0) / clusters.size() * 100))
|
|
<< "%, " << (EDijkstra::ITERS - oiters) << " iters, tput "
|
|
<< (static_cast<double>(EDijkstra::ITERS - oiters)) /
|
|
TOOK(t1, TIME())
|
|
<< " iters/ms"
|
|
<< ", " << (10.0 / (TOOK(t1, TIME()) / 1000))
|
|
<< " trips/sec)";
|
|
|
|
oiters = EDijkstra::ITERS;
|
|
t1 = TIME();
|
|
}
|
|
}
|
|
|
|
// explicitly call const version of shape here for thread safety
|
|
const Shape& cshp =
|
|
const_cast<const ShapeBuilder&>(*this).shape(clusters[i][0]);
|
|
totAvgDist += cshp.avgHopDist;
|
|
|
|
if (_cfg.buildTransitGraph) {
|
|
#pragma omp critical
|
|
{ writeTransitGraph(cshp, >fsGraph, clusters[i]); }
|
|
}
|
|
|
|
std::vector<double> distances;
|
|
ad::cppgtfs::gtfs::Shape* shp =
|
|
getGtfsShape(cshp, clusters[i][0], &distances);
|
|
|
|
LOG(DEBUG) << "Took " << EDijkstra::ITERS - iters << " iterations.";
|
|
iters = EDijkstra::ITERS;
|
|
|
|
totNumTrips += clusters[i].size();
|
|
|
|
for (auto t : clusters[i]) {
|
|
if (_cfg.evaluate) {
|
|
_ecoll->add(t, t->getShape(), shp, distances);
|
|
}
|
|
|
|
if (t->getShape() && shpUsage[t->getShape()] > 0) {
|
|
shpUsage[t->getShape()]--;
|
|
if (shpUsage[t->getShape()] == 0) {
|
|
_feed->getShapes().remove(t->getShape()->getId());
|
|
delete t->getShape();
|
|
}
|
|
}
|
|
setShape(t, shp, distances);
|
|
}
|
|
}
|
|
|
|
LOG(INFO) << "Done.";
|
|
LOG(INFO) << "Matched " << totNumTrips << " trips in " << clusters.size()
|
|
<< " clusters.";
|
|
LOG(INFO) << "Took " << (EDijkstra::ITERS - totiters)
|
|
<< " iterations in total.";
|
|
LOG(INFO) << "Took " << TOOK(t2, TIME()) << " ms in total.";
|
|
LOG(INFO) << "Total avg. tput "
|
|
<< (static_cast<double>(EDijkstra::ITERS - totiters)) /
|
|
TOOK(t2, TIME())
|
|
<< " iters/sec";
|
|
LOG(INFO) << "Total avg. trip tput "
|
|
<< (clusters.size() / (TOOK(t2, TIME()) / 1000)) << " trips/sec";
|
|
LOG(INFO) << "Avg hop distance was "
|
|
<< (totAvgDist / static_cast<double>(clusters.size())) << " meters";
|
|
|
|
if (_cfg.buildTransitGraph) {
|
|
LOG(INFO) << "Building transit network graph...";
|
|
buildTrGraph(>fsGraph, ng);
|
|
}
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
void ShapeBuilder::setShape(Trip* t, ad::cppgtfs::gtfs::Shape* s,
|
|
const std::vector<double>& distances) {
|
|
assert(distances.size() == t->getStopTimes().size());
|
|
// set distances
|
|
size_t i = 0;
|
|
for (const StopTime& st : t->getStopTimes()) {
|
|
const_cast<StopTime&>(st).setShapeDistanceTravelled(distances[i]);
|
|
i++;
|
|
}
|
|
|
|
t->setShape(s);
|
|
|
|
std::lock_guard<std::mutex> guard(_shpMutex);
|
|
_feed->getShapes().add(s);
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
ad::cppgtfs::gtfs::Shape* ShapeBuilder::getGtfsShape(
|
|
const Shape& shp, Trip* t, std::vector<double>* hopDists) {
|
|
ad::cppgtfs::gtfs::Shape* ret =
|
|
new ad::cppgtfs::gtfs::Shape(getFreeShapeId(t));
|
|
|
|
assert(shp.hops.size() == t->getStopTimes().size() - 1);
|
|
|
|
size_t seq = 0;
|
|
double dist = -1;
|
|
double lastDist = -1;
|
|
hopDists->push_back(0);
|
|
FPoint last(0, 0);
|
|
for (const auto& hop : shp.hops) {
|
|
const trgraph::Node* l = hop.start;
|
|
if (hop.edges.size() == 0) {
|
|
FPoint ll = webMercToLatLng<float>(hop.start->pl().getGeom()->get<0>(),
|
|
hop.start->pl().getGeom()->get<1>());
|
|
|
|
if (dist > -0.5)
|
|
dist += webMercMeterDist(last, *hop.start->pl().getGeom());
|
|
else
|
|
dist = 0;
|
|
|
|
last = *hop.start->pl().getGeom();
|
|
|
|
if (dist - lastDist > 0.01) {
|
|
ret->addPoint(ShapePoint(ll.get<1>(), ll.get<0>(), dist, seq));
|
|
seq++;
|
|
lastDist = dist;
|
|
}
|
|
|
|
dist += webMercMeterDist(last, *hop.end->pl().getGeom());
|
|
last = *hop.end->pl().getGeom();
|
|
|
|
if (dist - lastDist > 0.01) {
|
|
ll = webMercToLatLng<float>(hop.end->pl().getGeom()->get<0>(),
|
|
hop.end->pl().getGeom()->get<1>());
|
|
ret->addPoint(ShapePoint(ll.get<1>(), ll.get<0>(), dist, seq));
|
|
seq++;
|
|
lastDist = dist;
|
|
}
|
|
}
|
|
for (auto i = hop.edges.rbegin(); i != hop.edges.rend(); i++) {
|
|
const auto* e = *i;
|
|
if ((e->getFrom() == l) ^ e->pl().isRev()) {
|
|
for (size_t i = 0; i < e->pl().getGeom()->size(); i++) {
|
|
const FPoint& cur = (*e->pl().getGeom())[i];
|
|
if (dist > -0.5)
|
|
dist += webMercMeterDist(last, cur);
|
|
else
|
|
dist = 0;
|
|
last = cur;
|
|
if (dist - lastDist > 0.01) {
|
|
FPoint ll = webMercToLatLng<float>(cur.get<0>(), cur.get<1>());
|
|
ret->addPoint(ShapePoint(ll.get<1>(), ll.get<0>(), dist, seq));
|
|
seq++;
|
|
lastDist = dist;
|
|
}
|
|
}
|
|
} else {
|
|
for (int64_t i = e->pl().getGeom()->size() - 1; i >= 0; i--) {
|
|
const FPoint& cur = (*e->pl().getGeom())[i];
|
|
if (dist > -0.5)
|
|
dist += webMercMeterDist(last, cur);
|
|
else
|
|
dist = 0;
|
|
last = cur;
|
|
if (dist - lastDist > 0.01) {
|
|
FPoint ll = webMercToLatLng<float>(cur.get<0>(), cur.get<1>());
|
|
ret->addPoint(ShapePoint(ll.get<1>(), ll.get<0>(), dist, seq));
|
|
seq++;
|
|
lastDist = dist;
|
|
}
|
|
}
|
|
}
|
|
l = e->getOtherNd(l);
|
|
}
|
|
|
|
hopDists->push_back(lastDist);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
std::string ShapeBuilder::getFreeShapeId(Trip* trip) {
|
|
std::string ret;
|
|
std::lock_guard<std::mutex> guard(_shpMutex);
|
|
while (!ret.size() || _feed->getShapes().get(ret)) {
|
|
_curShpCnt++;
|
|
ret = "shp_";
|
|
ret += std::to_string(trip->getRoute()->getType());
|
|
ret += "_" + std::to_string(_curShpCnt);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
const RoutingAttrs& ShapeBuilder::getRAttrs(const Trip* trip) {
|
|
auto i = _rAttrs.find(trip);
|
|
|
|
if (i == _rAttrs.end()) {
|
|
router::RoutingAttrs ret;
|
|
|
|
const auto& lnormzer = _motCfg.osmBuildOpts.lineNormzer;
|
|
|
|
ret.shortName = lnormzer(trip->getRoute()->getShortName());
|
|
|
|
if (ret.shortName.empty()) ret.shortName = lnormzer(trip->getShortname());
|
|
|
|
if (ret.shortName.empty())
|
|
ret.shortName = lnormzer(trip->getRoute()->getLongName());
|
|
|
|
ret.fromString = _motCfg.osmBuildOpts.statNormzer(
|
|
trip->getStopTimes().begin()->getStop()->getName());
|
|
ret.toString = _motCfg.osmBuildOpts.statNormzer(
|
|
(--trip->getStopTimes().end())->getStop()->getName());
|
|
|
|
return _rAttrs
|
|
.insert(std::pair<const Trip*, router::RoutingAttrs>(trip, ret))
|
|
.first->second;
|
|
} else {
|
|
return i->second;
|
|
}
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
const RoutingAttrs& ShapeBuilder::getRAttrs(const Trip* trip) const {
|
|
return _rAttrs.find(trip)->second;
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
BBoxIdx ShapeBuilder::getPaddedGtfsBox(const Feed* feed, double pad,
|
|
const MOTs& mots,
|
|
const std::string& tid) {
|
|
osm::BBoxIdx box(pad);
|
|
for (const auto& t : feed->getTrips()) {
|
|
if (!tid.empty() && t.second->getId() != tid) continue;
|
|
if (mots.count(t.second->getRoute()->getType())) {
|
|
Box<float> cur = minbox<float>();
|
|
for (const auto& st : t.second->getStopTimes()) {
|
|
cur = extendBox(
|
|
Point<float>(st.getStop()->getLng(), st.getStop()->getLat()), cur);
|
|
}
|
|
box.add(cur);
|
|
}
|
|
}
|
|
|
|
return box;
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
void ShapeBuilder::buildGraph() {
|
|
LOG(INFO) << "Reading " << _cfg.osmPath << " ... ";
|
|
osm::OsmBuilder osmBuilder;
|
|
|
|
osm::BBoxIdx box = getPaddedGtfsBox(_feed, 2500, _mots, _cfg.shapeTripId);
|
|
|
|
osmBuilder.read(_cfg.osmPath, _motCfg.osmBuildOpts, &_g, box, _cfg.gridSize,
|
|
getFeedStops(), &_restr);
|
|
|
|
for (auto& feedStop : *getFeedStops()) {
|
|
if (feedStop.second) {
|
|
feedStop.second->pl().getSI()->getGroup()->writePens(
|
|
_motCfg.osmBuildOpts.trackNormzer,
|
|
_motCfg.routingOpts.platformUnmatchedPen,
|
|
_motCfg.routingOpts.stationDistPenFactor,
|
|
_motCfg.routingOpts.nonOsmPen);
|
|
}
|
|
}
|
|
|
|
LOG(INFO) << "Done.";
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
NodeCandRoute ShapeBuilder::getNCR(Trip* trip) const {
|
|
router::NodeCandRoute ncr(trip->getStopTimes().size());
|
|
|
|
size_t i = 0;
|
|
|
|
for (const auto& st : trip->getStopTimes()) {
|
|
ncr[i] = getNodeCands(st.getStop());
|
|
i++;
|
|
}
|
|
return ncr;
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
double ShapeBuilder::avgHopDist(Trip* trip) const {
|
|
size_t i = 0;
|
|
double sum = 0;
|
|
|
|
const Stop* prev = 0;
|
|
|
|
for (const auto& st : trip->getStopTimes()) {
|
|
if (!prev) {
|
|
prev = st.getStop();
|
|
continue;
|
|
}
|
|
auto a = util::geo::latLngToWebMerc<float>(prev->getLat(), prev->getLng());
|
|
auto b = util::geo::latLngToWebMerc<float>(st.getStop()->getLat(),
|
|
st.getStop()->getLng());
|
|
sum += util::geo::webMercMeterDist(a, b);
|
|
|
|
prev = st.getStop();
|
|
i++;
|
|
}
|
|
return sum / static_cast<double>(i);
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
Clusters ShapeBuilder::clusterTrips(Feed* f, MOTs mots) {
|
|
// building an index [start station, end station] -> [cluster]
|
|
|
|
std::map<StopPair, std::vector<size_t>> clusterIdx;
|
|
|
|
size_t j = 0;
|
|
|
|
Clusters ret;
|
|
for (const auto& trip : f->getTrips()) {
|
|
// if (trip.second->getId() != "L5Cvl_T01") continue;
|
|
if (trip.second->getShape() && !_cfg.dropShapes) continue;
|
|
if (trip.second->getStopTimes().size() < 2) continue;
|
|
if (!mots.count(trip.second->getRoute()->getType()) ||
|
|
!_motCfg.mots.count(trip.second->getRoute()->getType()))
|
|
continue;
|
|
bool found = false;
|
|
auto spair = StopPair(trip.second->getStopTimes().begin()->getStop(),
|
|
trip.second->getStopTimes().rbegin()->getStop());
|
|
const auto& c = clusterIdx[spair];
|
|
|
|
for (size_t i = 0; i < c.size(); i++) {
|
|
j++;
|
|
if (routingEqual(ret[c[i]][0], trip.second)) {
|
|
ret[c[i]].push_back(trip.second);
|
|
found = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!found) {
|
|
ret.push_back({trip.second});
|
|
// explicit call to write render attrs to cache
|
|
getRAttrs(trip.second);
|
|
clusterIdx[spair].push_back(ret.size() - 1);
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
bool ShapeBuilder::routingEqual(const Stop* a, const Stop* b) {
|
|
if (a == b) return true; // trivial
|
|
|
|
auto namea = _motCfg.osmBuildOpts.statNormzer(a->getName());
|
|
auto nameb = _motCfg.osmBuildOpts.statNormzer(b->getName());
|
|
if (namea != nameb) return false;
|
|
|
|
auto tracka = _motCfg.osmBuildOpts.trackNormzer(a->getPlatformCode());
|
|
auto trackb = _motCfg.osmBuildOpts.trackNormzer(b->getPlatformCode());
|
|
if (tracka != trackb) return false;
|
|
|
|
FPoint ap = util::geo::latLngToWebMerc<float>(a->getLat(), a->getLng());
|
|
FPoint bp = util::geo::latLngToWebMerc<float>(b->getLat(), b->getLng());
|
|
|
|
double d = util::geo::webMercMeterDist(ap, bp);
|
|
|
|
if (d > 1) return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
bool ShapeBuilder::routingEqual(Trip* a, Trip* b) {
|
|
if (a->getStopTimes().size() != b->getStopTimes().size()) return false;
|
|
if (getRAttrs(a) != getRAttrs(b)) return false;
|
|
|
|
auto stb = b->getStopTimes().begin();
|
|
for (const auto& sta : a->getStopTimes()) {
|
|
if (!routingEqual(sta.getStop(), stb->getStop())) {
|
|
return false;
|
|
}
|
|
stb++;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
const pfaedle::trgraph::Graph* ShapeBuilder::getGraph() const { return &_g; }
|
|
|
|
// _____________________________________________________________________________
|
|
void ShapeBuilder::writeTransitGraph(const Shape& shp, TrGraphEdgs* edgs,
|
|
const Cluster& cluster) const {
|
|
for (auto hop : shp.hops) {
|
|
for (const auto* e : hop.edges) {
|
|
if (e->pl().isRev()) e = _g.getEdg(e->getTo(), e->getFrom());
|
|
(*edgs)[e].insert(cluster.begin(), cluster.end());
|
|
}
|
|
}
|
|
}
|
|
|
|
// _____________________________________________________________________________
|
|
void ShapeBuilder::buildTrGraph(TrGraphEdgs* edgs,
|
|
pfaedle::netgraph::Graph* ng) const {
|
|
std::unordered_map<trgraph::Node*, pfaedle::netgraph::Node*> nodes;
|
|
|
|
for (auto ep : *edgs) {
|
|
auto e = ep.first;
|
|
pfaedle::netgraph::Node* from = 0;
|
|
pfaedle::netgraph::Node* to = 0;
|
|
if (nodes.count(e->getFrom())) from = nodes[e->getFrom()];
|
|
if (nodes.count(e->getTo())) to = nodes[e->getTo()];
|
|
if (!from) {
|
|
from = ng->addNd(*e->getFrom()->pl().getGeom());
|
|
nodes[e->getFrom()] = from;
|
|
}
|
|
if (!to) {
|
|
to = ng->addNd(*e->getTo()->pl().getGeom());
|
|
nodes[e->getTo()] = to;
|
|
}
|
|
|
|
ng->addEdg(from, to,
|
|
pfaedle::netgraph::EdgePL(*e->pl().getGeom(), ep.second));
|
|
}
|
|
}
|