/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2011, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.processing.jts.envelope; import com.vividsolutions.jts.geom.Geometry; import org.geotoolkit.geometry.jts.JTS; import org.geotoolkit.process.ProcessException; import org.geotoolkit.processing.AbstractProcess; import org.opengis.referencing.NoSuchAuthorityCodeException; import org.opengis.referencing.crs.CoordinateReferenceSystem; import org.opengis.util.FactoryException; import org.opengis.parameter.ParameterValueGroup; import static org.geotoolkit.parameter.Parameters.*; /** * Compute input geometry envelope. * The returned convexHull geometry keep input geometry CoordinateReferenceSystem. * @author Quentin Boileau (Geomatys) * @module */ public class EnvelopeProcess extends AbstractProcess { public EnvelopeProcess(final ParameterValueGroup input) { super(EnvelopeDescriptor.INSTANCE,input); } @Override protected void execute() throws ProcessException { try { final Geometry geom = value(EnvelopeDescriptor.GEOM, inputParameters); final CoordinateReferenceSystem geomCRS = JTS.findCoordinateReferenceSystem(geom); final Geometry result = geom.getEnvelope(); JTS.setCRS(result, geomCRS); getOrCreate(EnvelopeDescriptor.RESULT_GEOM, outputParameters).setValue(result); } catch (NoSuchAuthorityCodeException ex) { throw new ProcessException(ex.getMessage(), this, ex); } catch (FactoryException ex) { throw new ProcessException(ex.getMessage(), this, ex); } } }