Worldwind public release 0.2
[worldwind-tracker.git] / gov / nasa / worldwind / TrackPoint.java
blob8bcc91529641675751ca8628fae9ccc7ccf24a34
1 /*
2 Copyright (C) 2001, 2006 United States Government
3 as represented by the Administrator of the
4 National Aeronautics and Space Administration.
5 All Rights Reserved.
6 */
7 package gov.nasa.worldwind;
9 /**
10 * @author tag
11 * @version $Id: TrackPoint.java 288 2006-12-07 12:21:49Z tgaskins $
13 public interface TrackPoint
15 double getLatitude();
17 void setLatitude(double latitude);
19 double getLongitude();
21 void setLongitude(double longitude);
23 double getElevation();
25 void setElevation(double elevation);
27 String getTime();
29 void setTime(String time);