00001 using System; 00002 using System.Collections.Generic; 00003 using System.Linq; 00004 using System.Text; 00005 00006 namespace UtmConvert { 00007 public class LatLonPointSet { 00008 List<LatLonPoint> _points; 00009 public List<LatLonPoint> Points { 00010 get { return _points; } 00011 } 00012 00013 string _locationName = ""; 00014 public string LocationName { 00015 set { _locationName = value; } 00016 get { return _locationName; } 00017 } 00018 00019 string _datum = "NAD83/WGS84"; 00020 public string Datum { 00021 get { return _datum; } 00022 set { _datum = value; } 00023 } 00024 00025 public LatLonPointSet() { 00026 _points = new List<LatLonPoint>(); 00027 } 00028 00029 public LatLonPointSet(string locationName 00030 , List<LatLonPoint> points, string datum) { 00031 _locationName = locationName; 00032 _points = new List<LatLonPoint>(points); 00033 _datum = datum; 00034 } 00035 00036 } 00037 }