org.jgrasstools.gears.modules.v.smoothing.LineSmootherJaitools Maven / Gradle / Ivy
/*
* This file is part of JGrasstools (http://www.jgrasstools.org)
* (C) HydroloGIS - www.hydrologis.com
*
* JGrasstools is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.jgrasstools.gears.modules.v.smoothing;
import java.util.ArrayList;
import java.util.List;
import oms3.annotations.Author;
import oms3.annotations.Description;
import oms3.annotations.Documentation;
import oms3.annotations.Execute;
import oms3.annotations.In;
import oms3.annotations.Keywords;
import oms3.annotations.Label;
import oms3.annotations.License;
import oms3.annotations.Name;
import oms3.annotations.Out;
import oms3.annotations.Status;
import org.geotools.data.simple.SimpleFeatureCollection;
import org.geotools.feature.FeatureCollections;
import org.jaitools.jts.LineSmoother;
import org.jgrasstools.gears.libs.modules.JGTConstants;
import org.jgrasstools.gears.libs.modules.JGTModel;
import org.jgrasstools.gears.libs.monitor.IJGTProgressMonitor;
import org.jgrasstools.gears.libs.monitor.LogProgressMonitor;
import org.jgrasstools.gears.utils.features.FeatureGeometrySubstitutor;
import org.jgrasstools.gears.utils.features.FeatureUtilities;
import org.jgrasstools.gears.utils.geometry.GeometryUtilities;
import org.opengis.feature.simple.SimpleFeature;
import com.vividsolutions.jts.geom.Geometry;
import com.vividsolutions.jts.geom.GeometryFactory;
import com.vividsolutions.jts.geom.LineString;
import com.vividsolutions.jts.geom.MultiLineString;
@Description("The line smoother from the jaitools project.")
@Documentation("LineSmootherJaitools.html")
@Author(name = "Andrea Antonello", contact = "http://www.hydrologis.com")
@Keywords("Smoothing, Vector")
@Status(Status.CERTIFIED)
@Label(JGTConstants.VECTORPROCESSING)
@Name("linesmootherjai")
@License("General Public License Version 3 (GPLv3)")
public class LineSmootherJaitools extends JGTModel {
@Description("The vector containing the lines to be smoothed.")
@In
public SimpleFeatureCollection inVector;
@Description("A value between 0 and 1 (inclusive) specifying the tightness of fit of the smoothed boundary (0 is loose).")
@In
public double pAlpha = 0;
@Description("The progress monitor.")
@In
public IJGTProgressMonitor pm = new LogProgressMonitor();
@Description("The smoothed features.")
@Out
public SimpleFeatureCollection outVector;
private GeometryFactory gF = GeometryUtilities.gf();
@Execute
public void process() throws Exception {
if (!concatOr(outVector == null, doReset)) {
return;
}
outVector = FeatureCollections.newCollection();
int id = 0;
pm.message("Collecting geometries...");
List linesList = FeatureUtilities.featureCollectionToList(inVector);
int size = inVector.size();
FeatureGeometrySubstitutor fGS = new FeatureGeometrySubstitutor(inVector.getSchema());
pm.beginTask("Smoothing features...", size);
LineSmoother smoother = new LineSmoother(gF);
for( SimpleFeature line : linesList ) {
Geometry geometry = (Geometry) line.getDefaultGeometry();
int numGeometries = geometry.getNumGeometries();
List smoothedList = new ArrayList();
for( int i = 0; i < numGeometries; i++ ) {
Geometry geometryN = geometry.getGeometryN(i);
if (geometryN instanceof LineString) {
LineString lineString = (LineString) geometryN;
LineString smoothed = smoother.smooth(lineString, pAlpha);
smoothedList.add(smoothed);
}
}
if (smoothedList.size() != 0) {
LineString[] lsArray = (LineString[]) smoothedList.toArray(new LineString[smoothedList.size()]);
MultiLineString multiLineString = gF.createMultiLineString(lsArray);
SimpleFeature newFeature = fGS.substituteGeometry(line, multiLineString);
outVector.add(newFeature);
id++;
}
pm.worked(1);
}
pm.done();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy