GeographicTransform.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.Collections.ObjectModel;
  19. using System.Text;
  20. namespace SharpMap.CoordinateSystems
  21. {
  22. /// <summary>
  23. /// The GeographicTransform class is implemented on geographic transformation objects and
  24. /// implements datum transformations between geographic coordinate systems.
  25. /// </summary>
  26. public class GeographicTransform : Info, IGeographicTransform
  27. {
  28. internal GeographicTransform(
  29. string name, string authority, long code, string alias, string remarks, string abbreviation,
  30. IGeographicCoordinateSystem sourceGCS, IGeographicCoordinateSystem targetGCS)
  31. : base(name, authority, code, alias, abbreviation, remarks)
  32. {
  33. _SourceGCS = sourceGCS;
  34. _TargetGCS = targetGCS;
  35. }
  36. #region IGeographicTransform Members
  37. private IGeographicCoordinateSystem _SourceGCS;
  38. /// <summary>
  39. /// Gets or sets the source geographic coordinate system for the transformation.
  40. /// </summary>
  41. public IGeographicCoordinateSystem SourceGCS
  42. {
  43. get { return _SourceGCS; }
  44. set { _SourceGCS = value; }
  45. }
  46. private IGeographicCoordinateSystem _TargetGCS;
  47. /// <summary>
  48. /// Gets or sets the target geographic coordinate system for the transformation.
  49. /// </summary>
  50. public IGeographicCoordinateSystem TargetGCS
  51. {
  52. get { return _TargetGCS; }
  53. set { _TargetGCS = value; }
  54. }
  55. /// <summary>
  56. /// Returns an accessor interface to the parameters for this geographic transformation.
  57. /// </summary>
  58. public IParameterInfo ParameterInfo
  59. {
  60. get { throw new NotImplementedException(); }
  61. }
  62. /// <summary>
  63. /// Transforms an array of points from the source geographic coordinate
  64. /// system to the target geographic coordinate system.
  65. /// </summary>
  66. /// <param name="points">On input points in the source geographic coordinate system</param>
  67. /// <returns>Output points in the target geographic coordinate system</returns>
  68. public Collection<SharpMap.Geometries.Point> Forward(Collection<SharpMap.Geometries.Point> points)
  69. {
  70. throw new NotImplementedException();
  71. /*
  72. List<SharpMap.Geometries.Point> trans = new List<SharpMap.Geometries.Point>(points.Count);
  73. foreach (SharpMap.Geometries.Point p in points)
  74. {
  75. }
  76. return trans;
  77. */
  78. }
  79. /// <summary>
  80. /// Transforms an array of points from the target geographic coordinate
  81. /// system to the source geographic coordinate system.
  82. /// </summary>
  83. /// <param name="points">Input points in the target geographic coordinate system,</param>
  84. /// <returns>Output points in the source geographic coordinate system</returns>
  85. public Collection<SharpMap.Geometries.Point> Inverse(Collection<SharpMap.Geometries.Point> points)
  86. {
  87. throw new NotImplementedException();
  88. }
  89. /// <summary>
  90. /// Returns the Well-known text for this object
  91. /// as defined in the simple features specification.
  92. /// </summary>
  93. public override string WKT
  94. {
  95. get
  96. {
  97. throw new NotImplementedException();
  98. }
  99. }
  100. /// <summary>
  101. /// Gets an XML representation of this object [NOT IMPLEMENTED].
  102. /// </summary>
  103. public override string XML
  104. {
  105. get
  106. {
  107. throw new NotImplementedException();
  108. }
  109. }
  110. /// <summary>
  111. /// Checks whether the values of this instance is equal to the values of another instance.
  112. /// Only parameters used for coordinate system are used for comparison.
  113. /// Name, abbreviation, authority, alias and remarks are ignored in the comparison.
  114. /// </summary>
  115. /// <param name="obj"></param>
  116. /// <returns>True if equal</returns>
  117. public override bool EqualParams(object obj)
  118. {
  119. if (!(obj is GeographicTransform))
  120. return false;
  121. GeographicTransform gt = obj as GeographicTransform;
  122. return gt.SourceGCS.EqualParams(this.SourceGCS) && gt.TargetGCS.EqualParams(this.TargetGCS);
  123. }
  124. #endregion
  125. }
  126. }