MultiPoint.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.Geometries
  21. {
  22. /// <summary>
  23. /// A MultiPoint is a 0 dimensional geometric collection. The elements of a MultiPoint are
  24. /// restricted to Points. The points are not connected or ordered.
  25. /// </summary>
  26. public class MultiPoint : GeometryCollection
  27. {
  28. private Collection<Point> _Points;
  29. /// <summary>
  30. /// Initializes a new MultiPoint collection
  31. /// </summary>
  32. public MultiPoint()
  33. {
  34. _Points = new Collection<Point>();
  35. }
  36. /// <summary>
  37. /// Gets the n'th point in the MultiPoint collection
  38. /// </summary>
  39. /// <param name="n">Index in collection</param>
  40. /// <returns>Point</returns>
  41. public new Point this[int n]
  42. {
  43. get { return _Points[n]; }
  44. }
  45. /// <summary>
  46. /// Gets or sets the MultiPoint collection
  47. /// </summary>
  48. public Collection<Point> Points
  49. {
  50. get { return _Points; }
  51. set { _Points = value; }
  52. }
  53. /// <summary>
  54. /// Returns the number of geometries in the collection.
  55. /// </summary>
  56. public override int NumGeometries
  57. {
  58. get { return _Points.Count; }
  59. }
  60. /// <summary>
  61. /// Returns an indexed geometry in the collection
  62. /// </summary>
  63. /// <param name="N">Geometry index</param>
  64. /// <returns>Geometry at index N</returns>
  65. public new Point Geometry(int N)
  66. {
  67. return _Points[N];
  68. }
  69. /// <summary>
  70. ///  The inherent dimension of this Geometry object, which must be less than or equal to the coordinate dimension.
  71. /// </summary>
  72. public override int Dimension
  73. {
  74. get { return 0; }
  75. }
  76. /// <summary>
  77. /// If true, then this Geometry represents the empty point set,