Statistics
| Revision:

gvsig-geoprocess / org.gvsig.geoprocess / trunk / org.gvsig.geoprocess / org.gvsig.geoprocess.algorithm / org.gvsig.geoprocess.algorithm.xyshift / src / main / java / org / gvsig / geoprocess / algorithm / xyshift / XYShiftAlgorithm.java @ 237

History | View | Annotate | Download (4.22 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007,2012 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 */
21
package org.gvsig.geoprocess.algorithm.xyshift;
22

    
23
import es.unex.sextante.additionalInfo.AdditionalInfoNumericalValue;
24
import es.unex.sextante.core.Sextante;
25
import es.unex.sextante.dataObjects.IVectorLayer;
26
import es.unex.sextante.exceptions.GeoAlgorithmExecutionException;
27
import es.unex.sextante.exceptions.RepeatedParameterNameException;
28
import es.unex.sextante.outputs.OutputVectorLayer;
29

    
30
import org.gvsig.fmap.dal.exception.DataException;
31
import org.gvsig.fmap.dal.feature.FeatureSet;
32
import org.gvsig.fmap.dal.feature.FeatureStore;
33
import org.gvsig.fmap.dal.feature.FeatureType;
34
import org.gvsig.geoprocess.algorithm.base.core.GeometryOperation;
35
import org.gvsig.geoprocess.lib.sextante.AbstractSextanteGeoProcess;
36
import org.gvsig.geoprocess.lib.sextante.dataObjects.FlyrVectIVectorLayer;
37

    
38
/**
39
 * XYShift algorithm
40
 * @author <a href="mailto:nachobrodin@gmail.com">Nacho Brodin</a>
41
 */
42
public class XYShiftAlgorithm extends AbstractSextanteGeoProcess {
43

    
44
        public static final String  RESULT    = "RESULT";
45
        public static final String  LAYER     = "LAYER";
46
        public static final String  CHECK     = "CHECK";
47
        public static final String  X         = "X";
48
        public static final String  Y         = "Y";
49

    
50
        /*
51
         * (non-Javadoc)
52
         * @see es.unex.sextante.core.GeoAlgorithm#defineCharacteristics()
53
         */
54
        public void defineCharacteristics(){
55
                setName(Sextante.getText("XYShift"));
56
                setGroup(Sextante.getText("gvSIG_Algorithms"));
57
        // setGeneratesUserDefinedRasterOutput(false);
58
                
59
                try {
60
                        m_Parameters.addInputVectorLayer(LAYER, 
61
                                                                                                Sextante.getText("Input_layer"), 
62
                                                                                                IVectorLayer.SHAPE_TYPE_WRONG, 
63
                                                                                                true);
64
                        m_Parameters.addBoolean(CHECK, Sextante.getText("Selected_geometries"), false);
65
                        m_Parameters.addNumericalValue(X, Sextante.getText("X_traslation"), 0, AdditionalInfoNumericalValue.NUMERICAL_VALUE_DOUBLE);
66
                        m_Parameters.addNumericalValue(Y, Sextante.getText("Y_traslation"), 0, AdditionalInfoNumericalValue.NUMERICAL_VALUE_DOUBLE);
67
                } catch (RepeatedParameterNameException e) {
68
                        Sextante.addErrorToLog(e);
69
                }
70
                addOutputVectorLayer(RESULT,
71
                                                                Sextante.getText("XY-Shift"),
72
                                                                OutputVectorLayer.SHAPE_TYPE_UNDEFINED);
73
        }
74
        
75
        /*
76
         * (non-Javadoc)
77
         * @see es.unex.sextante.core.GeoAlgorithm#processAlgorithm()
78
         */
79
        public boolean processAlgorithm() throws GeoAlgorithmExecutionException {
80
                IVectorLayer layer = m_Parameters.getParameterValueAsVectorLayer(LAYER);
81
                boolean selectedGeom = m_Parameters.getParameter(CHECK).getParameterValueAsBoolean();
82
                double x = m_Parameters.getParameterValueAsDouble(X);
83
                double y = m_Parameters.getParameterValueAsDouble(Y);
84
                
85
                FeatureStore storeLayer = null;
86
                if(layer instanceof FlyrVectIVectorLayer)
87
                        storeLayer = ((FlyrVectIVectorLayer)layer).getFeatureStore();
88
                else
89
                        return false;
90
                
91
                try {
92
                        FeatureSet features = null;
93
                        features = storeLayer.getFeatureSet();
94
                        FeatureType featureType = features.getDefaultFeatureType();
95
                        FeatureStore outFeatStore = buildOutPutStore(featureType, layer.getShapeType(), Sextante.getText("XYShift"), RESULT);
96
                        
97
                        GeometryOperation operation = new XYShiftOperation(x, y);
98
            operation.setTaskStatus(getStatus());
99
                        operation.computesFeatureOperation(storeLayer, outFeatStore, attrNames, selectedGeom, true);
100
                } catch (DataException e) {
101
                        Sextante.addErrorToLog(e);
102
                        return false;
103
                }
104
                
105
                return true;
106
        }
107

    
108
}