/* * 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; import java.io.IOException; import java.util.HashMap; import java.util.Map; import java.util.logging.Level; import java.util.logging.Logger; import org.geotools.data.simple.SimpleFeatureCollection; import org.geotools.process.Process; import org.geotools.process.ProcessException; import org.geotools.process.ProcessFactory; import org.geotools.process.spatialstatistics.core.Params; import org.geotools.process.spatialstatistics.distribution.MedianCenterOperation; import org.geotools.util.logging.Logging; import org.opengis.util.ProgressListener; /** * Identifies the location that minimizes overall Euclidean distance to the features in a dataset. * * @author Minpa Lee, MangoSystem * * @source $URL$ */ public class MedianCenterProcess extends AbstractStatisticsProcess { protected static final Logger LOGGER = Logging.getLogger(MedianCenterProcess.class); public MedianCenterProcess(ProcessFactory factory) { super(factory); } public ProcessFactory getFactory() { return factory; } public static SimpleFeatureCollection process(SimpleFeatureCollection inputFeatures, String weightField, String caseField, String attributeFields, ProgressListener monitor) { Map<String, Object> map = new HashMap<String, Object>(); map.put(MedianCenterProcessFactory.inputFeatures.key, inputFeatures); map.put(MedianCenterProcessFactory.weightField.key, weightField); map.put(MedianCenterProcessFactory.caseField.key, caseField); map.put(MedianCenterProcessFactory.attributeFields.key, attributeFields); Process process = new MedianCenterProcess(null); Map<String, Object> resultMap; try { resultMap = process.execute(map, monitor); return (SimpleFeatureCollection) resultMap.get(MedianCenterProcessFactory.RESULT.key); } catch (ProcessException e) { LOGGER.log(Level.FINER, e.getMessage(), e); } return null; } @Override public Map<String, Object> execute(Map<String, Object> input, ProgressListener monitor) throws ProcessException { SimpleFeatureCollection inputFeatures = (SimpleFeatureCollection) Params.getValue(input, MedianCenterProcessFactory.inputFeatures, null); if (inputFeatures == null) { throw new NullPointerException("inputFeatures parameters required"); } String weightField = (String) Params.getValue(input, MedianCenterProcessFactory.weightField, null); String caseField = (String) Params.getValue(input, MedianCenterProcessFactory.caseField, null); String attributeFields = (String) Params.getValue(input, MedianCenterProcessFactory.attributeFields, null); // start process String[] attFields = null; if (attributeFields != null && attributeFields.length() > 0) { attFields = attributeFields.split(","); for (int k = 0; k < attFields.length; k++) { attFields[k] = attFields[k].trim(); } } SimpleFeatureCollection resultFc = null; try { MedianCenterOperation operation = new MedianCenterOperation(); resultFc = operation.execute(inputFeatures, weightField, caseField, attFields); } catch (IOException e) { throw new ProcessException(e); } // end process Map<String, Object> resultMap = new HashMap<String, Object>(); resultMap.put(MedianCenterProcessFactory.RESULT.key, resultFc); return resultMap; } }