Exemplo n.º 1
0
        public void SetPointLL(double Lat, double Long)
        {
            this.Lat  = Lat;
            this.Long = Long;

            CoordinateConversion.LLtoUTM(23, Lat, Long, out UTMNorthing, out UTMEasting, out UTMZone);
        }
Exemplo n.º 2
0
        public void SetPointUTM(double northing, double easting)
        {
            UTMNorthing = northing;
            UTMEasting  = easting;

            CoordinateConversion.UTMtoLL(23, UTMNorthing, UTMEasting, UTMZone, out Lat, out Long);
        }