Having chased the ReferencedEnvelope problems out of GeoTools it is time for me 
to confront them in the GeoServer codebase.

Currently I am testing WMS, any time we work with bounds we need to take this 
regression (2D and 3D bounds do not mix) into account.

As am example in GetMap we have:

            mapContent.getViewport().setBounds(new ReferencedEnvelope(envelope, 
mapcrs));

This fat out fails when, and needs to be replaced with the factory method:

            
mapContent.getViewport().setBounds(ReferencedEnvelope.reference(envelope, 
mapcrs));

So expect an annoying patch to review this weekend, I am traveling next week 
but will try and answer email.
-- 
Jody Garnett

------------------------------------------------------------------------------
Keep yourself connected to Go Parallel: 
INSIGHTS What's next for parallel hardware, programming and related areas?
Interviews and blogs by thought leaders keep you ahead of the curve.
http://goparallel.sourceforge.net
_______________________________________________
Geoserver-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geoserver-devel

Reply via email to