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

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.Transformations
  21. {
  22. /// <summary>
  23. /// Transforms muti-dimensional coordinate points.
  24. /// </summary>
  25. /// <remarks>
  26. /// If a client application wishes to query the source and target coordinate 
  27. /// systems of a transformation, then it should keep hold of the 
  28. /// <see cref="ICoordinateTransformation"/> interface, and use the contained 
  29. /// math transform object whenever it wishes to perform a transform.
  30. /// </remarks>
  31. public interface IMathTransform
  32. {
  33. /// <summary>
  34. /// Gets the dimension of input points.
  35. /// </summary>
  36. int DimSource { get; }
  37. /// <summary>
  38. /// Gets the dimension of output points.
  39. /// </summary>
  40. int DimTarget { get; }
  41. /// <summary>
  42. /// Tests whether this transform does not move any points.
  43. /// </summary>
  44. /// <returns></returns>
  45. bool Identity();
  46. /// <summary>
  47. /// Gets a Well-Known text representation of this object.
  48. /// </summary>
  49. string WKT { get; }
  50. /// <summary>
  51. /// Gets an XML representation of this object.
  52. /// </summary>
  53. string XML { get; }
  54. /// <summary>
  55. /// Gets the derivative of this transform at a point. If the transform does 
  56. /// not have a well-defined derivative at the point, then this function should 
  57. /// fail in the usual way for the DCP. The derivative is the matrix of the 
  58. /// non-translating portion of the approximate affine map at the point. The
  59. /// matrix will have dimensions corresponding to the source and target 
  60. /// coordinate systems. If the input dimension is M, and the output dimension 
  61. /// is N, then the matrix will have size [M][N]. The elements of the matrix 
  62. /// {elt[n][m] : n=0..(N-1)} form a vector in the output space which is 
  63. /// parallel to the displacement caused by a small change in the m'th ordinate 
  64. /// in the input space.
  65. /// </summary>
  66. /// <param name="point"></param>
  67. /// <returns></returns>
  68. double[,] Derivative(SharpMap.Geometries.Point point);
  69. /// <summary>
  70. /// Gets transformed convex hull.
  71. /// </summary>
  72. /// <remarks>
  73. /// <para>The supplied ordinates are interpreted as a sequence of points, which generates a convex
  74. /// hull in the source space. The returned sequence of ordinates represents a convex hull in the 
  75. /// output space. The number of output points will often be different from the number of input 
  76. /// points. Each of the input points should be inside the valid domain (this can be checked by 
  77. /// testing the points' domain flags individually). However, the convex hull of the input points
  78. /// may go outside the valid domain. The returned convex hull should contain the transformed image
  79. /// of the intersection of the source convex hull and the source domain.</para>
  80. /// <para>A convex hull is a shape in a coordinate system, where if two positions A and B are 
  81. /// inside the shape, then all positions in the straight line between A and B are also inside 
  82. /// the shape. So in 3D a cube and a sphere are both convex hulls. Other less obvious examples 
  83. /// of convex hulls are straight lines, and single points. (A single point is a convex hull, 
  84. /// because the positions A and B must both be the same - i.e. the point itself. So the straight
  85. /// line between A and B has zero length.)</para>
  86. /// <para>Some examples of shapes that are NOT convex hulls are donuts, and horseshoes.</para>
  87. /// </remarks>
  88. /// <param name="points"></param>
  89. /// <returns></returns>
  90. Collection<double> GetCodomainConvexHull(Collection<double> points);
  91. /// <summary>
  92. /// Gets flags classifying domain points within a convex hull.
  93. /// </summary>
  94. /// <remarks>
  95. ///  The supplied ordinates are interpreted as a sequence of points, which 
  96. /// generates a convex hull in the source space. Conceptually, each of the 
  97. /// (usually infinite) points inside the convex hull is then tested against
  98. /// the source domain. The flags of all these tests are then combined. In 
  99. /// practice, implementations of different transforms will use different 
  100. /// short-cuts to avoid doing an infinite number of tests.
  101. /// </remarks>
  102. /// <param name="points"></param>
  103. /// <returns></returns>
  104. DomainFlags GetDomainFlags(Collection<double> points);
  105. /// <summary>
  106. /// Creates the inverse transform of this object.
  107. /// </summary>
  108. /// <remarks>This method may fail if the transform is not one to one. However, all cartographic projections should succeed.</remarks>
  109. /// <returns></returns>
  110. IMathTransform Inverse();
  111. /// <summary>
  112. /// Transforms a coordinate point. The passed parameter point should not be modified.
  113. /// </summary>
  114. /// <param name="point"></param>
  115. /// <returns></returns>
  116. SharpMap.Geometries.Point Transform(SharpMap.Geometries.Point point);
  117. /// <summary>
  118. /// Transforms a list of coordinate point ordinal values.
  119. /// </summary>
  120. /// <remarks>
  121. /// This method is provided for efficiently transforming many points. The supplied array 
  122. /// of ordinal values will contain packed ordinal values. For example, if the source 
  123. /// dimension is 3, then the ordinals will be packed in this order (x0,y0,z0,x1,y1,z1 ...).
  124. /// The size of the passed array must be an integer multiple of DimSource. The returned 
  125. /// ordinal values are packed in a similar way. In some DCPs. the ordinals may be 
  126. /// transformed in-place, and the returned array may be the same as the passed array.
  127. /// So any client code should not attempt to reuse the passed ordinal values (although
  128. /// they can certainly reuse the passed array). If there is any problem then the server
  129. /// implementation will throw an exception. If this happens then the client should not
  130. /// make any assumptions about the state of the ordinal values.
  131. /// </remarks>
  132. /// <param name="points"></param>
  133. /// <returns></returns>
  134. Collection<SharpMap.Geometries.Point> TransformList(Collection<SharpMap.Geometries.Point> points);
  135. /// <summary>
  136. /// Reverses the transformation
  137. /// </summary>
  138. void Invert();
  139. }
  140. }