Package org.geotools.geometry.jts

Examples of org.geotools.geometry.jts.ReferencedEnvelope3D.expandToInclude()


    public ReferencedEnvelope3D get3DEnvelope(Geometry geom) {
      Coordinate[] coordinates = geom.getCoordinates();
     
      ReferencedEnvelope3D env = new ReferencedEnvelope3D();
      for (Coordinate coordinate : coordinates) {
        env.expandToInclude(coordinate);
      }
      return env;
    }

    public boolean evaluate(Object feature) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.