/* * JGrass - Free Open Source Java GIS http://www.jgrass.org * (C) HydroloGIS - www.hydrologis.com * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) any * later version. * * 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 Library General Public License for more * details. * * You should have received a copy of the GNU Library General Public License * along with this library; if not, write to the Free Foundation, Inc., 59 * Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package org.jgrasstools.gears.modules.v.intersections; import org.geotools.feature.simple.SimpleFeatureBuilder; import org.jgrasstools.gears.utils.math.NumericsUtilities; import org.opengis.feature.simple.SimpleFeature; import org.opengis.feature.simple.SimpleFeatureType; import com.vividsolutions.jts.geom.Geometry; /** * A wrapper for {@link SimpleFeature}s so that they are sorted by a numeric field. * * @author Andrea Antonello (www.hydrologis.com) */ public class FeatureElevationComparer implements Comparable<FeatureElevationComparer> { private SimpleFeature feature; private double elevation; private Geometry geometry; private Geometry bufferPolygon; private boolean isDirty = false; private boolean isSnapped = false; private final double lengthThreshold; private boolean toRemove = false; private final double buffer; public FeatureElevationComparer( SimpleFeature feature, String field, double buffer, double lengthThreshold ) { this.feature = feature; this.buffer = buffer; this.lengthThreshold = lengthThreshold; elevation = ((Number) feature.getAttribute(field)).doubleValue(); geometry = (Geometry) feature.getDefaultGeometry(); if (buffer > 0) { try{ bufferPolygon = geometry.buffer(buffer); }catch (Exception e) { e.printStackTrace(); try{ System.out.println("TRYING WITH WIDER BUFFER: *2"); bufferPolygon = geometry.buffer(buffer*2); }catch (Exception e1) { e1.printStackTrace(); System.out.println("TRYING WITH WIDER BUFFER: *4"); bufferPolygon = geometry.buffer(buffer*4); } } } } public SimpleFeature getFeature() { return feature; } public Geometry getGeometry() { return geometry; } public double getElevation() { return elevation; } public boolean isDirty() { return isDirty; } public void setDirty( boolean isDirty ) { this.isDirty = isDirty; } public Geometry getBufferPolygon() { return bufferPolygon; } public void setBufferPolygon( Geometry bufferPolygon ) { this.bufferPolygon = bufferPolygon; } public boolean isSnapped() { return isSnapped; } public void setSnapped( boolean isSnapped ) { this.isSnapped = isSnapped; } public boolean toRemove() { return toRemove; } /** * @param newGeometry new geometry to insert. */ public void substituteGeometry( Geometry newGeometry ) { if (toRemove) { return; } if (newGeometry.getLength() < lengthThreshold) { feature = null; geometry = null; toRemove = true; return; } Object[] attributes = feature.getAttributes().toArray(); Object[] newAttributes = new Object[attributes.length]; System.arraycopy(attributes, 0, newAttributes, 0, attributes.length); newAttributes[0] = newGeometry; SimpleFeatureType featureType = feature.getFeatureType(); SimpleFeatureBuilder builder = new SimpleFeatureBuilder(featureType); builder.addAll(newAttributes); feature = builder.buildFeature(feature.getID()); geometry = newGeometry; bufferPolygon = geometry.buffer(buffer); } public int compareTo( FeatureElevationComparer o ) { if (elevation < o.getElevation()) { return 1; } else if (elevation > o.getElevation()) { return -1; } else return 0; } @Override public int hashCode() { final int prime = 31; int result = 1; long temp; temp = Double.doubleToLongBits(elevation); result = prime * result + (int) (temp ^ (temp >>> 32)); return result; } @Override public boolean equals( Object obj ) { if (obj instanceof FeatureElevationComparer) { FeatureElevationComparer o = (FeatureElevationComparer) obj; return NumericsUtilities.dEq(elevation, o.getElevation()); } return false; } }