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

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. /// Class for defining units
  23. /// </summary>
  24.     public class Unit : Info, IUnit
  25.     {
  26. /// <summary>
  27. /// Initializes a new unit
  28. /// </summary>
  29. /// <param name="conversionFactor">Conversion factor to base unit</param>
  30. /// <param name="name">Name of unit</param>
  31. /// <param name="authority">Authority name</param>
  32. /// <param name="authorityCode">Authority-specific identification code.</param>
  33. /// <param name="alias">Alias</param>
  34. /// <param name="abbreviation">Abbreviation</param>
  35. /// <param name="remarks">Provider-supplied remarks</param>
  36. internal Unit(double conversionFactor, string name, string authority, long authorityCode, string alias, string abbreviation, string remarks)
  37. :
  38. base(name, authority, authorityCode, alias, abbreviation, remarks)
  39. {
  40. _ConversionFactor = conversionFactor;
  41. }
  42. /// <summary>
  43. /// Initializes a new unit
  44. /// </summary>
  45. /// <param name="name">Name of unit</param>
  46. /// <param name="conversionFactor">Conversion factor to base unit</param>
  47. internal Unit(string name, double conversionFactor)
  48. : this(conversionFactor, name, String.Empty, -1, String.Empty, String.Empty, String.Empty)
  49. {
  50. }
  51. private double _ConversionFactor;
  52. /// <summary>
  53. /// Gets or sets the number of units per base-unit.
  54. /// </summary>
  55. public double ConversionFactor
  56. {
  57. get { return _ConversionFactor; }
  58. set { _ConversionFactor = value; }
  59. }
  60. /// <summary>
  61. /// Returns the Well-known text for this object
  62. /// as defined in the simple features specification.
  63. /// </summary>
  64. public override string WKT
  65. {
  66. get
  67. {
  68. StringBuilder sb = new StringBuilder();
  69. sb.AppendFormat(SharpMap.Map.numberFormat_EnUS, "UNIT["{0}", {1}", Name, _ConversionFactor);
  70. if (!String.IsNullOrEmpty(Authority) && AuthorityCode > 0)
  71. sb.AppendFormat(", AUTHORITY["{0}", "{1}"]", Authority, AuthorityCode);
  72. sb.Append("]");
  73. return sb.ToString();
  74. }
  75. }
  76. /// <summary>
  77. /// Gets an XML representation of this object [NOT IMPLEMENTED].
  78. /// </summary>
  79. public override string XML
  80. {
  81. get
  82. {
  83. throw new NotImplementedException();
  84. }
  85. }
  86. /// <summary>
  87. /// Checks whether the values of this instance is equal to the values of another instance.
  88. /// Only parameters used for coordinate system are used for comparison.
  89. /// Name, abbreviation, authority, alias and remarks are ignored in the comparison.
  90. /// </summary>
  91. /// <param name="obj"></param>
  92. /// <returns>True if equal</returns>
  93. public override bool EqualParams(object obj)
  94. {
  95. if (!(obj is SharpMap.CoordinateSystems.Unit))
  96. return false;
  97. return (obj as Unit).ConversionFactor == this.ConversionFactor;
  98. }
  99.     }
  100. }