| 6 | { |
| 7 | |
| 8 | OsmElement MakeOsmElement(uint64_t id, Tags const & tags, OsmElement::EntityType t) |
| 9 | { |
| 10 | OsmElement el; |
| 11 | el.m_id = id; |
| 12 | el.m_type = t; |
| 13 | for (auto const & t : tags) |
| 14 | el.AddTag(t.first, t.second); |
| 15 | |
| 16 | return el; |
| 17 | } |
| 18 | |
| 19 | std::string GetFileName(std::string const & filename) |
| 20 | { |