/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2011, Open Source Geospatial Foundation (OSGeo) * (C) 2001-2007 TOPP - www.openplans.org. * * 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.geotools.process.vector; import org.geotools.process.factory.DescribeParameter; import org.geotools.process.factory.DescribeProcess; import org.geotools.process.factory.DescribeResult; import org.geotools.data.crs.ForceCoordinateSystemFeatureResults; import org.geotools.data.simple.SimpleFeatureCollection; import org.geotools.data.store.ReprojectingFeatureCollection; import org.opengis.referencing.crs.CoordinateReferenceSystem; /** * Will reproject the features to another CRS. Can also be used to force a known CRS onto a dataset * that does not have ones * * @author Andrea Aime * * @source $URL$ */ @DescribeProcess(title = "Reproject Features", description = "Reprojects features into a supplied coordinate reference system. Can also force a feature collection to have a given CRS.") public class ReprojectProcess implements VectorProcess { @DescribeResult(name = "result", description = "Input feature collection") public SimpleFeatureCollection execute( @DescribeParameter(name = "features", description = "The feature collection that will be reprojected") SimpleFeatureCollection features, @DescribeParameter(name = "forcedCRS", min = 0, description = "Coordinate reference system to use for input feature collection (overrides native one)") CoordinateReferenceSystem forcedCRS, @DescribeParameter(name = "targetCRS", min = 0, description = "Target coordinate reference system to use for reprojection") CoordinateReferenceSystem targetCRS) throws Exception { if (forcedCRS != null) { features = new ForceCoordinateSystemFeatureResults(features, forcedCRS, false); } if (targetCRS != null) { // note, using ReprojectFeatureResults would work. However that would // just work by accident... see GEOS-4072 features = new ReprojectingFeatureCollection(features, targetCRS); } return features; } }