Index: trunk/src/org/openstreetmap/josm/data/projection/CustomProjection.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/projection/CustomProjection.java	(revision 14045)
+++ trunk/src/org/openstreetmap/josm/data/projection/CustomProjection.java	(revision 14049)
@@ -65,4 +65,14 @@
     protected Bounds bounds;
     private double metersPerUnitWMTS;
+    /**
+     * Starting in PROJ 4.8.0, the {@code +axis} argument can be used to control the axis orientation of the coordinate system.
+     * The default orientation is "easting, northing, up" but directions can be flipped, or axes flipped using
+     * combinations of the axes in the {@code +axis} switch. The values are: {@code e} (Easting), {@code w} (Westing),
+     * {@code n} (Northing), {@code s} (Southing), {@code u} (Up), {@code d} (Down);
+     * Examples: {@code +axis=enu} (the default easting, northing, elevation), {@code +axis=neu} (northing, easting, up;
+     * useful for "lat/long" geographic coordinates, or south orientated transverse mercator), {@code +axis=wnu}
+     * (westing, northing, up - some planetary coordinate systems have "west positive" coordinate systems)
+     * @apiNote https://proj4.org/usage/projections.html#axis-orientation
+     */
     private String axis = "enu"; // default axis orientation is East, North, Up
 
@@ -725,4 +735,5 @@
     public boolean switchXY() {
         // TODO: support for other axis orientation such as West South, and Up Down
+        // +axis=neu
         return this.axis.startsWith("ne");
     }
