/* * Geopaparazzi - Digital field mapping on Android based devices * Copyright (C) 2016 HydroloGIS (www.hydrologis.com) * * 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 eu.geopaparazzi.core.database.objects; import java.io.Serializable; //for string formatting the track (log) length /** * Item representing a gps log. * * @author Andrea Antonello (www.hydrologis.com) */ public class LogMapItem extends MapItem implements Serializable { private static final long serialVersionUID = 1L; private long startTime = 0; private long endTime = 0; private double lengthm = 0.0; private long id; /** * @param id id * @param text title. * @param color color * @param width width * @param isVisible if visible * @param startTime start time * @param endTime end time * @param lengthm log length in m */ public LogMapItem(long id, String text, String color, float width, boolean isVisible, long startTime, long endTime, double lengthm) { super(id, text, color, width, isVisible); this.startTime = startTime; this.endTime = endTime; if (lengthm > 0) this.lengthm = lengthm; this.id = id; } /** * @return the start time. */ public long getStartTime() { return startTime; } // /** // * @param startTime the start time. // */ // public void setStartTime( String startTime ) { // this.startTime = startTime; // } /** * @return the end time. */ public long getEndTime() { return endTime; } // /** // * @param endTime the end time. // */ // public void setEndTime( String endTime ) { // this.endTime = endTime; // } public void setEndTime(long endTime) { this.endTime = endTime; } /** * @return returns length of track in meters */ public String getLengthInM() { //return String.format(Locale.getDefault(), "%.1f", lengthm); //$NON-NLS-1$ return Long.toString(Math.round(lengthm)); } /** * @param lengthm the track length in meters */ public void setLengthInM(double lengthm) { this.lengthm = lengthm; } /** * @return returns the id for this record */ public long getLogID() { return id; } }