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.6.0
Show newest version
package org.opentripplanner.graph_builder.module.osm;

import org.opentripplanner.graph_builder.module.osm.specifier.OsmSpecifier;

/**
 * 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