11using DotSpatial . Projections ;
22using ProjNet . CoordinateSystems ;
33using System ;
4- using System . Collections . Generic ;
54using System . Globalization ;
6- using AngularUnit = ProjNet . CoordinateSystems . AngularUnit ;
7- using DatumType = ProjNet . CoordinateSystems . DatumType ;
8- using LinearUnit = ProjNet . CoordinateSystems . LinearUnit ;
95
106namespace SharpMap . CoordinateSystems
117{
@@ -30,6 +26,7 @@ public ICompoundCoordinateSystem CreateCompoundCoordinateSystem(string name, ICo
3026 }
3127 */
3228
29+ /*
3330 /// <summary>
3431 /// Creates an <see cref="T:NetTopologySuite.CoordinateSystems.IEllipsoid" /> from radius values.
3532 /// </summary>
@@ -44,7 +41,9 @@ public Ellipsoid CreateEllipsoid(string name, double semiMajorAxis, double semiM
4441 {
4542 throw new NotSupportedException();
4643 }
44+ */
4745
46+ /*
4847 /// <summary>
4948 /// Creates a <see cref="T:NetTopologySuite.CoordinateSystems.IFittedCoordinateSystem" />.
5049 /// </summary>
@@ -60,12 +59,14 @@ public Ellipsoid CreateEllipsoid(string name, double semiMajorAxis, double semiM
6059 /// <param name="arAxes"></param>
6160 /// <returns>Fitted coordinate system</returns>
6261 /// <exception cref="NotSupportedException"></exception>
63- public new FittedCoordinateSystem CreateFittedCoordinateSystem ( string name , CoordinateSystem baseCoordinateSystem ,
62+ public FittedCoordinateSystem CreateFittedCoordinateSystem(string name, CoordinateSystem baseCoordinateSystem,
6463 string toBaseWkt, List<AxisInfo> arAxes)
6564 {
6665 throw new NotSupportedException();
6766 }
67+ */
6868
69+ /*
6970 /// <summary>
7071 /// Creates an <see cref="T:NetTopologySuite.CoordinateSystems.IEllipsoid" /> from an major radius, and inverse flattening.
7172 /// </summary>
@@ -76,21 +77,24 @@ public Ellipsoid CreateEllipsoid(string name, double semiMajorAxis, double semiM
7677 /// <param name="linearUnit">Linear unit</param>
7778 /// <returns>Ellipsoid</returns>
7879 /// <exception cref="NotSupportedException"></exception>
79- public new Ellipsoid CreateFlattenedSphere ( string name , double semiMajorAxis , double inverseFlattening , LinearUnit linearUnit )
80+ public Ellipsoid CreateFlattenedSphere(string name, double semiMajorAxis, double inverseFlattening, LinearUnit linearUnit)
8081 {
8182 throw new NotSupportedException();
8283 }
84+ */
8385
86+ /*
8487 /// <summary>
8588 /// Creates a coordinate system object from an XML string.
8689 /// </summary>
8790 /// <param name="xml">XML representation for the spatial reference</param>
8891 /// <returns>The resulting spatial reference object</returns>
8992 /// <exception cref="NotSupportedException"></exception>
90- public new CoordinateSystem CreateFromXml ( string xml )
93+ public CoordinateSystem CreateFromXml(string xml)
9194 {
9295 throw new NotSupportedException();
9396 }
97+ */
9498
9599 /// <summary>
96100 /// Creates a spatial reference object given its Well-known text representation.
@@ -139,6 +143,7 @@ public Ellipsoid CreateEllipsoid(string name, double semiMajorAxis, double semiM
139143 return new DotSpatialCoordinateSystem ( pi ) ;
140144 }
141145
146+ /*
142147 /// <summary>
143148 /// Creates a <see cref="T:NetTopologySuite.CoordinateSystems.IGeographicCoordinateSystem" />, which could be Lat/Lon or Lon/Lat.
144149 /// </summary>
@@ -150,12 +155,14 @@ public Ellipsoid CreateEllipsoid(string name, double semiMajorAxis, double semiM
150155 /// <param name="axis1">Second axis</param>
151156 /// <returns>Geographic coordinate system</returns>
152157 /// <exception cref="NotSupportedException"></exception>
153- public new GeographicCoordinateSystem CreateGeographicCoordinateSystem ( string name , AngularUnit angularUnit ,
158+ public GeographicCoordinateSystem CreateGeographicCoordinateSystem(string name, AngularUnit angularUnit,
154159 HorizontalDatum datum, PrimeMeridian primeMeridian, AxisInfo axis0, AxisInfo axis1)
155160 {
156161 throw new NotSupportedException();
157162 }
163+ */
158164
165+ /*
159166 /// <summary>
160167 /// Creates <see cref="T:NetTopologySuite.CoordinateSystems.IHorizontalDatum" /> from ellipsoid and Bursa-World parameters.
161168 /// </summary>
@@ -171,11 +178,12 @@ public Ellipsoid CreateEllipsoid(string name, double semiMajorAxis, double semiM
171178 /// <param name="toWgs84">Wgs84 conversion parameters</param>
172179 /// <returns>Horizontal datum</returns>
173180 /// <exception cref="NotSupportedException"></exception>
174- public new HorizontalDatum CreateHorizontalDatum ( string name , DatumType datumType , Ellipsoid ellipsoid ,
181+ public HorizontalDatum CreateHorizontalDatum(string name, DatumType datumType, Ellipsoid ellipsoid,
175182 Wgs84ConversionInfo toWgs84)
176183 {
177184 throw new NotSupportedException();
178185 }
186+ */
179187
180188 /*
181189 /// <summary>
@@ -213,6 +221,7 @@ public ILocalDatum CreateLocalDatum(string name, DatumType datumType)
213221 }
214222 */
215223
224+ /*
216225 /// <summary>
217226 /// Creates a <see cref="T:NetTopologySuite.CoordinateSystems.IPrimeMeridian" />, relative to Greenwich.
218227 /// </summary>
@@ -221,11 +230,13 @@ public ILocalDatum CreateLocalDatum(string name, DatumType datumType)
221230 /// <param name="longitude">Longitude</param>
222231 /// <returns>Prime meridian</returns>
223232 /// <exception cref="NotSupportedException"></exception>
224- public new PrimeMeridian CreatePrimeMeridian ( string name , AngularUnit angularUnit , double longitude )
233+ public PrimeMeridian CreatePrimeMeridian(string name, AngularUnit angularUnit, double longitude)
225234 {
226235 throw new NotSupportedException();
227236 }
237+ */
228238
239+ /*
229240 /// <summary>
230241 /// Creates a <see cref="T:NetTopologySuite.CoordinateSystems.IProjectedCoordinateSystem" /> using a projection object.
231242 /// </summary>
@@ -237,12 +248,14 @@ public ILocalDatum CreateLocalDatum(string name, DatumType datumType)
237248 /// <param name="axis1">Secondary axis</param>
238249 /// <returns>Projected coordinate system</returns>
239250 /// <exception cref="NotSupportedException"></exception>
240- public new ProjectedCoordinateSystem CreateProjectedCoordinateSystem ( string name , GeographicCoordinateSystem gcs ,
251+ public ProjectedCoordinateSystem CreateProjectedCoordinateSystem(string name, GeographicCoordinateSystem gcs,
241252 IProjection projection, LinearUnit linearUnit, AxisInfo axis0, AxisInfo axis1)
242253 {
243254 throw new NotSupportedException();
244255 }
256+ */
245257
258+ /*
246259 /// <summary>
247260 /// Creates a <see cref="T:NetTopologySuite.CoordinateSystems.IProjection" />.
248261 /// </summary>
@@ -251,10 +264,11 @@ public ILocalDatum CreateLocalDatum(string name, DatumType datumType)
251264 /// <param name="parameters">Projection parameters</param>
252265 /// <returns>Projection</returns>
253266 /// <exception cref="NotSupportedException"></exception>
254- public new IProjection CreateProjection ( string name , string wktProjectionClass , List < ProjectionParameter > parameters )
267+ public IProjection CreateProjection(string name, string wktProjectionClass, List<ProjectionParameter> parameters)
255268 {
256269 throw new NotSupportedException();
257270 }
271+ */
258272
259273 /*
260274 /// <summary>
0 commit comments