Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/utils/GeometryUtils.java @ 1087:22149b0545b9
New NamedDouble class which implements a <String,double>-pair.
flys-artifacts/trunk@2590 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Felix Wolfsteller <felix.wolfsteller@intevation.de> |
---|---|
date | Fri, 26 Aug 2011 11:10:31 +0000 |
parents | eeebf8514c7f |
children | e9f66d63bdd0 |
line wrap: on
line source
package de.intevation.flys.utils; import com.vividsolutions.jts.geom.Coordinate; import com.vividsolutions.jts.geom.Geometry; public class GeometryUtils { private GeometryUtils() { } /** * Returns the boundary of Geometry <i>geom</i> in OpenLayers * representation. * * @param geom The geometry. * * @return the OpenLayers boundary of <i>geom</i>. */ public static String jtsBoundsToOLBounds(Geometry geom) { Coordinate[] c = geom != null ? geom.getCoordinates() : null; if (c == null || c.length < 2) { return null; } return "" + c[0].x + " " + c[1].y + " " + c[1].x + " " + c[0].y; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :