Hi,

if I use EPSG:3146x our WMS Server does not return an image. I found 
out, that the axises mut be swapped in WMS 1.3.0. The current code in 
WMSCoverageReader is:

  if(requestCRS instanceof GeographicCRS && flipGeographic) {
             requestEnvelope = flipEnvelope(requestEnvelope);
  }

I think, the test must take the axis order into account:

String orientation = requestCRS.getCoordinateSystem().getAxis(0).getName()
                     .getCode();
if ("Northing".equals(orientation) || "Southing".equals(orientation) 
||"Geodetic latitude".equals(orientation)) {

Rainer


------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
GeoTools-GT2-Users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geotools-gt2-users

Reply via email to