use of org.opentripplanner.analyst.cluster.ResultEnvelope in project OpenTripPlanner by opentripplanner.
the class TNPropagatedTimesStore method makeIsochronesForVertices.
/**
* This bypasses a bunch of conversion and copy steps and just makes the isochrones.
* This assumes that the target indexes in this router/propagatedTimesStore are vertex indexes, not pointset indexes.
* ^^^^^^^^probably doesn't work currently, can we make an implicit pointset that just wraps the vertices?
*/
public ResultEnvelope makeIsochronesForVertices() {
ResultEnvelope envelope = new ResultEnvelope();
envelope.worstCase = makeIsochroneForVertices(maxs);
envelope.avgCase = makeIsochroneForVertices(avgs);
envelope.bestCase = makeIsochroneForVertices(mins);
return envelope;
}
Aggregations