20 package org.matsim.pt.config;
30 static final String SEARCH_RADIUS =
"searchRadius";
31 static final String EXTENSION_RADIUS =
"extensionRadius";
32 static final String MAX_BEELINE_WALK_CONNECTION_DISTANCE =
"maxBeelineWalkConnectionDistance";
33 static final String ADDITIONAL_TRANSFER_TIME =
"additionalTransferTime";
49 static final String DIRECT_WALK_FACTOR_CMT =
"Factor with which direct walk generalized cost is multiplied before it is compared " 50 +
"to the pt generalized cost. Set to a very high value to reduce direct walk results." ;
53 Map<String, String> comments = super.getComments();
54 comments.put(SEARCH_RADIUS,
"the radius in which stop locations are searched, given a start or target coordinate");
55 comments.put(EXTENSION_RADIUS,
"step size to increase searchRadius if no stops are found");
56 comments.put(MAX_BEELINE_WALK_CONNECTION_DISTANCE,
"maximum beeline distance between stops that agents could transfer to by walking");
57 comments.put(ADDITIONAL_TRANSFER_TIME,
"additional time the router allocates when a line switch happens. Can be interpreted as a 'safety' time that agents need to safely transfer from one line to another");
58 comments.put(DIRECT_WALK_FACTOR, DIRECT_WALK_FACTOR_CMT);
void setExtensionRadius(final double extensionRadius)
TransitRouterConfigGroup()
double getMaxBeelineWalkConnectionDistance()
double getExtensionRadius()
final void setDirectWalkFactor(double directWalkFactor)
Map< String, String > getComments()
void setMaxBeelineWalkConnectionDistance(final double maxBeelineWalkConnectionDistance)
double getAdditionalTransferTime()
void setAdditionalTransferTime(final double additionalTransferTime)
double additionalTransferTime
void setCacheTree(boolean cacheTree)
double maxBeelineWalkConnectionDistance
double getDirectWalkFactor()
void setSearchRadius(final double searchRadius)
final void testForLocked()
static final String DIRECT_WALK_FACTOR
static final String GROUP_NAME