Updated to worldwind release 20070817
[worldwind-tracker.git] / gov / nasa / worldwind / tracks / TrackPoint.java
blob214bffd9e4d2d3810225b2d2413e59d9be5826bb
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.tracks;
9 /**
10 * @author tag
11 * @version $Id: TrackPoint.java 2422 2007-07-25 23:07: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);