Index: src/Common/GeoAPI/CoordinateSystems/AxisOrientationEnum.cs
===================================================================
diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a
--- src/Common/GeoAPI/CoordinateSystems/AxisOrientationEnum.cs (.../AxisOrientationEnum.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9)
+++ src/Common/GeoAPI/CoordinateSystems/AxisOrientationEnum.cs (.../AxisOrientationEnum.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
@@ -17,47 +17,47 @@
namespace GeoAPI.CoordinateSystems
{
- ///
- /// Orientation of axis. Some coordinate systems use non-standard orientations.
- /// For example, the first axis in South African grids usually points West,
- /// instead of East. This information is obviously relevant for algorithms
- /// converting South African grid coordinates into Lat/Long.
- ///
- public enum AxisOrientationEnum : short
- {
- ///
- /// Unknown or unspecified axis orientation. This can be used for local or fitted coordinate systems.
- ///
- Other = 0,
+ ///
+ /// Orientation of axis. Some coordinate systems use non-standard orientations.
+ /// For example, the first axis in South African grids usually points West,
+ /// instead of East. This information is obviously relevant for algorithms
+ /// converting South African grid coordinates into Lat/Long.
+ ///
+ public enum AxisOrientationEnum : short
+ {
+ ///
+ /// Unknown or unspecified axis orientation. This can be used for local or fitted coordinate systems.
+ ///
+ Other = 0,
- ///
- /// Increasing ordinates values go North. This is usually used for Grid Y coordinates and Latitude.
- ///
- North = 1,
+ ///
+ /// Increasing ordinates values go North. This is usually used for Grid Y coordinates and Latitude.
+ ///
+ North = 1,
- ///
- /// Increasing ordinates values go South. This is rarely used.
- ///
- South = 2,
+ ///
+ /// Increasing ordinates values go South. This is rarely used.
+ ///
+ South = 2,
- ///
- /// Increasing ordinates values go East. This is rarely used.
- ///
- East = 3,
+ ///
+ /// Increasing ordinates values go East. This is rarely used.
+ ///
+ East = 3,
- ///
- /// Increasing ordinates values go West. This is usually used for Grid X coordinates and Longitude.
- ///
- West = 4,
+ ///
+ /// Increasing ordinates values go West. This is usually used for Grid X coordinates and Longitude.
+ ///
+ West = 4,
- ///
- /// Increasing ordinates values go up. This is used for vertical coordinate systems.
- ///
- Up = 5,
+ ///
+ /// Increasing ordinates values go up. This is used for vertical coordinate systems.
+ ///
+ Up = 5,
- ///
- /// Increasing ordinates values go down. This is used for vertical coordinate systems.
- ///
- Down = 6
- }
-}
+ ///
+ /// Increasing ordinates values go down. This is used for vertical coordinate systems.
+ ///
+ Down = 6
+ }
+}
\ No newline at end of file