AngularUnit.cs
上传用户:sex100000
上传日期:2013-11-09
资源大小:1377k
文件大小:5k
源码类别:

GIS编程

开发平台:

C#

  1. // Copyright 2005, 2006 - Morten Nielsen (www.iter.dk)
  2. //
  3. // This file is part of SharpMap.
  4. // SharpMap is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU Lesser General Public License as published by
  6. // the Free Software Foundation; either version 2 of the License, or
  7. // (at your option) any later version.
  8. // 
  9. // SharpMap is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. // GNU Lesser General Public License for more details.
  13. // You should have received a copy of the GNU Lesser General Public License
  14. // along with SharpMap; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
  16. using System;
  17. using System.Collections.Generic;
  18. using System.Text;
  19. namespace SharpMap.CoordinateSystems
  20. {
  21. /// <summary>
  22. /// Definition of angular units.
  23. /// </summary>
  24. public class AngularUnit : Info, IAngularUnit
  25. {
  26. /// <summary>
  27. /// Initializes a new instance of a angular unit
  28. /// </summary>
  29. /// <param name="radiansPerUnit">Radians per unit</param>
  30. public AngularUnit(double radiansPerUnit)
  31. : this(
  32. radiansPerUnit,String.Empty,String.Empty,-1,String.Empty,String.Empty,String.Empty)
  33. {
  34. }
  35. /// <summary>
  36. /// Initializes a new instance of a angular unit
  37. /// </summary>
  38. /// <param name="radiansPerUnit">Radians per unit</param>
  39. /// <param name="name">Name</param>
  40. /// <param name="authority">Authority name</param>
  41. /// <param name="authorityCode">Authority-specific identification code.</param>
  42. /// <param name="alias">Alias</param>
  43. /// <param name="abbreviation">Abbreviation</param>
  44. /// <param name="remarks">Provider-supplied remarks</param>
  45. internal AngularUnit(double radiansPerUnit, string name, string authority, long authorityCode, string alias, string abbreviation, string remarks)
  46. :
  47. base(name, authority, authorityCode, alias, abbreviation, remarks)
  48. {
  49. _RadiansPerUnit = radiansPerUnit;
  50. }
  51. #region Predifined units
  52. /// <summary>
  53. /// The angular degrees are PI/180 = 0.017453292519943295769236907684886 radians
  54. /// </summary>
  55. public static AngularUnit Degrees
  56. {
  57. get { return new AngularUnit(0.017453292519943295769236907684886, "degree", "EPSG", 9102, "deg", String.Empty, "=pi/180 radians"); }
  58. }
  59. /// <summary>
  60. /// SI standard unit
  61. /// </summary>
  62. public static AngularUnit Radian
  63. {
  64. get { return new AngularUnit(1, "radian", "EPSG", 9101, "rad", String.Empty, "SI standard unit."); }
  65. }
  66. /// <summary>
  67. /// Pi / 200 = 0.015707963267948966192313216916398 radians
  68. /// </summary>
  69. public static AngularUnit Grad
  70. {
  71. get { return new AngularUnit(0.015707963267948966192313216916398, "grad", "EPSG", 9105, "gr", String.Empty, "=pi/200 radians."); }
  72. }
  73. /// <summary>
  74. /// Pi / 200 = 0.015707963267948966192313216916398 radians
  75. /// </summary>
  76. public static AngularUnit Gon
  77. {
  78. get { return new AngularUnit(0.015707963267948966192313216916398, "gon", "EPSG", 9106, "g", String.Empty, "=pi/200 radians."); }
  79. }
  80. #endregion
  81. #region IAngularUnit Members
  82. private double _RadiansPerUnit;
  83. /// <summary>
  84. /// Gets or sets the number of radians per <see cref="AngularUnit"/>.
  85. /// </summary>
  86. public double RadiansPerUnit
  87. {
  88. get { return _RadiansPerUnit; }
  89. set { _RadiansPerUnit = value; }
  90. }
  91. /// <summary>
  92. /// Returns the Well-known text for this object
  93. /// as defined in the simple features specification.
  94. /// </summary>
  95. public override string WKT
  96. {
  97. get
  98. {
  99. StringBuilder sb = new StringBuilder();
  100. sb.AppendFormat(SharpMap.Map.numberFormat_EnUS,"UNIT["{0}", {1}", Name, RadiansPerUnit);
  101. if (!String.IsNullOrEmpty(Authority) && AuthorityCode > 0)
  102. sb.AppendFormat(", AUTHORITY["{0}", "{1}"]", Authority, AuthorityCode);
  103. sb.Append("]");
  104. return sb.ToString();
  105. }
  106. }
  107. /// <summary>
  108. /// Gets an XML representation of this object.
  109. /// </summary>
  110. public override string XML
  111. {
  112. get
  113. {
  114. return String.Format(SharpMap.Map.numberFormat_EnUS, "<CS_AngularUnit RadiansPerUnit="{0}">{1}</CS_AngularUnit>", RadiansPerUnit, InfoXml);
  115. }
  116. }
  117. #endregion
  118. /// <summary>
  119. /// Checks whether the values of this instance is equal to the values of another instance.
  120. /// Only parameters used for coordinate system are used for comparison.
  121. /// Name, abbreviation, authority, alias and remarks are ignored in the comparison.
  122. /// </summary>
  123. /// <param name="obj"></param>
  124. /// <returns>True if equal</returns>
  125. public override bool EqualParams(object obj)
  126. {
  127. if (!(obj is SharpMap.CoordinateSystems.AngularUnit))
  128. return false;
  129. return (obj as AngularUnit).RadiansPerUnit == this.RadiansPerUnit;
  130. }
  131. }
  132. }