org.opentripplanner.graph_builder.module.osm.CreativeNamerPicker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
package org.opentripplanner.graph_builder.module.osm;
/**
* Describes how unnamed OSM ways are to be named based on the tags they possess.
* The CreativeNamer will be applied to ways that match the OSMSpecifier.
* @author novalis
*/
public class CreativeNamerPicker {
public OSMSpecifier specifier;
public CreativeNamer namer;
public CreativeNamerPicker(){
specifier=null;
namer=null;
}
public CreativeNamerPicker(OSMSpecifier specifier, CreativeNamer namer){
this.specifier = specifier;
this.namer = namer;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy