Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConstantin Shalnev <c.shalnev@corp.mail.ru>2015-07-08 14:48:31 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:54:55 +0300
commit76d0e2896b4d1f1fd995f70daccf407f50fce570 (patch)
tree5899915e05ec77d59465c5357c060b3b44a12d54 /routing/pedestrian_model.cpp
parent083325dfa64a422016755377e7c0a7db0f2734ca (diff)
fixed notes
Diffstat (limited to 'routing/pedestrian_model.cpp')
-rw-r--r--routing/pedestrian_model.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/routing/pedestrian_model.cpp b/routing/pedestrian_model.cpp
index a9950c25df..84163166b4 100644
--- a/routing/pedestrian_model.cpp
+++ b/routing/pedestrian_model.cpp
@@ -12,6 +12,11 @@ namespace
// See model specifics in different countries here:
// http://wiki.openstreetmap.org/wiki/OSM_tags_for_routing/Access-Restrictions
+// Document contains proposals for some countries, but we assume that some kinds of roads are ready for pedestrian routing,
+// but not listed in tables in the document. For example, steps are not listed, paths, roads and services features also
+// can be treated as ready for pedestrian routing.
+// Kinds of roads which we assume footable are marked by // * below.
+
// See road types here:
// http://wiki.openstreetmap.org/wiki/Key:highway
@@ -606,7 +611,7 @@ PedestrianModelFactory::PedestrianModelFactory()
m_models["Russia"] = make_shared<PedestrianModel>(s_pedestrianLimits_Russia);
m_models["Slovakia"] = make_shared<PedestrianModel>(s_pedestrianLimits_Slovakia);
m_models["Switzerland"] = make_shared<PedestrianModel>(s_pedestrianLimits_Switzerland);
- m_models["Turkey"] = make_shared<PedestrianModel>(s_pedestrianLimits_Turkey );
+ m_models["Turkey"] = make_shared<PedestrianModel>(s_pedestrianLimits_Turkey);
m_models["Ukraine"] = make_shared<PedestrianModel>(s_pedestrianLimits_Ukraine);
m_models["UK"] = make_shared<PedestrianModel>(s_pedestrianLimits_UK);
m_models["USA"] = make_shared<PedestrianModel>(s_pedestrianLimits_USA);