ICoordinateSystemFactory.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.CoordinateSystems
  21. {
  22. /// <summary>
  23. /// Builds up complex objects from simpler objects or values.
  24. /// </summary>
  25. /// <remarks>
  26. /// <para>ICoordinateSystemFactory allows applications to make coordinate systems that 
  27. /// cannot be created by a <see cref="ICoordinateSystemAuthorityFactory"/>. This factory is very 
  28. /// flexible, whereas the authority factory is easier to use.</para>
  29. /// <para>So <see cref="ICoordinateSystemAuthorityFactory"/>can be used to make 'standard' coordinate 
  30. /// systems, and <see cref="CoordinateSystemFactory"/> can be used to make 'special' 
  31. /// coordinate systems.</para>
  32. /// <para>For example, the EPSG authority has codes for USA state plane coordinate systems 
  33. /// using the NAD83 datum, but these coordinate systems always use meters. EPSG does not 
  34. /// have codes for NAD83 state plane coordinate systems that use feet units. This factory
  35. /// lets an application create such a hybrid coordinate system.</para>
  36. /// </remarks>
  37. public interface ICoordinateSystemFactory
  38. {
  39. /// <summary>
  40. /// Creates a <see cref="ICompoundCoordinateSystem"/>.
  41. /// </summary>
  42. /// <param name="name">Name of compound coordinate system.</param>
  43. /// <param name="head">Head coordinate system</param>
  44. /// <param name="tail">Tail coordinate system</param>
  45. /// <returns>Compound coordinate system</returns>
  46. ICompoundCoordinateSystem CreateCompoundCoordinateSystem(string name, ICoordinateSystem head, ICoordinateSystem tail);
  47. /// <summary>
  48. /// Creates an <see cref="IEllipsoid"/> from radius values.
  49. /// </summary>
  50. /// <seealso cref="CreateFlattenedSphere"/>
  51. /// <param name="name">Name of ellipsoid</param>
  52. /// <param name="semiMajorAxis"></param>
  53. /// <param name="semiMinorAxis"></param>
  54. /// <param name="linearUnit"></param>
  55. /// <returns>Ellipsoid</returns>
  56. IEllipsoid CreateEllipsoid(string name, double semiMajorAxis, double semiMinorAxis, ILinearUnit linearUnit);
  57. /// <summary>
  58. /// Creates a <see cref="IFittedCoordinateSystem"/>.
  59. /// </summary>
  60. /// <remarks>The units of the axes in the fitted coordinate system will be 
  61. /// inferred from the units of the base coordinate system. If the affine map
  62. /// performs a rotation, then any mixed axes must have identical units. For
  63. /// example, a (lat_deg,lon_deg,height_feet) system can be rotated in the 
  64. /// (lat,lon) plane, since both affected axes are in degrees. But you 
  65. /// should not rotate this coordinate system in any other plane.</remarks>
  66. /// <param name="name">Name of coordinate system</param>
  67. /// <param name="baseCoordinateSystem">Base coordinate system</param>
  68. /// <param name="toBaseWkt"></param>
  69. /// <param name="arAxes"></param>
  70. /// <returns>Fitted coordinate system</returns>
  71. IFittedCoordinateSystem CreateFittedCoordinateSystem(string name, ICoordinateSystem baseCoordinateSystem, string toBaseWkt, Collection<AxisInfo> arAxes);
  72. /// <summary>
  73. /// Creates an <see cref="IEllipsoid"/> from an major radius, and inverse flattening.
  74. /// </summary>
  75. /// <seealso cref="CreateEllipsoid"/>
  76. /// <param name="name">Name of ellipsoid</param>
  77. /// <param name="semiMajorAxis">Semi major-axis</param>
  78. /// <param name="inverseFlattening">Inverse flattening</param>
  79. /// <param name="linearUnit">Linear unit</param>
  80. /// <returns>Ellipsoid</returns>
  81. IEllipsoid CreateFlattenedSphere(string name, double semiMajorAxis, double inverseFlattening, ILinearUnit linearUnit);
  82. /// <summary>
  83. /// Creates a coordinate system object from an XML string.
  84. /// </summary>
  85. /// <param name="xml">XML representation for the spatial reference</param>
  86. /// <returns>The resulting spatial reference object</returns>
  87. ICoordinateSystem CreateFromXml(string xml);
  88. /// <summary>
  89. /// Creates a spatial reference object given its Well-known text representation.
  90. /// The output object may be either a <see cref="IGeographicCoordinateSystem"/> or
  91. /// a <see cref="IProjectedCoordinateSystem"/>.
  92. /// </summary>
  93. /// <param name="WKT">The Well-known text representation for the spatial reference</param>
  94. /// <returns>The resulting spatial reference object</returns>
  95. ICoordinateSystem CreateFromWkt(string WKT);
  96. /// <summary>
  97. /// Creates a <see cref="IGeographicCoordinateSystem"/>, which could be Lat/Lon or Lon/Lat.
  98. /// </summary>
  99. /// <param name="name">Name of geographical coordinate system</param>
  100. /// <param name="angularUnit">Angular units</param>
  101. /// <param name="datum">Horizontal datum</param>
  102. /// <param name="primeMeridian">Prime meridian</param>
  103. /// <param name="axis0">First axis</param>
  104. /// <param name="axis1">Second axis</param>
  105. /// <returns>Geographic coordinate system</returns>
  106. IGeographicCoordinateSystem CreateGeographicCoordinateSystem(string name, IAngularUnit angularUnit, IHorizontalDatum datum, IPrimeMeridian primeMeridian, AxisInfo axis0, AxisInfo axis1);
  107. /// <summary>
  108. /// Creates <see cref="IHorizontalDatum"/> from ellipsoid and Bursa-World parameters.
  109. /// </summary>
  110. /// <remarks>
  111. /// Since this method contains a set of Bursa-Wolf parameters, the created 
  112. /// datum will always have a relationship to WGS84. If you wish to create a
  113. /// horizontal datum that has no relationship with WGS84, then you can 
  114. /// either specify a <see cref="DatumType">horizontalDatumType</see> of <see cref="DatumType.HD_Other"/>, or create it via WKT.
  115. /// </remarks>
  116. /// <param name="name">Name of ellipsoid</param>
  117. /// <param name="datumType">Type of datum</param>
  118. /// <param name="ellipsoid">Ellipsoid</param>
  119. /// <param name="toWgs84">Wgs84 conversion parameters</param>
  120. /// <returns>Horizontal datum</returns>
  121. IHorizontalDatum CreateHorizontalDatum(string name, DatumType datumType, IEllipsoid ellipsoid, Wgs84ConversionInfo toWgs84);
  122. /// <summary>
  123. /// Creates a <see cref="ILocalCoordinateSystem">local coordinate system</see>.
  124. /// </summary>
  125. /// <remarks>
  126. ///  The dimension of the local coordinate system is determined by the size of 
  127. /// the axis array. All the axes will have the same units. If you want to make 
  128. /// a coordinate system with mixed units, then you can make a compound 
  129. /// coordinate system from different local coordinate systems.
  130. /// </remarks>
  131. /// <param name="name">Name of local coordinate system</param>
  132. /// <param name="datum">Local datum</param>
  133. /// <param name="unit">Units</param>
  134. /// <param name="axes">Axis info</param>
  135. /// <returns>Local coordinate system</returns>
  136. ILocalCoordinateSystem CreateLocalCoordinateSystem(string name, ILocalDatum datum, IUnit unit, Collection<AxisInfo> axes);
  137. /// <summary>
  138. /// Creates a <see cref="ILocalDatum"/>.
  139. /// </summary>
  140. /// <param name="name">Name of datum</param>
  141. /// <param name="datumType">Datum type</param>
  142. /// <returns></returns>
  143. ILocalDatum CreateLocalDatum(string name, DatumType datumType);
  144. /// <summary>
  145. /// Creates a <see cref="IPrimeMeridian"/>, relative to Greenwich.
  146. /// </summary>
  147. /// <param name="name">Name of prime meridian</param>
  148. /// <param name="angularUnit">Angular unit</param>
  149. /// <param name="longitude">Longitude</param>
  150. /// <returns>Prime meridian</returns>
  151. IPrimeMeridian CreatePrimeMeridian(string name, IAngularUnit angularUnit, double longitude);
  152. /// <summary>
  153. /// Creates a <see cref="IProjectedCoordinateSystem"/> using a projection object.
  154. /// </summary>
  155. /// <param name="name">Name of projected coordinate system</param>
  156. /// <param name="gcs">Geographic coordinate system</param>
  157. /// <param name="projection">Projection</param>
  158. /// <param name="linearUnit">Linear unit</param>
  159. /// <param name="axis0">Primary axis</param>
  160. /// <param name="axis1">Secondary axis</param>
  161. /// <returns>Projected coordinate system</returns>
  162. IProjectedCoordinateSystem CreateProjectedCoordinateSystem(string name, IGeographicCoordinateSystem gcs, IProjection projection, ILinearUnit linearUnit, AxisInfo axis0, AxisInfo axis1);
  163. /// <summary>
  164. /// Creates a <see cref="IProjection"/>.
  165. /// </summary>
  166. /// <param name="name">Name of projection</param>
  167. /// <param name="wktProjectionClass">Projection class</param>
  168. /// <param name="Parameters">Projection parameters</param>
  169. /// <returns>Projection</returns>
  170. IProjection CreateProjection(string name, string wktProjectionClass, Collection<ProjectionParameter> Parameters);
  171. /// <summary>
  172. /// Creates a <see cref="IVerticalCoordinateSystem"/> from a <see cref="IVerticalDatum">datum</see> and <see cref="ILinearUnit">linear units</see>.
  173. /// </summary>
  174. /// <param name="name">Name of vertical coordinate system</param>
  175. /// <param name="datum">Vertical datum</param>
  176. /// <param name="verticalUnit">Unit</param>
  177. /// <param name="axis">Axis info</param>
  178. /// <returns>Vertical coordinate system</returns>
  179. IVerticalCoordinateSystem CreateVerticalCoordinateSystem(string name, IVerticalDatum datum, ILinearUnit verticalUnit, AxisInfo axis);
  180. /// <summary>
  181. /// Creates a <see cref="IVerticalDatum"/> from an enumerated type value.
  182. /// </summary>
  183. /// <param name="name">Name of datum</param>
  184. /// <param name="datumType">Type of datum</param>
  185. /// <returns>Vertical datum</returns>
  186. IVerticalDatum CreateVerticalDatum(string name, DatumType datumType);
  187. }
  188. }