/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2014, Open Source Geospatial Foundation (OSGeo) * * 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.spatialstatistics.transformation; import java.util.NoSuchElementException; import java.util.logging.Level; import java.util.logging.Logger; import org.geotools.data.simple.SimpleFeatureCollection; import org.geotools.data.simple.SimpleFeatureIterator; import org.geotools.feature.collection.SubFeatureCollection; import org.geotools.feature.simple.SimpleFeatureBuilder; import org.geotools.geometry.jts.GeometryCoordinateSequenceTransformer; import org.geotools.process.spatialstatistics.core.FeatureTypes; import org.geotools.referencing.CRS; import org.geotools.util.logging.Logging; import org.opengis.feature.simple.SimpleFeature; import org.opengis.feature.simple.SimpleFeatureType; import org.opengis.filter.Filter; import org.opengis.referencing.FactoryException; import org.opengis.referencing.crs.CoordinateReferenceSystem; import org.opengis.referencing.operation.MathTransform; import org.opengis.referencing.operation.TransformException; import com.vividsolutions.jts.geom.Geometry; import com.vividsolutions.jts.geom.Point; /** * XYCalculation SimpleFeatureCollection Implementation * * @author Minpa Lee, MangoSystem * * @source $URL$ */ public class XYCalculationFeatureCollection extends GXTSimpleFeatureCollection { protected static final Logger LOGGER = Logging.getLogger(XYCalculationFeatureCollection.class); private String xField; private String yField; private boolean useInside; private SimpleFeatureType schema; private GeometryCoordinateSequenceTransformer transformer = null; public XYCalculationFeatureCollection(SimpleFeatureCollection delegate, boolean useInside) { this(delegate, "xcoord", "ycoord", useInside); } public XYCalculationFeatureCollection(SimpleFeatureCollection delegate, String xField, String yField, boolean useInside) { this(delegate, xField, yField, useInside, null); } public XYCalculationFeatureCollection(SimpleFeatureCollection delegate, String xField, String yField, boolean useInside, CoordinateReferenceSystem targetCRS) { super(delegate); if (xField == null || xField.isEmpty()) { throw new NullPointerException("x field is null"); } if (yField == null || yField.isEmpty()) { throw new NullPointerException("y field is null"); } this.xField = xField; this.yField = yField; this.useInside = useInside; this.schema = FeatureTypes.build(delegate, delegate.getSchema().getTypeName()); this.schema = FeatureTypes.add(schema, xField, Double.class, 38); this.schema = FeatureTypes.add(schema, yField, Double.class, 38); if (targetCRS != null) { CoordinateReferenceSystem forcedCRS = getSchema().getCoordinateReferenceSystem(); if (forcedCRS == null) { throw new NullPointerException("source crs is null"); } transformer = new GeometryCoordinateSequenceTransformer(); transformer.setMathTransform(transform(forcedCRS, targetCRS, true)); transformer.setCoordinateReferenceSystem(targetCRS); } } private MathTransform transform(CoordinateReferenceSystem source, CoordinateReferenceSystem target, boolean lenient) { try { return CRS.findMathTransform(source, target, lenient); } catch (FactoryException e) { throw new IllegalArgumentException("Could not create math transform"); } } @Override public SimpleFeatureIterator features() { return new XYCalculationFeatureIterator(delegate.features(), getSchema(), xField, yField, useInside, transformer); } @Override public SimpleFeatureType getSchema() { return schema; } @Override public SimpleFeatureCollection subCollection(Filter filter) { if (filter == Filter.INCLUDE) { return this; } return new SubFeatureCollection(this, filter); } static class XYCalculationFeatureIterator implements SimpleFeatureIterator { private SimpleFeatureIterator delegate; private String xField; private String yField; private boolean useInside = false; private GeometryCoordinateSequenceTransformer transformer; private SimpleFeatureBuilder builder; public XYCalculationFeatureIterator(SimpleFeatureIterator delegate, SimpleFeatureType schema, String xField, String yField, boolean useInside, GeometryCoordinateSequenceTransformer transformer) { this.delegate = delegate; this.xField = xField; this.yField = yField; this.useInside = useInside; this.transformer = transformer; this.builder = new SimpleFeatureBuilder(schema); } public void close() { delegate.close(); } public boolean hasNext() { return delegate.hasNext(); } public SimpleFeature next() throws NoSuchElementException { SimpleFeature sourceFeature = delegate.next(); SimpleFeature nextFeature = builder.buildFeature(sourceFeature.getID()); // transfer attributes transferAttribute(sourceFeature, nextFeature); // calculate xy coordinates Geometry g = (Geometry) sourceFeature.getDefaultGeometry(); Point center = useInside ? g.getInteriorPoint() : g.getCentroid(); if (transformer != null) { try { center.setUserData(sourceFeature.getFeatureType() .getCoordinateReferenceSystem()); center = (Point) transformer.transform(center); } catch (TransformException e) { String msg = "Error occured transforming " + center.toString(); LOGGER.log(Level.WARNING, msg); } } nextFeature.setAttribute(xField, center.getX()); nextFeature.setAttribute(yField, center.getY()); return nextFeature; } } }