00001 using System; 00002 using System.Collections.Generic; 00003 using System.Linq; 00004 using System.Text; 00005 00006 namespace UtmConvert { 00007 public class UtmPointSet { 00008 List<UtmPoint> _points; 00009 public List<UtmPoint> 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 UtmPointSet() { 00026 _points = new List<UtmPoint>(); 00027 } 00028 00029 public UtmPointSet(string locationName 00030 , List<UtmPoint> points, string datum) { 00031 _locationName = locationName; 00032 _points = new List<UtmPoint>(points); 00033 _datum = datum; 00034 } 00035 00036 } 00037 }