Next: UTM GPS Coords as 4 variables; zone, hemisphere, easting, northing
http://www.maptools.com/UsingUTM/quickUTM.html
http://rockyweb.cr.usgs.gov/outreach/gps/UTM_Zones_AK.pdf
/// <summary></summary>
/// http://www.maptools.com/UsingUTM/quickUTM.html
/// http://rockyweb.cr.usgs.gov/outreach/gps/UTM_Zones_AK.pdf
///
public class UtmCoordinate
{
/// <summary></summary>
///
///
public double Northing
{
get { return northing; }
set { northing = value; }
}
private double northing = 0;
/// <summary></summary>
///
///
public double Easting
{
get { return easting; }
set { easting = value; }
}
private double easting = 0;
/// <summary></summary>
///
///
public int Zone
{
get { return zone; }
set { zone = value; }
}
private int zone = 6;
/// <summary></summary>
///
///
public Hemisphere Hemisphere
{
get { return hemisphere; }
set { hemisphere = value; }
}
private Hemisphere hemisphere = Hemisphere.North;
}