com.graphhopper.routing.util.parsers.OSMHazmatParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphhopper-core Show documentation
Show all versions of graphhopper-core Show documentation
GraphHopper is a fast and memory efficient Java road routing engine
working seamlessly with OpenStreetMap data.
package com.graphhopper.routing.util.parsers;
import com.graphhopper.reader.ReaderWay;
import com.graphhopper.routing.ev.EnumEncodedValue;
import com.graphhopper.routing.ev.Hazmat;
import com.graphhopper.routing.ev.EdgeIntAccess;
import com.graphhopper.storage.IntsRef;
public class OSMHazmatParser implements TagParser {
private final EnumEncodedValue hazEnc;
public OSMHazmatParser(EnumEncodedValue hazEnc) {
this.hazEnc = hazEnc;
}
@Override
public void handleWayTags(int edgeId, EdgeIntAccess edgeIntAccess, ReaderWay readerWay, IntsRef relationFlags) {
if (readerWay.hasTag("hazmat", "no"))
hazEnc.setEnum(false, edgeId, edgeIntAccess, Hazmat.NO);
}
}