All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentripplanner.graph_builder.module.osm.CreativeNamerPicker Maven / Gradle / Ivy

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 - 2024 Weber Informatics LLC | Privacy Policy