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

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.Geometries
  20. {
  21. /// <summary>
  22. /// A MultiSurface is a two-dimensional geometric collection whose elements are surfaces. The interiors of any
  23. /// two surfaces in a MultiSurface may not intersect. The boundaries of any two elements in a MultiSurface may
  24. /// intersect at most at a finite number of points.
  25. /// </summary>
  26. /// <remarks>
  27. /// MultiSurface is a non-instantiable class in this specification, it defines a set of methods for its subclasses and
  28. /// is included for reasons of extensibility. The instantiable subclass of MultiSurface is MultiPolygon,
  29. /// corresponding to a collection of Polygons.
  30. /// </remarks>
  31. public abstract class MultiSurface : GeometryCollection
  32. {
  33. /// <summary>
  34. /// The area of this Surface, as measured in the spatial reference system of this Surface.
  35. /// </summary>
  36. public abstract double Area { get; }
  37. /// <summary>
  38. /// The mathematical centroid for this Surface as a Point.
  39. /// The result is not guaranteed to be on this Surface.
  40. /// </summary>
  41. public abstract Point Centroid { get; }
  42. /// <summary>
  43. /// A point guaranteed to be on this Surface.
  44. /// </summary>
  45. public abstract Point PointOnSurface { get; }
  46. /// <summary>
  47. ///  The inherent dimension of this Geometry object, which must be less than or equal to the coordinate dimension.
  48. /// </summary>
  49. public override int Dimension
  50. {
  51. get { return 2; }
  52. }
  53. }
  54. }