Last active
April 12, 2020 00:31
-
-
Save Ghost-Programmer/2d87cdea8e80d6aa81f4cf0ef0b4c076 to your computer and use it in GitHub Desktop.
GEO Classes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package name.mymiller.geo; | |
import java.io.Serializable; | |
/** | |
* Abstract class that will form the basis of Latitude and Longitude. Basic | |
* functionality is the same between the two types, just the range of values | |
* differentiate. | |
* | |
* @author jmiller | |
*/ | |
abstract public class Coordinate implements Serializable { | |
/** | |
* | |
*/ | |
private static final long serialVersionUID = 5443490914016651058L; | |
/** | |
* The Degree of the coordinate | |
*/ | |
private Double decimal = 0D; | |
/** | |
* returns the entire coordinate as a decimal of the degree | |
* | |
* @return Double representing the decimal value of the degree, minute and | |
* second. | |
*/ | |
public Double getDecimal() { | |
return this.decimal; | |
} | |
/** | |
* Converts a decimal degree into Degree, Minute and Second | |
* | |
* @param decimal Decimal value of the degree | |
*/ | |
public void setDecimal(final Double decimal) { | |
this.decimal = decimal; | |
} | |
/** | |
* @return the Maximum value of the Degree. | |
*/ | |
abstract protected int getDegreeLimit(); | |
@Override | |
public String toString() { | |
return "Coordinate [decimal=" + this.getDecimal() + "]"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment