org.opentripplanner.graph_builder.module.shapefile.FeatureIdConverter 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.shapefile;
import org.opengis.feature.simple.SimpleFeature;
import org.opentripplanner.graph_builder.services.shapefile.SimpleFeatureConverter;
public class FeatureIdConverter implements SimpleFeatureConverter {
@Override
public String convert(SimpleFeature feature) {
return feature.getID();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy