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

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

There is a newer version: 2.5.0
Show newest version
package org.opentripplanner.graph_builder.module.osm;

/**
 * Defines which OSM ways get notes and what kind of notes they get.
 * 
 * @author novalis
 * 
 */
public class NotePicker {

    public OSMSpecifier specifier;

    public NoteProperties noteProperties;

    public NotePicker(OSMSpecifier specifier, NoteProperties noteProperties) {
        this.specifier = specifier;
        this.noteProperties = noteProperties;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy