//
// lane
//
if( qualifiedName.equals( "lane" ) ) {
StatLane newLane;
try {
//SUMO sets speed to maxspeed when no data collected
//dont want that, so set to 0 if no data (sampledseconds == 0)
//same thing for traveltime
double seconds = Double.parseDouble(attributes.getValue( "sampledSeconds" ));
double speed = (seconds == 0.0)? 0.0: Double.parseDouble(attributes.getValue( "speed" ));
double traveltime = (seconds == 0.0)? 0.0: Double.parseDouble(attributes.getValue( "traveltime" ));
newLane = new StatLane(
attributes.getValue( "id" ),
traveltime,
seconds,
parseDouble(attributes.getValue( "density" )),
parseDouble(attributes.getValue( "occupancy" )),