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

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.Geometries
  21. {
  22. /// <summary>
  23. /// A GeometryCollection is a geometry that is a collection of 1 or more geometries.
  24. /// </summary>
  25. /// <remarks>
  26. /// All the elements in a GeometryCollection must be in the same Spatial Reference. This is also the Spatial
  27. /// Reference for the GeometryCollection.<br/>
  28. /// GeometryCollection places no other constraints on its elements. Subclasses of GeometryCollection may
  29. /// restrict membership based on dimension and may also place other constraints on the degree of spatial overlap
  30. /// between elements.
  31. /// </remarks>
  32. public class GeometryCollection : Geometry, IGeometryCollection, IEnumerable<Geometry>
  33. {
  34. /// <summary>
  35. /// Initializes a new GeometryCollection
  36. /// </summary>
  37. public GeometryCollection()
  38. {
  39. _Geometries = new Collection<Geometry>();
  40. }
  41. /// <summary>
  42. /// Gets the number of geometries in the collection.
  43. /// </summary>
  44. public virtual int NumGeometries { get { return _Geometries.Count; } }
  45. /// <summary>
  46. /// Returns an indexed geometry in the collection
  47. /// </summary>
  48. /// <param name="N">Geometry index</param>
  49. /// <returns>Geometry at index N</returns>
  50. public virtual Geometry Geometry(int N)
  51. {
  52. return _Geometries[N];
  53. }
  54. private Collection<Geometry> _Geometries;
  55. /// <summary>
  56. /// Returns an indexed geometry in the collection
  57. /// </summary>
  58. /// <param name="index">Geometry index</param>
  59. /// <returns>Geometry</returns>
  60. public virtual Geometry this[int index]
  61. {
  62. get { return _Geometries[index]; }
  63. }
  64. /// <summary>
  65. /// Returns empty of all the geometries are empty or the collection is empty
  66. /// </summary>
  67. /// <returns>true of collection is empty</returns>
  68. public override bool IsEmpty()
  69. {
  70. if (_Geometries == null)
  71. return true;
  72. for (int i = 0; i < _Geometries.Count;i++ )
  73. if (!_Geometries[i].IsEmpty())
  74. return false;
  75. return true;
  76. }
  77. /// <summary>
  78. /// Determines whether this GeometryCollection is spatially equal to the GeometryCollection 'g'
  79. /// </summary>
  80. /// <param name="g"></param>
  81. /// <returns>True if the GeometryCollections are equals</returns>
  82. public bool Equals(GeometryCollection g)
  83. {
  84. if (g == null)
  85. return false;
  86. if (g.Collection.Count != this.Collection.Count)
  87. return false;
  88. for(int i=0;i<g.Collection.Count;i++)
  89. if (!g.Collection[i].Equals((Geometry)this.Collection[i]))
  90. return false;
  91. return true;
  92. }
  93. /// <summary>
  94. /// Serves as a hash function for a particular type. <see cref="GetHashCode"/> is suitable for use 
  95. /// in hashing algorithms and data structures like a hash table.
  96. /// </summary>
  97. /// <returns>A hash code for the current <see cref="GetHashCode"/>.</returns>
  98. public override int GetHashCode()
  99. {
  100. int hash = 0;
  101. for (int i = 0; i < this._Geometries.Count; i++)
  102. hash = hash ^ this._Geometries[i].GetHashCode();
  103. return hash;
  104. }
  105. /// <summary>
  106. /// Gets or sets the GeometryCollection
  107. /// </summary>
  108. public virtual Collection<Geometry> Collection 
  109. {
  110. get { return _Geometries; }
  111. set { _Geometries = value; }
  112. }
  113. /// <summary>
  114. ///  The inherent dimension of this Geometry object, which must be less than or equal
  115. ///  to the coordinate dimension.
  116. /// </summary>
  117. /// <remarks>This specification is restricted to geometries in two-dimensional coordinate space.</remarks>
  118. public override int Dimension
  119. {
  120. get {
  121. int dim = 0;
  122. for (int i = 0; i < this.Collection.Count;i++ )
  123. dim = (dim < this.Collection[i].Dimension ? this.Collection[i].Dimension : dim);
  124. return dim;
  125. }
  126. /// <summary>
  127. /// The minimum bounding box for this Geometry, returned as a BoundingBox.
  128. /// </summary>
  129. /// <returns></returns>
  130. public override BoundingBox GetBoundingBox()
  131. {
  132. if (this.Collection.Count == 0)
  133. return null;
  134. BoundingBox b = this[0].GetBoundingBox();
  135. for (int i = 0; i < this.Collection.Count;i++ )
  136. b = b.Join(this.Collection[i].GetBoundingBox());
  137. return b;
  138. }
  139. /// <summary>
  140. ///  Returns 'true' if this Geometry has no anomalous geometric points, such as self
  141. /// intersection or self tangency. The description of each instantiable geometric class will include the specific
  142. /// conditions that cause an instance of that class to be classified as not simple.
  143. /// </summary>
  144. /// <returns>true if the geometry is simple</returns>
  145. public override bool IsSimple()
  146. {
  147. throw new NotImplementedException();
  148. }
  149. /// <summary>
  150. /// Returns the closure of the combinatorial boundary of this Geometry. The
  151. /// combinatorial boundary is defined as described in section 3.12.3.2 of [1]. Because the result of this function
  152. /// is a closure, and hence topologically closed, the resulting boundary can be represented using
  153. /// representational geometry primitives
  154. /// </summary>
  155. /// <returns>Closure of the combinatorial boundary of this Geometry</returns>
  156. public override Geometry Boundary()
  157. {
  158. throw new NotImplementedException();
  159. }
  160. /// <summary>
  161. /// Returns the shortest distance between any two points in the two geometries
  162. /// as calculated in the spatial reference system of this Geometry.
  163. /// </summary>
  164. /// <param name="geom">Geometry to calculate distance to</param>
  165. /// <returns>Shortest distance between any two points in the two geometries</returns>
  166. public override double Distance(Geometry geom)
  167. {
  168. throw new NotImplementedException();
  169. }
  170. /// <summary>
  171. /// Returns a geometry that represents all points whose distance from this Geometry
  172. /// is less than or equal to distance. Calculations are in the Spatial Reference
  173. /// System of this Geometry.
  174. /// </summary>
  175. /// <param name="d">Buffer distance</param>
  176. /// <returns>Buffer around geometry</returns>
  177. public override Geometry Buffer(double d)
  178. {
  179. throw new NotImplementedException();
  180. }
  181. /// <summary>
  182. /// Geometry桼eturns a geometry that represents the convex hull of this Geometry.
  183. /// </summary>
  184. /// <returns>The convex hull</returns>
  185. public override Geometry ConvexHull()
  186. {
  187. throw new NotImplementedException();
  188. }
  189. /// <summary>
  190. /// Returns a geometry that represents the point set intersection of this Geometry
  191. /// with anotherGeometry.
  192. /// </summary>
  193. /// <param name="geom">Geometry to intersect with</param>
  194. /// <returns>Returns a geometry that represents the point set intersection of this Geometry with anotherGeometry.</returns>
  195. public override Geometry Intersection(Geometry geom)
  196. {
  197. throw new NotImplementedException();
  198. }
  199. /// <summary>
  200. /// Returns a geometry that represents the point set union of this Geometry with anotherGeometry.
  201. /// </summary>
  202. /// <param name="geom">Geometry to union with</param>
  203. /// <returns>Unioned geometry</returns>
  204. public override Geometry Union(Geometry geom)
  205. {
  206. throw new NotImplementedException();
  207. }
  208. /// <summary>
  209. /// Returns a geometry that represents the point set difference of this Geometry with anotherGeometry.
  210. /// </summary>
  211. /// <param name="geom">Geometry to compare to</param>
  212. /// <returns>Geometry</returns>
  213. public override Geometry Difference(Geometry geom)
  214. {
  215. throw new NotImplementedException();
  216. }
  217. /// <summary>
  218. /// Returns a geometry that represents the point set symmetric difference of this Geometry with anotherGeometry.
  219. /// </summary>
  220. /// <param name="geom">Geometry to compare to</param>
  221. /// <returns>Geometry</returns>
  222. public override Geometry SymDifference(Geometry geom)
  223. {
  224. throw new NotImplementedException();
  225. }
  226. #region ICloneable Members
  227. /// <summary>
  228. /// Return a copy of this geometry
  229. /// </summary>
  230. /// <returns>Copy of Geometry</returns>
  231. public new GeometryCollection Clone()
  232. {
  233. GeometryCollection geoms = new GeometryCollection();
  234. for (int i = 0; i < _Geometries.Count;i++)
  235. geoms.Collection.Add((Geometry)_Geometries[i].Clone());
  236. return geoms;
  237. }
  238. #endregion
  239. #region IEnumerable<Geometry> Members
  240. /// <summary>
  241. /// Gets an enumerator for enumerating the geometries in the GeometryCollection
  242. /// </summary>
  243. /// <returns></returns>
  244. public virtual IEnumerator<Geometry> GetEnumerator()
  245. {
  246. foreach (Geometry g in this.Collection)
  247. yield return g;
  248. }
  249. #endregion
  250. #region IEnumerable Members
  251. /// <summary>
  252. /// Gets an enumerator for enumerating the geometries in the GeometryCollection
  253. /// </summary>
  254. System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
  255. {
  256. foreach (Geometry g in this.Collection)
  257. yield return g;
  258. }
  259. #endregion
  260. }
  261. }