2 * Copyright 2006 the original author or authors.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package org.wamblee.gps.geometry;
19 import java.io.Serializable;
23 * Represents a point in some coordinate system.
25 public class Point implements Serializable {
27 private Coordinates _coordinates;
28 private CoordinateSystem _system;
31 * Constructs the point.
32 * @param aCoordinates Coordinates of the point in its coordinate system.
33 * @param aSystem Coordinate system.
35 public Point(Coordinates aCoordinates, CoordinateSystem aSystem) {
36 _coordinates = aCoordinates;
41 * Gets the coordinates in the point's coordinate system.
42 * @return Coordinates.
44 public Coordinates getCoordinates() {
48 public Coordinates getReferenceCoordinates() {
49 return _system.toReferenceSystem(_coordinates);
53 * Gets the coordinate system.
54 * @return Coordinate system.
56 public CoordinateSystem getCoordinateSystem() {
62 * @see java.lang.Object#toString()
65 public String toString() {
66 return getCoordinates().toString();