Index: src/Common/GeoAPI/CoordinateSystems/IProjection.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/Common/GeoAPI/CoordinateSystems/IProjection.cs (.../IProjection.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/Common/GeoAPI/CoordinateSystems/IProjection.cs (.../IProjection.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -17,39 +17,39 @@ namespace GeoAPI.CoordinateSystems { - /// - /// The IProjection interface defines the standard information stored with projection - /// objects. A projection object implements a coordinate transformation from a geographic - /// coordinate system to a projected coordinate system, given the ellipsoid for the - /// geographic coordinate system. It is expected that each coordinate transformation of - /// interest, e.g., Transverse Mercator, Lambert, will be implemented as a COM class of - /// coType Projection, supporting the IProjection interface. - /// - public interface IProjection : IInfo - { - /// - /// Gets number of parameters of the projection. - /// - int NumParameters { get; } + /// + /// The IProjection interface defines the standard information stored with projection + /// objects. A projection object implements a coordinate transformation from a geographic + /// coordinate system to a projected coordinate system, given the ellipsoid for the + /// geographic coordinate system. It is expected that each coordinate transformation of + /// interest, e.g., Transverse Mercator, Lambert, will be implemented as a COM class of + /// coType Projection, supporting the IProjection interface. + /// + public interface IProjection : IInfo + { + /// + /// Gets number of parameters of the projection. + /// + int NumParameters { get; } - /// - /// Gets the projection classification name (e.g. 'Transverse_Mercator'). - /// - string ClassName { get; } + /// + /// Gets the projection classification name (e.g. 'Transverse_Mercator'). + /// + string ClassName { get; } - /// - /// Gets an indexed parameter of the projection. - /// - /// Index of parameter - /// n'th parameter - ProjectionParameter GetParameter(int n); + /// + /// Gets an indexed parameter of the projection. + /// + /// Index of parameter + /// n'th parameter + ProjectionParameter GetParameter(int n); - /// - /// Gets an named parameter of the projection. - /// - /// The parameter name is case insensitive - /// Name of parameter - /// parameter or null if not found - ProjectionParameter GetParameter(string name); - } -} + /// + /// Gets an named parameter of the projection. + /// + /// The parameter name is case insensitive + /// Name of parameter + /// parameter or null if not found + ProjectionParameter GetParameter(string name); + } +} \ No newline at end of file