From e403f1ec95525ca170bf663e52f9888299e5f117 Mon Sep 17 00:00:00 2001 From: vng Date: Thu, 24 Mar 2016 18:57:05 +0300 Subject: [PATCH] =?UTF-8?q?[generator]=20Fixed=20bug=20with=20passing=20?= =?UTF-8?q?=E2=80=9Carea=E2=80=9D=20tag=20from=20relations=20into=20linear?= =?UTF-8?q?=20features.=20As=20the=20result,=20we=20had=20liner=20geometry?= =?UTF-8?q?=20with=20area-only=20classificator=20types.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- generator/osm_translator.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/osm_translator.hpp b/generator/osm_translator.hpp index a9dee96761..78dd6af16f 100644 --- a/generator/osm_translator.hpp +++ b/generator/osm_translator.hpp @@ -189,7 +189,7 @@ protected: for (auto const & p : e.tags) { /// @todo Skip common key tags. - if (p.first == "type" || p.first == "route") + if (p.first == "type" || p.first == "route" || p.first == "area") continue; // Important! Skip all "name" tags.