00001 using System; 00002 using System.Collections.Generic; 00003 using System.Linq; 00004 using System.Text; 00005 00006 namespace UtmConvert { 00007 public class LatLonPoint { 00008 00009 double _lat = 44.045555; 00010 public double Lat { 00011 get { return _lat; } 00012 set { _lat = value; } 00013 } 00014 00015 string _ns = "n"; 00016 public string Ns { 00017 get { return _ns; } 00018 set { _ns = value; } 00019 } 00020 00021 double _lon = -123.1017; 00022 public double Lon { 00023 get { return _lon; } 00024 set { _lon = value; } 00025 } 00026 00027 string _ew = "w"; 00028 public string Ew { 00029 get { return _ew; } 00030 set { _ew = value; } 00031 } 00032 00033 string _format = "ddd_dd"; 00034 public string Format { 00035 get { return _format; } 00036 set { _format = value; } 00037 } 00038 00039 string _note = "cone"; 00040 public string Note { 00041 get { return _note; } 00042 set { _note = value; } 00043 } 00044 00045 string _handle = ""; 00046 public string Handle { 00047 get { return _handle; } 00048 set { _handle = value; } 00049 } 00050 00051 public LatLonPoint() { 00052 } 00053 00054 public LatLonPoint(double lat, string ns, double lon 00055 , string ew, string format, string note, string handle) { 00056 _lat = lat; 00057 _ns = ns; 00058 _lon = lon; 00059 _ew = ew; 00060 _format = format; 00061 _note = note; 00062 _handle = handle; 00063 } 00064 } 00065 }