unclassified roads have wrong default speed (thanks again twain47)

This commit is contained in:
Dennis Luxen 2010-09-16 15:37:11 +00:00
parent 41e5a52509
commit 9c13a8a6dd

View File

@ -36,7 +36,7 @@ or see http://www.gnu.org/licenses/agpl.txt.
secondary 60 secondary 60
secondary_link 50 secondary_link 50
tertiary 55 tertiary 55
unclassified 50 unclassified 25
residential 40 residential 40
living_street 10 living_street 10
service 30 service 30
@ -44,7 +44,7 @@ or see http://www.gnu.org/licenses/agpl.txt.
*/ */
std::string names[14] = { "motorway", "motorway_link", "trunk", "trunk_link", "primary", "primary_link", "secondary", "secondary_link", "tertiary", "unclassified", "residential", "living_street", "service", "ferry" }; std::string names[14] = { "motorway", "motorway_link", "trunk", "trunk_link", "primary", "primary_link", "secondary", "secondary_link", "tertiary", "unclassified", "residential", "living_street", "service", "ferry" };
double speeds[14] = { 110, 90, 90, 70, 70, 60, 60, 50, 55, 50, 40 , 10, 30, 25}; double speeds[14] = { 110, 90, 90, 70, 70, 60, 60, 50, 55, 25, 40 , 10, 30, 25};
struct _Node : NodeInfo{ struct _Node : NodeInfo{
bool trafficSignal; bool trafficSignal;