public Coordinates(Decal.Adapter.Wrappers.CoordsObject obj, int precision)
 {
     this.NS = Math.Round(obj.NorthSouth, precision);
     this.EW = Math.Round(obj.EastWest, precision);
 }
 public Coordinates(Decal.Adapter.Wrappers.CoordsObject obj)
 {
     this.NS = obj.NorthSouth;
     this.EW = obj.EastWest;
 }