
org.opentripplanner.graph_builder.module.osm.NotePicker 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;
/**
* 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 - 2025 Weber Informatics LLC | Privacy Policy