]> git.argeo.org Git - gpl/argeo-slc.git/blob - TrackPoint.java
76e290cb1ca2b64dfc1c591b588fbb4dda9e8207
[gpl/argeo-slc.git] / TrackPoint.java
1 package org.argeo.slc.gpx;
2
3 import java.util.Date;
4
5 import com.vividsolutions.jts.geom.Point;
6
7 public class TrackPoint {
8 private Integer tid;
9 private String segmentUuid;
10 private String sensor;
11 private Date utcTimestamp;
12 private Point location;
13 private Double elevation;
14
15 public Integer getTid() {
16 return tid;
17 }
18
19 public void setTid(Integer tid) {
20 this.tid = tid;
21 }
22
23 public String getSegmentUuid() {
24 return segmentUuid;
25 }
26
27 public void setSegmentUuid(String segmentUuid) {
28 this.segmentUuid = segmentUuid;
29 }
30
31 public String getSensor() {
32 return sensor;
33 }
34
35 public void setSensor(String sensor) {
36 this.sensor = sensor;
37 }
38
39 public Date getUtcTimestamp() {
40 return utcTimestamp;
41 }
42
43 public void setUtcTimestamp(Date ts) {
44 this.utcTimestamp = ts;
45 }
46
47 public Point getLocation() {
48 return location;
49 }
50
51 public void setLocation(Point location) {
52 this.location = location;
53 }
54
55 public Double getElevation() {
56 return elevation;
57 }
58
59 public void setElevation(Double elevation) {
60 this.elevation = elevation;
61 }
62
63 }