Made the track serializable.
[utils] / gps / src / org / wamblee / gps / geometry / Point.java
1 /*
2  * Copyright 2006 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */ 
16
17 package org.wamblee.gps.geometry;
18
19 import java.io.Serializable;
20
21
22 /**
23  * Represents a point in some coordinate system. 
24  */
25 public class Point implements Serializable {
26     
27     private Coordinates _coordinates;
28     private CoordinateSystem _system; 
29     
30     /**
31      * Constructs the point. 
32      * @param aCoordinates Coordinates of the point in its coordinate system. 
33      * @param aSystem Coordinate system. 
34      */
35     public Point(Coordinates aCoordinates, CoordinateSystem aSystem) { 
36         _coordinates = aCoordinates; 
37         _system = aSystem; 
38     }
39     
40     /**
41      * Gets the coordinates in the point's coordinate system.  
42      * @return Coordinates.
43      */
44     public Coordinates getCoordinates() {
45         return _coordinates; 
46     }
47     
48     public Coordinates getReferenceCoordinates() { 
49         return _system.toReferenceSystem(_coordinates);
50     }
51     
52     /**
53      * Gets the coordinate system. 
54      * @return Coordinate system. 
55      */
56     public CoordinateSystem getCoordinateSystem() { 
57         return _system; 
58     }
59    
60
61     /* (non-Javadoc)
62      * @see java.lang.Object#toString()
63      */
64     @Override
65     public String toString() {
66         return getCoordinates().toString();
67     }
68 }