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

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. /// A set of quantities from which other quantities are calculated.
  23. /// </summary>
  24. /// <remarks>
  25. /// For the OGC abstract model, it can be defined as a set of real points on the earth 
  26. /// that have coordinates. EG. A datum can be thought of as a set of parameters 
  27. /// defining completely the origin and orientation of a coordinate system with respect 
  28. /// to the earth. A textual description and/or a set of parameters describing the 
  29. /// relationship of a coordinate system to some predefined physical locations (such 
  30. /// as center of mass) and physical directions (such as axis of spin). The definition 
  31. /// of the datum may also include the temporal behavior (such as the rate of change of
  32. /// the orientation of the coordinate axes).
  33. /// </remarks>
  34. public abstract class Datum : Info, IDatum
  35. {
  36. /// <summary>
  37. /// Initializes a new instance of a Datum object
  38. /// </summary>
  39. /// <param name="type">Datum type</param>
  40. /// <param name="name">Name</param>
  41. /// <param name="authority">Authority name</param>
  42. /// <param name="code">Authority-specific identification code.</param>
  43. /// <param name="alias">Alias</param>
  44. /// <param name="abbreviation">Abbreviation</param>
  45. /// <param name="remarks">Provider-supplied remarks</param>
  46. internal Datum(DatumType type,
  47. string name, string authority, long code, string alias,
  48. string remarks, string abbreviation)
  49. : base(name, authority, code, alias, abbreviation, remarks)
  50. {
  51. _DatumType = DatumType;
  52. }
  53. #region IDatum Members
  54. private DatumType _DatumType;
  55. /// <summary>
  56. /// Gets or sets the type of the datum as an enumerated code.
  57. /// </summary>
  58. public DatumType DatumType
  59. {
  60. get { return _DatumType; }
  61. set { _DatumType = value; }
  62. }
  63. #endregion
  64. /// <summary>
  65. /// Checks whether the values of this instance is equal to the values of another instance.
  66. /// Only parameters used for coordinate system are used for comparison.
  67. /// Name, abbreviation, authority, alias and remarks are ignored in the comparison.
  68. /// </summary>
  69. /// <param name="obj"></param>
  70. /// <returns>True if equal</returns>
  71. public override bool EqualParams(object obj)
  72. {
  73. if (!(obj is SharpMap.CoordinateSystems.Ellipsoid))
  74. return false;
  75. return (obj as Datum).DatumType == this.DatumType;
  76. }
  77. }
  78. }