Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
NIImporter_OpenStreetMap::RelationHandler Class Reference

A class which extracts relevant relation information from a parsed OSM-file. More...

#include <NIImporter_OpenStreetMap.h>

Inheritance diagram for NIImporter_OpenStreetMap::RelationHandler:
[legend]
Collaboration diagram for NIImporter_OpenStreetMap::RelationHandler:
[legend]

Data Structures

struct  NIIPTPlatform

Public Member Functions

void characters (const XMLCh *const chars, const XERCES3_SIZE_t length)
 The inherited method called when characters occurred.
void endElement (const XMLCh *const uri, const XMLCh *const localname, const XMLCh *const qname)
 The inherited method called when a tag is being closed.
const std::string & getFileName () const
 returns the current file name
void registerParent (const int tag, GenericSAXHandler *handler)
 Assigning a parent handler which is enabled when the specified tag is closed.
 RelationHandler (const std::map< long long int, NIOSMNode * > &osmNodes, const std::map< long long int, Edge * > &osmEdges, NBPTStopCont *nbptStopCont, const std::map< long long int, Edge * > &platfromShapes, NBPTLineCont *nbptLineCont, const OptionsCont &oc)
 Constructor.
void setFileName (const std::string &name)
 Sets the current file name.
void startElement (const XMLCh *const uri, const XMLCh *const localname, const XMLCh *const qname, const XERCES_CPP_NAMESPACE::Attributes &attrs)
 The inherited method called when a new tag opens.
 ~RelationHandler () override
 Destructor.

inherited from GenericSAXHandler

enum class  RestrictionType { ONLY , NO , UNKNOWN }
 whether the only allowed or the only forbidden connection is defined More...
const std::map< long long int, NIOSMNode * > & myOSMNodes
 The previously parsed nodes.
const std::map< long long int, Edge * > & myOSMEdges
 The previously parsed edges.
const std::map< long long int, Edge * > & myPlatformShapes
 The previously parsed platform shapes.
NBPTStopContmyNBPTStopCont
 The previously filled pt stop container.
NBPTLineContmyNBPTLineCont
 PT Line container to be filled.
long long int myCurrentRelation
 The currently parsed relation.
bool myIsRestriction
 whether the currently parsed relation is a restriction
SVCPermissions myRestrictionException
 exceptions to the restriction currenlty being parsed
long long int myFromWay
 the origination way for the current restriction
long long int myToWay
 the destination way for the current restriction
long long int myViaNode
 the via node/way for the current restriction
long long int myViaWay
long long int myStation
 the station node for the current stop_area
const OptionsContmyOptionsCont
 the options cont
RestrictionType myRestrictionType
std::vector< long long int > myStops
 bus stop references
std::set< long long int > myPlatformStops
 myStops which are actually platforms (in case there is no stop_position)
std::vector< NIIPTPlatformmyPlatforms
 bus stop platforms
std::vector< long long int > myWays
 ways in pt line references
bool myIsStopArea
 indicates whether current relation is a pt stop area
bool myIsRoute
 indicates whether current relation is a route
std::string myPTRouteType
 indicates whether current relation is a pt route
RGBColor myRouteColor
 official route color
std::string myName
 name of the relation
std::string myRef
 ref of the pt line
int myInterval
 service interval of the pt line in minutes
std::string myNightService
 night service information of the pt line
std::map< long long int, long long int > myStopAreas
 the map from stop area member to stop_area id
void myStartElement (int element, const SUMOSAXAttributes &attrs) override
 Called on the opening of a tag;.
void myEndElement (int element) override
 Called when a closing tag occurs.
void resetValues ()
 reset members to their defaults for parsing a new relation
bool checkEdgeRef (long long int ref) const
 check whether a referenced way has a corresponding edge
bool applyRestriction () const
 try to apply the parsed restriction and return whether successful
NBEdgefindEdgeRef (long long int wayRef, const std::vector< NBEdge * > &candidates) const
 try to find the way segment among candidates
 RelationHandler (const RelationHandler &s)
 invalidated copy constructor
RelationHandleroperator= (const RelationHandler &s)
 invalidated assignment operator

attributes parsing

typedef std::vector< XMLCh * > AttrMap
AttrMap myPredefinedTags
std::vector< std::string > myPredefinedTagsMML
 the map from ids to their string representation

elements parsing

typedef std::map< std::string, int > TagMap
TagMap myTagMap
std::vector< std::string > myCharactersVector
 A list of character strings obtained so far to build the complete characters string at the end.
GenericSAXHandlermyParentHandler
 The handler to give control back to.
int myParentIndicator
 The tag indicating that control should be given back.
std::string myFileName
 The name of the currently parsed file.
std::string myExpectedRoot
 The root element to expect, empty string disables the check.
bool myCollectCharacterData = false
 whether the reader should collect character data
bool myRootSeen = false
 whether the reader has already seen the root element
int mySection = -1
 The tag indicating the current section to parse.
bool mySectionSeen = false
 whether the reader has already seen the begin of the section
bool mySectionEnded = false
 whether the reader has already seen the end of the section
bool mySectionOpen = false
 whether an element of the current section is open
std::pair< int, SUMOSAXAttributes * > myNextSectionStart

SAX ErrorHandler callbacks

void warning (const XERCES_CPP_NAMESPACE::SAXParseException &exception)
 Handler for XML-warnings.
void error (const XERCES_CPP_NAMESPACE::SAXParseException &exception)
 Handler for XML-errors.
void fatalError (const XERCES_CPP_NAMESPACE::SAXParseException &exception)
 Handler for XML-errors.
void setSection (const int element, const bool seen)
bool sectionFinished () const
std::pair< int, SUMOSAXAttributes * > retrieveNextSectionStart ()
void needsCharacterData (const bool value=true)
std::string buildErrorMessage (const XERCES_CPP_NAMESPACE::SAXParseException &exception)
 Builds an error message.
virtual void myCharacters (int element, const std::string &chars)
 Callback method for characters to implement by derived classes.
void callParentEnd (int element)
 signal endElement to the parent handler (special case for MSCalibrator)
XMLCh * convert (const std::string &name) const
 converts from c++-string into unicode
int convertTag (const std::string &tag) const
 Converts a tag from its string into its numerical representation.

Detailed Description

A class which extracts relevant relation information from a parsed OSM-file.

  • turn restrictions

Definition at line 583 of file NIImporter_OpenStreetMap.h.

Member Typedef Documentation

◆ AttrMap

typedef std::vector<XMLCh*> GenericSAXHandler::AttrMap
privateinherited

Definition at line 303 of file GenericSAXHandler.h.

◆ TagMap

typedef std::map<std::string, int> GenericSAXHandler::TagMap
privateinherited

Definition at line 317 of file GenericSAXHandler.h.

Member Enumeration Documentation

◆ RestrictionType

whether the only allowed or the only forbidden connection is defined

Enumerator
ONLY 

The only valid connection is declared.

NO 

The only invalid connection is declared.

UNKNOWN 

The relation tag was missing.

Definition at line 667 of file NIImporter_OpenStreetMap.h.

Constructor & Destructor Documentation

◆ RelationHandler() [1/2]

NIImporter_OpenStreetMap::RelationHandler::RelationHandler ( const std::map< long long int, NIOSMNode * > & osmNodes,
const std::map< long long int, Edge * > & osmEdges,
NBPTStopCont * nbptStopCont,
const std::map< long long int, Edge * > & platfromShapes,
NBPTLineCont * nbptLineCont,
const OptionsCont & oc )

Constructor.

Parameters
[in]osmNodesThe previously parsed OSM-nodes
[in]osmEdgesThe previously parse OSM-edges

Definition at line 2342 of file NIImporter_OpenStreetMap.cpp.

References myNBPTLineCont, myNBPTStopCont, myOptionsCont, myOSMEdges, myOSMNodes, myPlatformShapes, resetValues(), and SUMOSAXHandler::SUMOSAXHandler().

Referenced by operator=(), and RelationHandler().

Here is the caller graph for this function:

◆ ~RelationHandler()

NIImporter_OpenStreetMap::RelationHandler::~RelationHandler ( )
overridedefault

Destructor.

◆ RelationHandler() [2/2]

NIImporter_OpenStreetMap::RelationHandler::RelationHandler ( const RelationHandler & s)
private

invalidated copy constructor

References RelationHandler().

Member Function Documentation

◆ applyRestriction()

bool NIImporter_OpenStreetMap::RelationHandler::applyRestriction ( ) const
private

try to apply the parsed restriction and return whether successful

Definition at line 2723 of file NIImporter_OpenStreetMap.cpp.

References NBEdge::addEdge2EdgeConnection(), findEdgeRef(), NBNode::getIncomingEdges(), NBNode::getOutgoingEdges(), NBEdge::getToNode(), NIImporter_OpenStreetMap::INVALID_ID, NBEdge::isConnectedTo(), myFromWay, myOSMNodes, myRestrictionException, myRestrictionType, myToWay, myViaNode, ONLY, NBEdge::removeFromConnections(), SVC_IGNORING, TL, toString(), and WRITE_WARNINGF.

Referenced by myEndElement().

Here is the caller graph for this function:

◆ buildErrorMessage()

std::string GenericSAXHandler::buildErrorMessage ( const XERCES_CPP_NAMESPACE::SAXParseException & exception)
protectedinherited

Builds an error message.

The error message includes the file name and the line/column information as supported by the given SAXParseException

Parameters
[in]exceptionThe name of the currently processed file
Returns
A string describing the given exception

Definition at line 205 of file GenericSAXHandler.cpp.

References getFileName(), and TL.

Referenced by error(), fatalError(), and warning().

Here is the caller graph for this function:

◆ callParentEnd()

void GenericSAXHandler::callParentEnd ( int element)
protectedinherited

signal endElement to the parent handler (special case for MSCalibrator)

Definition at line 247 of file GenericSAXHandler.cpp.

References myParentHandler.

Referenced by MSCalibrator::myEndElement().

Here is the caller graph for this function:

◆ characters()

void GenericSAXHandler::characters ( const XMLCh *const chars,
const XERCES3_SIZE_t length )
inherited

The inherited method called when characters occurred.

The retrieved characters are converted into a string and appended into a private buffer. They are reported as soon as the element ends.

Todo

recheck/describe what happens with characters when a new element is opened

describe characters processing in the class' head

Definition at line 186 of file GenericSAXHandler.cpp.

References myCharactersVector, myCollectCharacterData, and StringUtils::transcode().

◆ checkEdgeRef()

bool NIImporter_OpenStreetMap::RelationHandler::checkEdgeRef ( long long int ref) const
private

check whether a referenced way has a corresponding edge

Definition at line 2538 of file NIImporter_OpenStreetMap.cpp.

References myCurrentRelation, myOSMEdges, TL, toString(), and WRITE_WARNINGF.

Referenced by myStartElement().

Here is the caller graph for this function:

◆ convert()

XMLCh * GenericSAXHandler::convert ( const std::string & name) const
privateinherited

converts from c++-string into unicode

Todo
recheck encoding
Parameters
[in]nameThe string to convert
Returns
The string converted into a XMLCh-string

Definition at line 86 of file GenericSAXHandler.cpp.

Referenced by GenericSAXHandler().

Here is the caller graph for this function:

◆ convertTag()

int GenericSAXHandler::convertTag ( const std::string & tag) const
privateinherited

Converts a tag from its string into its numerical representation.

Returns the enum-representation stored for the given tag. If the tag is not known, SUMO_TAG_NOTHING is returned.

Parameters
[in]tagThe string to convert
Returns
The int-value that represents the string, SUMO_TAG_NOTHING if the named attribute is not known

Definition at line 195 of file GenericSAXHandler.cpp.

References myTagMap, and SUMO_TAG_NOTHING.

Referenced by endElement(), and startElement().

Here is the caller graph for this function:

◆ endElement()

void GenericSAXHandler::endElement ( const XMLCh *const uri,
const XMLCh *const localname,
const XMLCh *const qname )
inherited

The inherited method called when a tag is being closed.

This method calls the user-implemented methods myCharacters with the previously collected and converted characters.

Then, myEndElement is called, supplying it the qname converted to its enum- and string-representations.

Todo

recheck/describe encoding of the string-representation

do not generate and report the string-representation

Definition at line 134 of file GenericSAXHandler.cpp.

References convertTag(), myCharacters(), myCharactersVector, myEndElement(), myParentHandler, myParentIndicator, mySection, mySectionOpen, XMLSubSys::setHandler(), SUMO_TAG_INCLUDE, SUMO_TAG_NOTHING, and StringUtils::transcode().

◆ error()

void GenericSAXHandler::error ( const XERCES_CPP_NAMESPACE::SAXParseException & exception)
inherited

Handler for XML-errors.

The message is built using buildErrorMessage and thrown within a ProcessError.

Parameters
[in]exceptionThe occurred exception to process
Exceptions
ProcessErrorOn any call

Definition at line 224 of file GenericSAXHandler.cpp.

References buildErrorMessage().

Referenced by MSRouteHandler::addFlowTransportable(), MSRouteHandler::addTransportable(), MSRouteHandler::closeTransportable(), NIImporter_OpenDrive::geomFromSpiral(), and MSRouteHandler::interpretDepartPosLat().

Here is the caller graph for this function:

◆ fatalError()

void GenericSAXHandler::fatalError ( const XERCES_CPP_NAMESPACE::SAXParseException & exception)
inherited

Handler for XML-errors.

The message is built using buildErrorMessage and thrown within a ProcessError.

Exceptions
ProcessErrorOn any call
Parameters
[in]exceptionThe occurred exception to process

Definition at line 230 of file GenericSAXHandler.cpp.

References buildErrorMessage().

◆ findEdgeRef()

NBEdge * NIImporter_OpenStreetMap::RelationHandler::findEdgeRef ( long long int wayRef,
const std::vector< NBEdge * > & candidates ) const
private

try to find the way segment among candidates

Definition at line 2775 of file NIImporter_OpenStreetMap.cpp.

References TL, toString(), and WRITE_WARNINGF.

Referenced by applyRestriction().

Here is the caller graph for this function:

◆ getFileName()

◆ myCharacters()

void GenericSAXHandler::myCharacters ( int element,
const std::string & chars )
protectedvirtualinherited

Callback method for characters to implement by derived classes.

Called by "endElement" (see there).

Parameters
[in]elementThe opened element, given as a int
[in]charsThe complete embedded character string @exceptions ProcessError These method may throw a ProcessError if something fails

Reimplemented in NIImporter_ITSUMO::Handler, and NIImporter_OpenDrive.

Definition at line 240 of file GenericSAXHandler.cpp.

Referenced by endElement().

Here is the caller graph for this function:

◆ myEndElement()

◆ myStartElement()

◆ needsCharacterData()

void GenericSAXHandler::needsCharacterData ( const bool value = true)
inlineinherited

Definition at line 220 of file GenericSAXHandler.h.

References invalid_return< std::string >::value, and myCollectCharacterData.

Referenced by NIImporter_ITSUMO::loadNetwork(), NIImporter_OpenDrive::loadNetwork(), and NIImporter_OpenDrive::myCharacters().

Here is the caller graph for this function:

◆ operator=()

RelationHandler & NIImporter_OpenStreetMap::RelationHandler::operator= ( const RelationHandler & s)
private

invalidated assignment operator

References RelationHandler().

◆ registerParent()

void GenericSAXHandler::registerParent ( const int tag,
GenericSAXHandler * handler )
inherited

Assigning a parent handler which is enabled when the specified tag is closed.

Definition at line 178 of file GenericSAXHandler.cpp.

References GenericSAXHandler(), myParentHandler, myParentIndicator, and XMLSubSys::setHandler().

Referenced by NLTriggerBuilder::parseAndBuildCalibrator(), NLTriggerBuilder::parseAndBuildLaneSpeedTrigger(), and NLTriggerBuilder::parseAndBuildRerouter().

Here is the caller graph for this function:

◆ resetValues()

void NIImporter_OpenStreetMap::RelationHandler::resetValues ( )
private

reset members to their defaults for parsing a new relation

Definition at line 2363 of file NIImporter_OpenStreetMap.cpp.

References NIImporter_OpenStreetMap::INVALID_ID, myCurrentRelation, myFromWay, myIsRestriction, myIsRoute, myIsStopArea, myPlatforms, myPlatformStops, myPTRouteType, myRestrictionException, myRestrictionType, myRouteColor, myStation, myStops, myToWay, myViaNode, myViaWay, myWays, SVC_IGNORING, and UNKNOWN.

Referenced by myEndElement(), and RelationHandler().

Here is the caller graph for this function:

◆ retrieveNextSectionStart()

std::pair< int, SUMOSAXAttributes * > GenericSAXHandler::retrieveNextSectionStart ( )
inlineinherited

Definition at line 213 of file GenericSAXHandler.h.

References myNextSectionStart.

◆ sectionFinished()

bool GenericSAXHandler::sectionFinished ( ) const
inlineinherited

Definition at line 209 of file GenericSAXHandler.h.

References mySectionEnded.

◆ setFileName()

void GenericSAXHandler::setFileName ( const std::string & name)
inherited

Sets the current file name.

Parameters
[in]nameThe name of the currently processed file
Todo
Hmmm - this is as unsafe as having a direct access to the variable; recheck

Definition at line 74 of file GenericSAXHandler.cpp.

References myFileName.

Referenced by NIImporter_SUMO::_loadNetwork(), MSStateHandler::MSStateTimeHandler::getTime(), GUISettingsHandler::GUISettingsHandler(), NIImporter_OpenStreetMap::load(), NIImporter_Vissim::load(), NITypeLoader::load(), PCNetProjectionLoader::load(), loadNet(), ROLoader::loadNet(), NIImporter_ITSUMO::loadNetwork(), NIImporter_MATSim::loadNetwork(), NIImporter_OpenDrive::loadNetwork(), main(), and XMLSubSys::runParser().

Here is the caller graph for this function:

◆ setSection()

void GenericSAXHandler::setSection ( const int element,
const bool seen )
inlineinherited

Definition at line 202 of file GenericSAXHandler.h.

References mySection, mySectionEnded, mySectionOpen, and mySectionSeen.

◆ startElement()

void GenericSAXHandler::startElement ( const XMLCh *const uri,
const XMLCh *const localname,
const XMLCh *const qname,
const XERCES_CPP_NAMESPACE::Attributes & attrs )
inherited

The inherited method called when a new tag opens.

The method parses the supplied XMLCh*-qname using the internal name/enum-map to obtain the enum representation of the attribute name.

Then, "myStartElement" is called supplying the enumeration value, the string-representation of the name and the attributes.

Todo

recheck/describe encoding of the string-representation

do not generate and report the string-representation

Definition at line 99 of file GenericSAXHandler.cpp.

References convertTag(), FileHelpers::getConfigurationRelative(), getFileName(), SUMOSAXAttributesImpl_Xerces::getString(), FileHelpers::isAbsolute(), myCharactersVector, myExpectedRoot, myNextSectionStart, myPredefinedTags, myPredefinedTagsMML, myRootSeen, mySection, mySectionEnded, mySectionOpen, mySectionSeen, myStartElement(), XMLSubSys::runParser(), SUMO_ATTR_HREF, SUMO_TAG_INCLUDE, TL, StringUtils::transcode(), and WRITE_WARNINGF.

◆ warning()

void GenericSAXHandler::warning ( const XERCES_CPP_NAMESPACE::SAXParseException & exception)
inherited

Handler for XML-warnings.

The message is built using buildErrorMessage and reported to the warning-instance of the MsgHandler.

Parameters
[in]exceptionThe occurred exception to process

Definition at line 218 of file GenericSAXHandler.cpp.

References buildErrorMessage(), and WRITE_WARNING.

Field Documentation

◆ myCharactersVector

std::vector<std::string> GenericSAXHandler::myCharactersVector
privateinherited

A list of character strings obtained so far to build the complete characters string at the end.

Definition at line 324 of file GenericSAXHandler.h.

Referenced by characters(), endElement(), and startElement().

◆ myCollectCharacterData

bool GenericSAXHandler::myCollectCharacterData = false
privateinherited

whether the reader should collect character data

Definition at line 339 of file GenericSAXHandler.h.

Referenced by characters(), and needsCharacterData().

◆ myCurrentRelation

long long int NIImporter_OpenStreetMap::RelationHandler::myCurrentRelation
private

The currently parsed relation.

Definition at line 640 of file NIImporter_OpenStreetMap.h.

Referenced by checkEdgeRef(), myEndElement(), myStartElement(), and resetValues().

◆ myExpectedRoot

std::string GenericSAXHandler::myExpectedRoot
privateinherited

The root element to expect, empty string disables the check.

Definition at line 336 of file GenericSAXHandler.h.

Referenced by GenericSAXHandler(), and startElement().

◆ myFileName

std::string GenericSAXHandler::myFileName
privateinherited

The name of the currently parsed file.

Definition at line 333 of file GenericSAXHandler.h.

Referenced by GenericSAXHandler(), getFileName(), and setFileName().

◆ myFromWay

long long int NIImporter_OpenStreetMap::RelationHandler::myFromWay
private

the origination way for the current restriction

Definition at line 649 of file NIImporter_OpenStreetMap.h.

Referenced by applyRestriction(), myEndElement(), myStartElement(), and resetValues().

◆ myInterval

int NIImporter_OpenStreetMap::RelationHandler::myInterval
private

service interval of the pt line in minutes

Definition at line 733 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement(), and myStartElement().

◆ myIsRestriction

bool NIImporter_OpenStreetMap::RelationHandler::myIsRestriction
private

whether the currently parsed relation is a restriction

Definition at line 643 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement(), myStartElement(), and resetValues().

◆ myIsRoute

bool NIImporter_OpenStreetMap::RelationHandler::myIsRoute
private

indicates whether current relation is a route

Definition at line 718 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement(), myStartElement(), and resetValues().

◆ myIsStopArea

bool NIImporter_OpenStreetMap::RelationHandler::myIsStopArea
private

indicates whether current relation is a pt stop area

Definition at line 715 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement(), myStartElement(), and resetValues().

◆ myName

std::string NIImporter_OpenStreetMap::RelationHandler::myName
private

name of the relation

Definition at line 727 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement(), and myStartElement().

◆ myNBPTLineCont

NBPTLineCont* NIImporter_OpenStreetMap::RelationHandler::myNBPTLineCont
private

PT Line container to be filled.

Definition at line 637 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement(), and RelationHandler().

◆ myNBPTStopCont

NBPTStopCont* NIImporter_OpenStreetMap::RelationHandler::myNBPTStopCont
private

The previously filled pt stop container.

Definition at line 634 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement(), and RelationHandler().

◆ myNextSectionStart

std::pair<int, SUMOSAXAttributes*> GenericSAXHandler::myNextSectionStart
privateinherited

◆ myNightService

std::string NIImporter_OpenStreetMap::RelationHandler::myNightService
private

night service information of the pt line

Definition at line 736 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement(), and myStartElement().

◆ myOptionsCont

const OptionsCont& NIImporter_OpenStreetMap::RelationHandler::myOptionsCont
private

the options cont

Definition at line 662 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement(), and RelationHandler().

◆ myOSMEdges

const std::map<long long int, Edge*>& NIImporter_OpenStreetMap::RelationHandler::myOSMEdges
private

The previously parsed edges.

Definition at line 628 of file NIImporter_OpenStreetMap.h.

Referenced by checkEdgeRef(), myEndElement(), and RelationHandler().

◆ myOSMNodes

const std::map<long long int, NIOSMNode*>& NIImporter_OpenStreetMap::RelationHandler::myOSMNodes
private

The previously parsed nodes.

Definition at line 625 of file NIImporter_OpenStreetMap.h.

Referenced by applyRestriction(), myEndElement(), myStartElement(), and RelationHandler().

◆ myParentHandler

GenericSAXHandler* GenericSAXHandler::myParentHandler
privateinherited

The handler to give control back to.

Definition at line 327 of file GenericSAXHandler.h.

Referenced by callParentEnd(), endElement(), GenericSAXHandler(), and registerParent().

◆ myParentIndicator

int GenericSAXHandler::myParentIndicator
privateinherited

The tag indicating that control should be given back.

Definition at line 330 of file GenericSAXHandler.h.

Referenced by endElement(), GenericSAXHandler(), and registerParent().

◆ myPlatforms

std::vector<NIIPTPlatform> NIImporter_OpenStreetMap::RelationHandler::myPlatforms
private

bus stop platforms

Definition at line 709 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement(), myStartElement(), and resetValues().

◆ myPlatformShapes

const std::map<long long int, Edge*>& NIImporter_OpenStreetMap::RelationHandler::myPlatformShapes
private

The previously parsed platform shapes.

Definition at line 631 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement(), myStartElement(), and RelationHandler().

◆ myPlatformStops

std::set<long long int> NIImporter_OpenStreetMap::RelationHandler::myPlatformStops
private

myStops which are actually platforms (in case there is no stop_position)

Definition at line 700 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement(), myStartElement(), and resetValues().

◆ myPredefinedTags

AttrMap GenericSAXHandler::myPredefinedTags
privateinherited

Definition at line 306 of file GenericSAXHandler.h.

Referenced by GenericSAXHandler(), startElement(), and ~GenericSAXHandler().

◆ myPredefinedTagsMML

std::vector<std::string> GenericSAXHandler::myPredefinedTagsMML
privateinherited

the map from ids to their string representation

Definition at line 309 of file GenericSAXHandler.h.

Referenced by GenericSAXHandler(), and startElement().

◆ myPTRouteType

std::string NIImporter_OpenStreetMap::RelationHandler::myPTRouteType
private

indicates whether current relation is a pt route

Definition at line 721 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement(), myStartElement(), and resetValues().

◆ myRef

std::string NIImporter_OpenStreetMap::RelationHandler::myRef
private

ref of the pt line

Definition at line 730 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement(), and myStartElement().

◆ myRestrictionException

SVCPermissions NIImporter_OpenStreetMap::RelationHandler::myRestrictionException
private

exceptions to the restriction currenlty being parsed

Definition at line 646 of file NIImporter_OpenStreetMap.h.

Referenced by applyRestriction(), myStartElement(), and resetValues().

◆ myRestrictionType

RestrictionType NIImporter_OpenStreetMap::RelationHandler::myRestrictionType
private

◆ myRootSeen

bool GenericSAXHandler::myRootSeen = false
privateinherited

whether the reader has already seen the root element

Definition at line 342 of file GenericSAXHandler.h.

Referenced by startElement().

◆ myRouteColor

RGBColor NIImporter_OpenStreetMap::RelationHandler::myRouteColor
private

official route color

Definition at line 724 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement(), myStartElement(), and resetValues().

◆ mySection

int GenericSAXHandler::mySection = -1
privateinherited

The tag indicating the current section to parse.

Definition at line 345 of file GenericSAXHandler.h.

Referenced by endElement(), setSection(), and startElement().

◆ mySectionEnded

bool GenericSAXHandler::mySectionEnded = false
privateinherited

whether the reader has already seen the end of the section

Definition at line 351 of file GenericSAXHandler.h.

Referenced by sectionFinished(), setSection(), and startElement().

◆ mySectionOpen

bool GenericSAXHandler::mySectionOpen = false
privateinherited

whether an element of the current section is open

Definition at line 354 of file GenericSAXHandler.h.

Referenced by endElement(), setSection(), and startElement().

◆ mySectionSeen

bool GenericSAXHandler::mySectionSeen = false
privateinherited

whether the reader has already seen the begin of the section

Definition at line 348 of file GenericSAXHandler.h.

Referenced by setSection(), and startElement().

◆ myStation

long long int NIImporter_OpenStreetMap::RelationHandler::myStation
private

the station node for the current stop_area

Definition at line 659 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement(), myStartElement(), and resetValues().

◆ myStopAreas

std::map<long long int, long long int > NIImporter_OpenStreetMap::RelationHandler::myStopAreas
private

the map from stop area member to stop_area id

Definition at line 739 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement().

◆ myStops

std::vector<long long int> NIImporter_OpenStreetMap::RelationHandler::myStops
private

bus stop references

Definition at line 697 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement(), myStartElement(), and resetValues().

◆ myTagMap

TagMap GenericSAXHandler::myTagMap
privateinherited

Definition at line 320 of file GenericSAXHandler.h.

Referenced by convertTag(), and GenericSAXHandler().

◆ myToWay

long long int NIImporter_OpenStreetMap::RelationHandler::myToWay
private

the destination way for the current restriction

Definition at line 652 of file NIImporter_OpenStreetMap.h.

Referenced by applyRestriction(), myEndElement(), myStartElement(), and resetValues().

◆ myViaNode

long long int NIImporter_OpenStreetMap::RelationHandler::myViaNode
private

the via node/way for the current restriction

Definition at line 655 of file NIImporter_OpenStreetMap.h.

Referenced by applyRestriction(), myEndElement(), myStartElement(), and resetValues().

◆ myViaWay

long long int NIImporter_OpenStreetMap::RelationHandler::myViaWay
private

Definition at line 656 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement(), myStartElement(), and resetValues().

◆ myWays

std::vector<long long int> NIImporter_OpenStreetMap::RelationHandler::myWays
private

ways in pt line references

Definition at line 712 of file NIImporter_OpenStreetMap.h.

Referenced by myEndElement(), myStartElement(), and resetValues().


The documentation for this class was generated from the following files: