Skip to content

Instantly share code, notes, and snippets.

@Ghost-Programmer
Last active April 12, 2020 00:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ghost-Programmer/2d87cdea8e80d6aa81f4cf0ef0b4c076 to your computer and use it in GitHub Desktop.
Save Ghost-Programmer/2d87cdea8e80d6aa81f4cf0ef0b4c076 to your computer and use it in GitHub Desktop.
GEO Classes
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