Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/utils/GeometryUtils.java @ 1053:bfc2ed20b87c
Prepared the FloodMapState to save geometries.
flys-artifacts/trunk@2519 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 22 Aug 2011 10:40:15 +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 :