/* * Copyright (C) 2013 Serdar * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package de.fub.maps.project.detector.model.inference.features; import de.fub.agg2graph.gpseval.data.Waypoint; import de.fub.agg2graph.gpseval.features.ErrorRateFeature; import de.fub.maps.project.detector.model.gpx.TrackSegment; import de.fub.maps.project.detector.model.xmls.ProcessDescriptor; import org.openide.util.NbBundle; import org.openide.util.lookup.ServiceProvider; /** * * @author Serdar */ @NbBundle.Messages({ "CLT_VelocityErrorRateFeature_Name=Velocity Error Rate", "CLT_VelocityErrorRateFeature_Description=Calculates the error rate concerning the velocity data that each track segment contains." }) @ServiceProvider(service = FeatureProcess.class) public class VelocityErrorRateFeatureProcess extends FeatureProcess { private final ErrorRateFeature feature = new ErrorRateFeature(); private TrackSegment trackSegment; public VelocityErrorRateFeatureProcess() { } @Override protected void start() { feature.reset(); if (trackSegment != null) { for (Waypoint waypoint : trackSegment.getWayPointList()) { feature.addWaypoint(waypoint); } } trackSegment = null; } @Override public String getName() { if (getProcessDescriptor() != null && getProcessDescriptor().getName() != null) { return getProcessDescriptor().getName(); } return Bundle.CLT_VelocityErrorRateFeature_Name(); } @Override public String getDescription() { if (getProcessDescriptor() != null && getProcessDescriptor().getDescription() != null) { return getProcessDescriptor().getDescription(); } return Bundle.CLT_VelocityErrorRateFeature_Description(); } @Override public void setInput(TrackSegment input) { this.trackSegment = input; } @Override public Double getResult() { double result = feature.getResult(); feature.reset(); trackSegment = null; return result; } @Override protected ProcessDescriptor createProcessDescriptor() { ProcessDescriptor descriptor = new ProcessDescriptor(); descriptor.setJavaType(VelocityErrorRateFeatureProcess.class.getName()); descriptor.setName(Bundle.CLT_VelocityErrorRateFeature_Name()); descriptor.setDescription(Bundle.CLT_VelocityErrorRateFeature_Description()); return descriptor; } }