Uses of Interface
org.openstreetmap.josm.plugins.graphview.core.data.TagGroup

Packages that use TagGroup
org.openstreetmap.josm.plugins.graphview.core.data   
org.openstreetmap.josm.plugins.graphview.core.data.osmosis   
org.osm2world.core.map_data.data   
org.osm2world.core.map_elevation.creation   
org.osm2world.core.osm.data   
org.osm2world.core.world.modules   
org.osm2world.core.world.modules.common   
 

Uses of TagGroup in org.openstreetmap.josm.plugins.graphview.core.data
 

Classes in org.openstreetmap.josm.plugins.graphview.core.data that implement TagGroup
 class EmptyTagGroup
           
 class MapBasedTagGroup
          TagGroup that uses a key-value-Map to store tags
 

Methods in org.openstreetmap.josm.plugins.graphview.core.data that return TagGroup
 TagGroup DataSource.getTagsN(N node)
          returns a node's tags
 TagGroup DataSource.getTagsR(R relation)
          returns a relation's tags
 TagGroup DataSource.getTagsW(W way)
          returns a way's tags
 

Uses of TagGroup in org.openstreetmap.josm.plugins.graphview.core.data.osmosis
 

Methods in org.openstreetmap.josm.plugins.graphview.core.data.osmosis that return TagGroup
 TagGroup OSMFileDataSource.getTagsN(OSMFileDataSource.OwnNode node)
           
 TagGroup OSMFileDataSource.getTagsR(OSMFileDataSource.OwnRelation relation)
           
 TagGroup OSMFileDataSource.getTagsW(OSMFileDataSource.OwnWay way)
           
 

Constructors in org.openstreetmap.josm.plugins.graphview.core.data.osmosis with parameters of type TagGroup
OSMFileDataSource.OwnNode(double lat, double lon, TagGroup tags)
           
OSMFileDataSource.OwnRelation(TagGroup tags, int initialMemberSize)
           
OSMFileDataSource.OwnWay(TagGroup tags, List<OSMFileDataSource.OwnNode> nodes)
           
 

Uses of TagGroup in org.osm2world.core.map_data.data
 

Methods in org.osm2world.core.map_data.data that return TagGroup
 TagGroup MapArea.getTags()
           
 TagGroup MapNode.getTags()
           
 TagGroup MapWaySegment.getTags()
           
 TagGroup MapElement.getTags()
          returns the tags of the underlying OSMElement
 

Uses of TagGroup in org.osm2world.core.map_elevation.creation
 

Methods in org.osm2world.core.map_elevation.creation with parameters of type TagGroup
protected abstract  Double TagElevationCalculator.getEleForTags(TagGroup tags)
          returns the elevation as set explicitly by the tags
protected  Double BridgeTunnelElevationCalculator.getEleForTags(TagGroup tags)
           
protected  Double EleTagElevationCalculator.getEleForTags(TagGroup tags)
           
protected  Double LevelTagElevationCalculator.getEleForTags(TagGroup tags)
           
 

Uses of TagGroup in org.osm2world.core.osm.data
 

Fields in org.osm2world.core.osm.data declared as TagGroup
 TagGroup OSMElement.tags
           
 

Constructors in org.osm2world.core.osm.data with parameters of type TagGroup
OSMElement(TagGroup tags, long id)
           
OSMNode(double lat, double lon, TagGroup tags, long id)
           
OSMRelation(TagGroup tags, long id, int initialMemberSize)
           
OSMWay(TagGroup tags, long id, List<OSMNode> nodes)
           
 

Uses of TagGroup in org.osm2world.core.world.modules
 

Methods in org.osm2world.core.world.modules with parameters of type TagGroup
static boolean BridgeModule.isBridge(TagGroup tags)
           
static boolean TunnelModule.isTunnel(TagGroup tags)
           
 

Constructors in org.osm2world.core.world.modules with parameters of type TagGroup
RoadModule.Road(MapWaySegment line, TagGroup tags)
           
 

Uses of TagGroup in org.osm2world.core.world.modules.common
 

Methods in org.osm2world.core.world.modules.common with parameters of type TagGroup
static String WorldModuleParseUtil.getValueWithFallback(String fallback, TagGroup tags, String... keys)
          returns the value of the first key that exists, or the fallback value if none of the keys exists
static float WorldModuleParseUtil.parseClearing(TagGroup tags, float defaultValue)
          retrieves clearing using (in this priority order) practical:maxheight tag, maxheight tag, defaultValue parameter
static double WorldModuleParseUtil.parseDirection(TagGroup tags, double defaultValue)
          parses the direction tag and returns the direction (or a default value) as radians
static float WorldModuleParseUtil.parseHeight(TagGroup tags, float defaultValue)
          retrieves height using (in this priority order) height tag, building:height tag, est_height tag, defaultValue parameter
static float WorldModuleParseUtil.parseWidth(TagGroup tags, float defaultValue)
          retrieves width using (in this priority order) width tag, est_width tag, defaultValue parameter