File indexing completed on 2024-05-05 03:51:04

0001 // SPDX-License-Identifier: LGPL-2.1-or-later
0002 //
0003 // SPDX-FileCopyrightText: 2011 Konstantin Oblaukhov <oblaukhov.konstantin@gmail.com>
0004 //
0005 
0006 #include "OsmElementDictionary.h"
0007 
0008 namespace Marble
0009 {
0010 namespace osm
0011 {
0012 
0013 // OSM data primitives and what they represent
0014 // https://wiki.openstreetmap.org/wiki/Elements
0015 const char osmTag_version06[] = "0.6";
0016 
0017 // KML to OSM translators
0018 const char osmTranslate_document[] = "document";
0019 const char osmTranslate_feature[] = "feature";
0020 const char osmTranslate_placemark[] = "placemark";
0021 
0022 // OSM writers
0023 const char osmTag_osm[] = "osm";
0024 const char osmTag_bound[] = "bound";
0025 const char osmTag_bounds[] = "bounds";
0026 const char osmTag_nd[] = "nd";
0027 const char osmTag_node[] = "node";
0028 const char osmTag_way[] = "way";
0029 const char osmTag_relation[] = "relation";
0030 const char osmTag_member[] = "member";
0031 const char osmTag_tag[] = "tag";
0032 }
0033 }