Revision 5878

View differences:

org.gvsig.legend.graduatedsymbols.app.mainplugin/tags/org.gvsig.legend.graduatedsymbols.app.mainplugin-1.0.152/src/main/assembly/gvsig-plugin-package.xml
1
<!--
2

  
3
    gvSIG. Desktop Geographic Information System.
4

  
5
    Copyright (C) 2007-2013 gvSIG Association.
6

  
7
    This program is free software; you can redistribute it and/or
8
    modify it under the terms of the GNU General Public License
9
    as published by the Free Software Foundation; either version 3
10
    of the License, or (at your option) any later version.
11

  
12
    This program is distributed in the hope that it will be useful,
13
    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
    GNU General Public License for more details.
16

  
17
    You should have received a copy of the GNU General Public License
18
    along with this program; if not, write to the Free Software
19
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
    MA  02110-1301, USA.
21

  
22
    For any additional information, do not hesitate to contact us
23
    at info AT gvsig.com, or visit our website www.gvsig.com.
24

  
25
-->
26
<assembly>
27
  <id>gvsig-plugin-package</id>
28
  <formats>
29
    <format>zip</format>
30
  </formats>
31
  <baseDirectory>${project.artifactId}</baseDirectory>
32
  <includeBaseDirectory>true</includeBaseDirectory>
33
  <files>
34
    <file>
35
      <source>target/${project.artifactId}-${project.version}.jar</source>
36
      <outputDirectory>lib</outputDirectory>
37
    </file>
38
    <file>
39
      <source>target/package.info</source>
40
    </file>
41
  </files>
42

  
43
  <fileSets>
44
    <fileSet>
45
      <directory>src/main/resources-plugin</directory>
46
      <outputDirectory>.</outputDirectory>
47
    </fileSet>
48
  </fileSets>
49

  
50
<!-- No dependencies
51
  <dependencySets>
52
    <dependencySet>
53
      <useProjectArtifact>false</useProjectArtifact>
54
      <useTransitiveDependencies>false</useTransitiveDependencies>
55
      <outputDirectory>lib</outputDirectory>
56
      <includes>
57
		<include>...</include>
58
      </includes>
59
    </dependencySet>
60
  </dependencySets>
61
-->
62

  
63
</assembly>
64

  
org.gvsig.legend.graduatedsymbols.app.mainplugin/tags/org.gvsig.legend.graduatedsymbols.app.mainplugin-1.0.152/src/main/java/org/gvsig/symbology/fmap/rendering/GraduatedSymbolsLegend.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2005 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41

  
42
/* CVS MESSAGES:
43
 *
44
 * $Id: GraduatedSymbolLegend.java 16187 2007-11-08 16:13:44Z jdominguez $
45
 * $Log$
46
 * Revision 1.3  2007-05-17 09:32:06  jaume
47
 * *** empty log message ***
48
 *
49
 * Revision 1.2  2007/03/09 11:20:56  jaume
50
 * Advanced symbology (start committing)
51
 *
52
 * Revision 1.1.2.4  2007/02/15 16:23:44  jaume
53
 * *** empty log message ***
54
 *
55
 * Revision 1.1.2.3  2007/02/14 15:53:35  jaume
56
 * *** empty log message ***
57
 *
58
 * Revision 1.1.2.2  2007/02/13 16:19:19  jaume
59
 * graduated symbol legends (start commiting)
60
 *
61
 * Revision 1.1.2.1  2007/02/12 15:15:20  jaume
62
 * refactored interval legend and added graduated symbol legend
63
 *
64
 *
65
 */
66
package org.gvsig.symbology.fmap.rendering;
67

  
68
import org.slf4j.Logger;
69
import org.slf4j.LoggerFactory;
70

  
71
import org.gvsig.fmap.dal.feature.Feature;
72
import org.gvsig.fmap.geom.Geometry;
73
import org.gvsig.fmap.geom.GeometryLocator;
74
import org.gvsig.fmap.geom.GeometryManager;
75
import org.gvsig.fmap.mapcontext.MapContextException;
76
import org.gvsig.fmap.mapcontext.MapContextLocator;
77
import org.gvsig.fmap.mapcontext.MapContextManager;
78
import org.gvsig.fmap.mapcontext.rendering.legend.IInterval;
79
import org.gvsig.fmap.mapcontext.rendering.symbols.ISymbol;
80
import org.gvsig.symbology.fmap.mapcontext.rendering.legend.impl.VectorialIntervalLegend;
81
import org.gvsig.symbology.fmap.mapcontext.rendering.symbol.fill.IFillSymbol;
82
import org.gvsig.symbology.fmap.mapcontext.rendering.symbol.fill.impl.MarkerFillSymbol;
83
import org.gvsig.symbology.fmap.mapcontext.rendering.symbol.fill.impl.MultiLayerFillSymbol;
84
import org.gvsig.symbology.fmap.mapcontext.rendering.symbol.marker.IMarkerSymbol;
85
import org.gvsig.symbology.fmap.mapcontext.rendering.symbol.style.SimpleMarkerFillPropertiesStyle;
86
import org.gvsig.tools.ToolsLocator;
87
import org.gvsig.tools.dynobject.DynStruct;
88
import org.gvsig.tools.persistence.PersistenceManager;
89
import org.gvsig.tools.persistence.PersistentState;
90
import org.gvsig.tools.persistence.exception.PersistenceException;
91
import org.gvsig.tools.util.Callable;
92

  
93
/**
94
 * <p>GraduatedSymbolLegend is a legend that allows to classify ranges of
95
 * values using a value with symbol sizes.<b>
96
 * </p>
97
 * <p>
98
 * The symbol size will be calculated according the min size, the
99
 * max size and the amount of intervals. So for a min size of 1, a max size
100
 * of 5, and 5 intervals, symbol sizes will be [1, 2, 3, 4, 5].
101
 * </p>
102
 * @author  jaume dominguez faus - jaume.dominguez@iver.es
103
 */
104
public class GraduatedSymbolsLegend extends VectorialIntervalLegend {
105
    
106
    private static Logger logger = LoggerFactory.getLogger(
107
        GraduatedSymbolsLegend.class);
108
    
109
    public static final String
110
    GRADUATED_SYMBOL_LEGEND_NAME =
111
        "GRADUATED_SYMBOL_LEGEND";  
112
    public static final String
113
    GRADUATED_SYMBOL_LEGEND_PERSISTENCE_DEFINITION_NAME =
114
        "GRADUATED_SYMBOL_LEGEND_PERSISTENCE_DEFINITION";  
115

  
116
    
117
	private double maxSymbolSize;
118
	private double minSymbolSize;
119
	private ISymbol backgroundSymbol;
120
	private int templateShapeType;
121
	/**
122
	 * DefaultConstructor
123
	 */
124
	public GraduatedSymbolsLegend() {
125
		super();
126
	}
127

  
128
	/**
129
	 * Convenience constructor.
130
	 *
131
	 * Creates a new instance of GraduatedSymbolLegend from a VectorialIntervalLegend by
132
	 * taking the same fields.
133
	 * @param leg
134
	 */
135
	public GraduatedSymbolsLegend(VectorialIntervalLegend leg) {
136
		this();
137
		
138
        this.setShapeType(leg.getShapeType());
139
        Object[] _keys = leg.getValues();
140
        ISymbol[] _syms = leg.getSymbols();
141
        
142
        if (_keys == null || _syms == null) {
143
            logger.info("Warning: inconsistent VectorialIntervalLegend (keys or syms is null)");
144
        } else {
145
            if (_keys.length != _syms.length) {
146
                logger.info("Warning: inconsistent VectorialIntervalLegend (keys and syms have dif length)");
147
            } else {
148
                for (int i=0; i<_keys.length; i++) {
149
                    this.addSymbol(_keys[i], _syms[i]);
150
                }
151
            }
152
        }
153
        
154
        this.setClassifyingFieldNames(leg.getClassifyingFieldNames());
155
        this.setClassifyingFieldTypes(leg.getClassifyingFieldTypes());
156
        this.setDefaultSymbol(leg.getDefaultSymbol());
157
        this.setIntervalType(leg.getIntervalType());
158
        this.useDefaultSymbol(leg.isUseDefaultSymbol());
159
	}
160

  
161
	/**
162
	 * Returns the max symbol size. Combined with the min symbol size and
163
	 * the interval count, will produce the symbol sizes.
164
	 * @return double, the max size.
165
	 */
166
	public double getMaxSymbolSize() {
167
		return maxSymbolSize;
168
	}
169

  
170
	/**
171
	 * Returns the min symbol size. Combined with the max symbol size and
172
	 * the interval count, will produce the symbol sizes.
173
	 * @return double, the min size.
174
	 */
175
	public double getMinSymbolSize() {
176
		return minSymbolSize;
177
	}
178

  
179
	/**
180
	 * Sets the max symbol size. Combined with the min symbol size and
181
	 * the interval count, will produce the symbol sizes.
182
	 */
183
	public void setMaxSymbolSize(double size) {
184
		this.maxSymbolSize = size;
185
	}
186

  
187
	/**
188
	 * Sets the min symbol size. Combined with the max symbol size and
189
	 * the interval count, will produce the symbol sizes.
190
	 */
191
	public void setMinSymbolSize(double size) {
192
		this.minSymbolSize = size;
193
	}
194

  
195
	
196
	public ISymbol getSymbolByFeature(Feature feat) throws MapContextException {
197
	    
198
		ISymbol theSymbol = super.getSymbolByFeature(feat);
199

  
200
		if (isPolygonal(getShapeType()) && theSymbol instanceof IMarkerSymbol) {
201
			// transform it to a fill symbol
202
            theSymbol = toFillSymbol(theSymbol);
203
		}
204

  
205
		if (backgroundSymbol != null) {
206
			MultiLayerFillSymbol multi = new MultiLayerFillSymbol() ;
207
			multi.addLayer(backgroundSymbol);
208
			multi.addLayer(theSymbol);
209
			return multi;
210
		}
211
		return theSymbol;
212
	}
213

  
214
	@Override
215
	public ISymbol getSymbolByInterval(IInterval key) {
216
	    
217
		ISymbol theSymbol = super.getSymbolByInterval(key);
218
        if (isPolygonal(getShapeType()) && theSymbol instanceof IMarkerSymbol) {
219
			// transform it to a fill symbol
220
			theSymbol = toFillSymbol(theSymbol);
221
		}
222
		return theSymbol;
223
	}
224

  
225
	/**
226
	 * Obtains the background symbol
227
	 */
228
	public ISymbol getBackgroundSymbol() {
229
		return backgroundSymbol;
230
	}
231

  
232
	/**
233
	 * Sets the background symbol.
234
	 * @param symbol
235
	 */
236
	public void setBackgroundSymbol(ISymbol symbol) {
237
		this.backgroundSymbol = symbol;
238
	}
239

  
240
	public ISymbol getDefaultSymbol() {
241
		return defaultSymbol;
242
	}
243

  
244
	@Override
245
	public boolean isSuitableForShapeType(int st) {
246
		return areSameBasicType(getShapeType(), st)
247
		    ||
248
		    (isPoint(getTemplateShapeType()) && isPolygonal(st));
249
	}
250

  
251

  
252

  
253
	/**
254
	 * Obtains the shapetype of the background symbol
255
	 */
256
	public int getTemplateShapeType() {
257
		return templateShapeType;
258
	}
259
	/**
260
	 * Sets the shapetype of the background symbol
261
	 */
262
	public void setTemplateShapeType(int tst) {
263
		if (isPolygonal(getShapeType())) {
264
			if(isPoint(tst))
265
				this.templateShapeType = tst;
266
		}
267
		else if(areSameBasicType(tst, getShapeType())) {
268
			this.templateShapeType = tst;
269
		}
270
	}
271
	
272
    public static boolean isPolygonal(int ty) {
273
        GeometryManager geomManager = GeometryLocator.getGeometryManager();
274
        return geomManager.isSubtype(Geometry.TYPES.MULTISURFACE, ty) || 
275
            geomManager.isSubtype(Geometry.TYPES.SURFACE, ty);
276
    }
277

  
278

  
279
    public static boolean isLinear(int ty) {
280
        GeometryManager geomManager = GeometryLocator.getGeometryManager();
281
        return geomManager.isSubtype(Geometry.TYPES.MULTICURVE, ty) || 
282
            geomManager.isSubtype(Geometry.TYPES.CURVE, ty);
283
    }
284
    
285
    public static boolean isPoint(int ty) {
286
        GeometryManager geomManager = GeometryLocator.getGeometryManager();
287
        return geomManager.isSubtype(Geometry.TYPES.MULTIPOINT, ty) || 
288
            geomManager.isSubtype(Geometry.TYPES.POINT, ty);
289
    }
290
    
291
    public static boolean areSameBasicType(int ta, int tb) {
292
        
293
        if (isPoint(ta) && isPoint(tb)) {
294
            return true;
295
        }
296
        if (isLinear(ta) && isLinear(tb)) {
297
            return true;
298
        }
299
        if (isPolygonal(ta) && isPolygonal(tb)) {
300
            return true;
301
        }
302
        return false;
303
    }
304
    
305
    public void loadFromState(PersistentState state)
306
        throws PersistenceException {
307
        
308
        super.loadFromState(state);
309
        
310
        this.templateShapeType = state.getInt("templateShapeType");
311
        this.maxSymbolSize = state.getDouble("maxSymbolSize");
312
        this.minSymbolSize = state.getDouble("minSymbolSize");
313
        
314
        if (state.hasValue("backgroundSymbol")) {
315
            this.backgroundSymbol = (ISymbol) state.get("backgroundSymbol");
316
        }
317
    }
318

  
319
    public void saveToState(PersistentState state) throws PersistenceException {
320

  
321
        super.saveToState(state);
322
        state.set("templateShapeType", this.templateShapeType);
323
        state.set("maxSymbolSize", this.maxSymbolSize);
324
        state.set("minSymbolSize", this.minSymbolSize);
325
        if (this.backgroundSymbol != null) {
326
            state.set("backgroundSymbol", this.backgroundSymbol);
327
        }
328
        
329
    }
330
    
331

  
332
    public static class RegisterPersistence implements Callable {
333

  
334
        public Object call() throws Exception {
335
            
336
            PersistenceManager manager = ToolsLocator.getPersistenceManager();
337
            if (manager
338
                .getDefinition(GRADUATED_SYMBOL_LEGEND_PERSISTENCE_DEFINITION_NAME) == null) {
339
                DynStruct definition =
340
                    manager
341
                        .addDefinition(
342
                            GraduatedSymbolsLegend.class,
343
                            GRADUATED_SYMBOL_LEGEND_PERSISTENCE_DEFINITION_NAME,
344
                            GRADUATED_SYMBOL_LEGEND_PERSISTENCE_DEFINITION_NAME
345
                                + " Persistence definition", null, null);
346
                
347
                definition.extend(
348
                    manager.getDefinition(
349
                        VectorialIntervalLegend.
350
                        VECTORIAL_INTERVAL_LEGEND_PERSISTENCE_DEFINITION_NAME));
351

  
352
                definition.addDynFieldInt("templateShapeType").setMandatory(true);
353
                definition.addDynFieldDouble("maxSymbolSize").setMandatory(true);
354
                definition.addDynFieldDouble("minSymbolSize").setMandatory(true);
355
                definition.addDynFieldObject("backgroundSymbol")
356
                .setClassOfValue(ISymbol.class).setMandatory(false);
357
            }
358
            return Boolean.TRUE;
359
        }
360

  
361
    }
362

  
363
    public static class RegisterLegend implements Callable {
364

  
365
        public Object call() throws Exception {
366
            MapContextManager manager =
367
                MapContextLocator.getMapContextManager();
368

  
369
            manager.registerLegend(
370
                GRADUATED_SYMBOL_LEGEND_NAME,
371
                GraduatedSymbolsLegend.class);
372

  
373
            return Boolean.TRUE;
374
        }
375

  
376
    }
377
    
378
    public static IFillSymbol toFillSymbol(ISymbol sym) {
379
        
380
        if (sym instanceof IFillSymbol) {
381
            return (IFillSymbol) sym;
382

  
383
        } else if (sym instanceof IMarkerSymbol) {
384
            MarkerFillSymbol aux = new MarkerFillSymbol();
385
            aux.setMarker((IMarkerSymbol) sym);
386
            SimpleMarkerFillPropertiesStyle p = new SimpleMarkerFillPropertiesStyle();
387
            p.setFillStyle(SimpleMarkerFillPropertiesStyle.SINGLE_CENTERED_SYMBOL);
388
            aux.setMarkerFillProperties(p);
389
            return aux;
390

  
391
        } else {
392
            return null;
393

  
394
        }
395
    }
396

  
397

  
398

  
399

  
400
}
org.gvsig.legend.graduatedsymbols.app.mainplugin/tags/org.gvsig.legend.graduatedsymbols.app.mainplugin-1.0.152/src/main/java/org/gvsig/symbology/gui/layerproperties/GraduatedSymbolsPanel.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2005 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41

  
42
/* CVS MESSAGES:
43
 *
44
 * $Id: GraduatedSymbols.java 16232 2007-11-09 13:36:35Z jdominguez $
45
 * $Log$
46
 * Revision 1.8  2007-09-19 15:44:44  jaume
47
 * new signal catched (legend error)
48
 *
49
 * Revision 1.7  2007/05/21 10:38:27  jaume
50
 * *** empty log message ***
51
 *
52
 * Revision 1.6  2007/05/17 09:32:37  jaume
53
 * *** empty log message ***
54
 *
55
 * Revision 1.5  2007/05/10 09:46:45  jaume
56
 * Refactored legend interface names
57
 *
58
 * Revision 1.4  2007/05/08 15:45:31  jaume
59
 * *** empty log message ***
60
 *
61
 * Revision 1.3  2007/03/21 08:03:03  jaume
62
 * refactored to use ISymbol instead of FSymbol
63
 *
64
 * Revision 1.2  2007/03/09 11:25:00  jaume
65
 * Advanced symbology (start committing)
66
 *
67
 * Revision 1.1.2.4  2007/02/21 07:35:14  jaume
68
 * *** empty log message ***
69
 *
70
 * Revision 1.1.2.3  2007/02/14 09:59:17  jaume
71
 * *** empty log message ***
72
 *
73
 * Revision 1.1.2.2  2007/02/13 16:19:19  jaume
74
 * graduated symbol legends (start commiting)
75
 *
76
 * Revision 1.1.2.1  2007/02/12 15:14:41  jaume
77
 * refactored interval legend and added graduated symbol legend
78
 *
79
 *
80
 */
81
package org.gvsig.symbology.gui.layerproperties;
82

  
83
import java.awt.Color;
84
import java.awt.Dimension;
85
import java.awt.FlowLayout;
86
import java.text.NumberFormat;
87
import java.util.ArrayList;
88
import java.util.List;
89

  
90
import javax.swing.BorderFactory;
91
import javax.swing.ImageIcon;
92
import javax.swing.JLabel;
93
import javax.swing.JOptionPane;
94
import javax.swing.JPanel;
95

  
96
import org.slf4j.Logger;
97
import org.slf4j.LoggerFactory;
98

  
99
import org.gvsig.andami.IconThemeHelper;
100
import org.gvsig.app.ApplicationLocator;
101
import org.gvsig.app.project.documents.view.legend.gui.ILegendPanel;
102
import org.gvsig.app.project.documents.view.legend.gui.JSymbolPreviewButton;
103
import org.gvsig.app.project.documents.view.legend.gui.Quantities;
104
import org.gvsig.app.project.documents.view.legend.gui.SymbolTable;
105
import org.gvsig.app.project.documents.view.legend.gui.VectorialInterval;
106
import org.gvsig.fmap.dal.exception.ReadException;
107
import org.gvsig.fmap.geom.Geometry;
108
import org.gvsig.fmap.mapcontext.MapContextLocator;
109
import org.gvsig.fmap.mapcontext.MapContextManager;
110
import org.gvsig.fmap.mapcontext.exceptions.LegendLayerException;
111
import org.gvsig.fmap.mapcontext.layers.FLayer;
112
import org.gvsig.fmap.mapcontext.layers.vectorial.FLyrVect;
113
import org.gvsig.fmap.mapcontext.rendering.legend.IInterval;
114
import org.gvsig.fmap.mapcontext.rendering.legend.ILegend;
115
import org.gvsig.fmap.mapcontext.rendering.legend.IVectorialIntervalLegend;
116
import org.gvsig.fmap.mapcontext.rendering.symbols.ISymbol;
117
import org.gvsig.gui.beans.swing.GridBagLayoutPanel;
118
import org.gvsig.gui.beans.swing.JNumberSpinner;
119
import org.gvsig.i18n.Messages;
120
import org.gvsig.symbology.fmap.mapcontext.rendering.legend.impl.VectorialIntervalLegend;
121
import org.gvsig.symbology.fmap.mapcontext.rendering.symbol.fill.impl.MarkerFillSymbol;
122
import org.gvsig.symbology.fmap.mapcontext.rendering.symbol.line.ILineSymbol;
123
import org.gvsig.symbology.fmap.mapcontext.rendering.symbol.line.impl.SimpleLineSymbol;
124
import org.gvsig.symbology.fmap.mapcontext.rendering.symbol.marker.IMarkerSymbol;
125
import org.gvsig.symbology.fmap.mapcontext.rendering.symbol.marker.impl.SimpleMarkerSymbol;
126
import org.gvsig.symbology.fmap.mapcontext.rendering.symbol.style.IMarkerFillPropertiesStyle;
127
import org.gvsig.symbology.fmap.rendering.GraduatedSymbolsLegend;
128

  
129

  
130
/**
131
 * Implements the interface that shows the information of a legend which
132
 * draws quantities using symbol size to show relative values.
133
 *
134
 * @author Pepe Vidal Salvador - jose.vidal.salvador@iver.es
135
 *
136
 */
137

  
138
public class GraduatedSymbolsPanel extends VectorialInterval implements ILegendPanel {
139

  
140
    private static Logger logger = LoggerFactory.getLogger(GraduatedSymbolsPanel.class);
141

  
142
	private static final long serialVersionUID = -263195536343912694L;
143
	static final double DEFAULT_SYMBOL_MAX_SIZE = 7;
144
	private static final double DEFAULT_SYMBOL_MIN_SIZE = 1;
145
	private JNumberSpinner txtMinSize;
146
	private JNumberSpinner txtMaxSize;
147
	private JSymbolPreviewButton btnTemplate;
148
	private JSymbolPreviewButton btnBackground;
149
	private int shapeType;
150
	private GridBagLayoutPanel aux;
151
	private int templateShapeType = 0 ;
152
	private boolean showBackground = true;
153

  
154
	public GraduatedSymbolsPanel() {
155
		super();
156
		this.showBackground = true;
157
	}
158

  
159
	public GraduatedSymbolsPanel(boolean showBackground) {
160
		super();
161
		this.showBackground = showBackground;
162
	}
163

  
164
	@Override
165
	public JPanel getOptionPanel() {
166

  
167
		if (optionPanel == null) {
168
			optionPanel = new JPanel(new FlowLayout(FlowLayout.LEADING));
169
			optionPanel.setBorder(BorderFactory.
170
					createTitledBorder(null,
171
					    Messages.getText("symbol")));
172

  
173
			aux = new GridBagLayoutPanel();
174
			aux.addComponent(new JLabel(Messages.getText("size")));
175
			aux.addComponent(Messages.getText("from")+":",
176
					getTxtMinSize());
177
			aux.addComponent(Messages.getText("to")+":",
178
					getTxtMaxSize());
179
			aux.addComponent(Messages.getText("template"), getBtnTemplate());
180
			optionPanel.add(aux);
181

  
182
		}
183
		return optionPanel;
184
	}
185

  
186
	/**
187
	 * Adds the button that allows the user to select a background for the graduated symbol.
188
	 */
189
	private void getBackgroundPanel() {
190
		aux.addComponent(Messages.getText("background"), getBtnBackground());
191
	}
192
	/**
193
	 * Creates the JSymbolPreviewButton for the background of the graduated symbol.
194
	 */
195
	private JSymbolPreviewButton getBtnBackground() {
196
		if (btnBackground == null) {
197
			btnBackground = new JSymbolPreviewButton(Geometry.TYPES.SURFACE);
198
			btnBackground.setPreferredSize(new Dimension(100, 35));
199

  
200
			ISymbol fillsym = MapContextLocator.getSymbolManager().createSymbol(
201
			    Geometry.TYPES.SURFACE, Color.ORANGE);
202
			btnBackground.setSymbol(fillsym);
203
		}
204
		return btnBackground;
205
	}
206
	/**
207
	 * Creates the JSymbolPreviewButton for the graduated symbol.
208
	 */
209
	private JSymbolPreviewButton getBtnTemplate() {
210
		if (btnTemplate == null) {
211
			templateShapeType =
212
			    GraduatedSymbolsLegend.isPolygonal(shapeType) ?
213
			        Geometry.TYPES.POINT : shapeType;
214
			btnTemplate = new JSymbolPreviewButton(templateShapeType);
215
			btnTemplate.setPreferredSize(new Dimension(100, 35));
216

  
217
		}
218
		return btnTemplate;
219
	}
220
	/**
221
	 * Creates the JIncrementalNumberField which is used to specify the maximum size of the
222
	 * graduated symbol
223
	 */
224
	private JNumberSpinner getTxtMaxSize() {
225
		if (txtMaxSize == null) {
226
			txtMaxSize = new JNumberSpinner(25.0,7,0.0,100.0,1.0,2);
227

  
228
		}
229
		return txtMaxSize;
230
	}
231
	/**
232
	 * Creates the JIncrementalNumberField which is used to specify the minimum size of the
233
	 * graduated symbol
234
	 */
235
	private JNumberSpinner getTxtMinSize() {
236
		if (txtMinSize == null) {
237
			txtMinSize = new JNumberSpinner(3.0,7,0.0,100.0,1.0,2);
238
		}
239
		return txtMinSize;
240
	}
241

  
242
	@Override
243
	public void setData(FLayer lyr, ILegend legend) {
244
		this.layer = (FLyrVect) lyr;
245

  
246
		try {
247
            shapeType = this.layer.getGeometryType().getType();
248
        } catch (ReadException e) {
249
            logger.info("Unable to get shapetype while setting data", e);
250
            ApplicationLocator.getManager().messageDialog(
251
                Messages.getText("_Unable_to_set_legend"),
252
                Messages.getText("error"),
253
                JOptionPane.ERROR_MESSAGE);
254
        }
255

  
256
        templateShapeType =
257
            GraduatedSymbolsLegend.isPolygonal(shapeType) ?
258
                Geometry.TYPES.POINT : shapeType;
259

  
260
		getBtnTemplate().setShapeType(templateShapeType);
261
		if(showBackground){
262
			if(GraduatedSymbolsLegend.isPolygonal(shapeType) && btnBackground == null) {
263
				getBackgroundPanel();
264
				getBtnBackground().setShapeType(Geometry.TYPES.SURFACE);
265
			}
266
		}
267

  
268
		if (symbolTable != null)
269
			pnlCenter.remove(symbolTable);
270

  
271
		getDefaultSymbolPrev(templateShapeType);
272

  
273
		symbolTable = new SymbolTable(
274
		    this, SymbolTable.INTERVALS_TYPE, templateShapeType);
275
		pnlCenter.add(symbolTable);
276

  
277
		fillFieldNames();
278

  
279
		if (legend instanceof GraduatedSymbolsLegend) {
280
            auxLegend = (GraduatedSymbolsLegend) legend.cloneLegend();
281

  
282
			getChkDefaultvalues().setSelected(auxLegend.isUseDefaultSymbol());
283
			cmbField.setSelectedItem(auxLegend.getClassifyingFieldNames()[0]);
284

  
285
			fillTableSkipDefault(auxLegend);
286

  
287
			getTxtMaxSize().setDouble(((GraduatedSymbolsLegend) auxLegend).getMaxSymbolSize());
288
			getTxtMinSize().setDouble(((GraduatedSymbolsLegend) auxLegend).getMinSymbolSize());
289
			if (auxLegend.getSymbols().length > 0){
290
				getBtnTemplate().setSymbol(((GraduatedSymbolsLegend) auxLegend).getSymbols()[auxLegend.getSymbols().length-1]);
291
			} else {
292
				getBtnTemplate().setSymbol(newSymbol(shapeType,
293
				    GraduatedSymbolsLegend.isLinear(shapeType) ? 3 : 10));
294
			}
295
			if(showBackground){
296

  
297
				if (GraduatedSymbolsLegend.isPolygonal(shapeType))
298
					getBtnBackground().setSymbol(((GraduatedSymbolsLegend) auxLegend).getBackgroundSymbol());
299
			}
300
			if (auxLegend.isUseDefaultSymbol())
301
				txtNumIntervals.setText(String.valueOf(auxLegend.getSymbols().length - 1));
302
			else
303
				txtNumIntervals.setText(String.valueOf(auxLegend.getSymbols().length));
304

  
305
		} else {
306
			// Si la capa viene con otro tipo de leyenda, creamos
307
			// una nueva del tipo que maneja este panel
308
			auxLegend = new GraduatedSymbolsLegend();
309
			getTxtMaxSize().setDouble(DEFAULT_SYMBOL_MAX_SIZE);
310
			getTxtMinSize().setDouble(DEFAULT_SYMBOL_MIN_SIZE);
311
			auxLegend.setDefaultSymbol(newSymbol(shapeType,
312
			    GraduatedSymbolsLegend.isLinear(shapeType) ? 3 : 10));
313
			getBtnTemplate().setSymbol(auxLegend.getDefaultSymbol());
314
			((GraduatedSymbolsLegend) auxLegend).setTemplateShapeType(templateShapeType);
315

  
316
		}
317
		cmbIntervalType.setSelectedIndex(auxLegend.getIntervalType());
318
		defaultSymbolPrev.setSymbol(auxLegend.getDefaultSymbol());
319
	}
320

  
321

  
322
	@Override
323
	public String getDescription() {
324
		return Messages.getText(
325
		    "draw_quantities_using_symbol_size_to_show_relative_values");
326
	}
327

  
328
	@Override
329
	public ILegend getLegend() {
330

  
331
	    GraduatedSymbolsLegend gsl =
332
		    new GraduatedSymbolsLegend((VectorialIntervalLegend) super.getLegend());
333

  
334
		double minSize = getTxtMinSize().getDouble();
335
		gsl.setMinSymbolSize(minSize);
336
		gsl.setMaxSymbolSize(getTxtMaxSize().getDouble());
337

  
338
        try {
339
            gsl.setShapeType(layer.getGeometryType().getType());
340
        } catch (ReadException e) {
341

  
342
            logger.info("Unable to get shapetype while getting legend", e);
343
            ApplicationLocator.getManager().messageDialog(
344
                Messages.getText("_Unable_to_get_legend"),
345
                Messages.getText("error"),
346
                JOptionPane.ERROR_MESSAGE);
347
        }
348

  
349
		ISymbol sym = getBtnTemplate().getSymbol();
350

  
351
		if (sym != null){
352
			gsl.setTemplateShapeType(sym.getSymbolType());
353
			gsl.setDefaultSymbol(sym);
354
		} else {
355
			gsl.setTemplateShapeType(templateShapeType);
356
		}
357

  
358
		gsl.useDefaultSymbol(getChkDefaultvalues().isSelected());
359
		if(defaultSymbolPrev.getSymbol() != null)
360
			gsl.setDefaultSymbol(defaultSymbolPrev.getSymbol());
361

  
362
		if (this.showBackground){
363

  
364
			if (GraduatedSymbolsLegend.isPolygonal(shapeType))
365
				gsl.setBackgroundSymbol(btnBackground.getSymbol());
366
		}
367

  
368
		return gsl;
369
	}
370

  
371
	@Override
372
	public ImageIcon getIcon() {
373
	    return
374
	        IconThemeHelper.getImageIcon("legend-overview-graduated-symbols");
375
	}
376

  
377
	@Override
378
	public Class getParentClass() {
379
		return Quantities.class;
380
	}
381

  
382
	@Override
383
	public String getTitle() {
384
		return Messages.getText("graduated_symbols");
385
	}
386

  
387
	@Override
388
	public JPanel getPanel() {
389
		return this;
390
	}
391

  
392
	@Override
393
	public Class getLegendClass() {
394
		return GraduatedSymbolsLegend.class;
395
	}
396

  
397
	@Override
398
	public boolean isSuitableFor(FLayer layer) {
399
		if ( super.isSuitableFor(layer)) {
400
			FLyrVect lVect = (FLyrVect) layer;
401
            try {
402
                return lVect.getGeometryType().getType()
403
                    != Geometry.TYPES.GEOMETRY;
404
            } catch (ReadException e) {
405

  
406
                ApplicationLocator.getManager().message(
407
                    Messages.getText("error_trying_to_access_to_the_layer"),
408
                    JOptionPane.ERROR_MESSAGE);
409
                return false;
410
            }
411
		}
412
		return false;
413
	}
414

  
415
	private ISymbol newSymbol(int st, double size) {
416
		if (getBtnTemplate().getSymbol() == null) {
417
			ISymbol templateSymbol;
418
            
419
            if (GraduatedSymbolsLegend.isLinear(st)) {
420
                templateSymbol = new SimpleLineSymbol();
421
                ((SimpleLineSymbol) templateSymbol).setLineWidth(size);
422
                ((SimpleLineSymbol) templateSymbol).setLineColor(Color.DARK_GRAY);
423

  
424
            } else {
425
                templateSymbol = new SimpleMarkerSymbol();
426
                ((SimpleMarkerSymbol) templateSymbol).setSize(size);
427
                ((SimpleMarkerSymbol) templateSymbol).setColor(Color.DARK_GRAY);
428
                
429
			}
430
			getBtnTemplate().setSymbol(templateSymbol);
431
			return newSymbol(st, size);
432
		} else {
433
			// clone symbol
434
			ISymbol mySymbol = null;
435

  
436
			try {
437
                mySymbol = (ISymbol) getBtnTemplate().getSymbol().clone();
438
            } catch (CloneNotSupportedException e) {
439

  
440
                ApplicationLocator.getManager().message(
441
                    Messages.getText("_Unable_to_get_symbol"),
442
                    JOptionPane.ERROR_MESSAGE);
443
                logger.info("Error: Could not clone symbol", e);
444
            }
445

  
446
			if (mySymbol instanceof ILineSymbol) {
447
				ILineSymbol lSym = (ILineSymbol) mySymbol;
448
				lSym.setLineWidth(size);
449
			}
450

  
451
			if (mySymbol instanceof IMarkerSymbol) {
452
				IMarkerSymbol mSym = (IMarkerSymbol) mySymbol;
453
				mSym.setSize(size);
454
				if (GraduatedSymbolsLegend.isPolygonal(st)) {
455
					// this is to allow using in Polygon layers
456
					MarkerFillSymbol fillSymbol = new MarkerFillSymbol();
457
					fillSymbol.setOutline(null);
458
					fillSymbol.setFillColor(null);
459
					fillSymbol.getMarkerFillProperties().
460
					setFillStyle(IMarkerFillPropertiesStyle.
461
					    SINGLE_CENTERED_SYMBOL);
462
					fillSymbol.setMarker(mSym);
463
				}
464
			}
465
			return mySymbol;
466
		}
467
	}
468

  
469
	@Override
470
	protected void fillTableValues() {
471

  
472
		symbolTable.removeAllItems();
473

  
474
		try {
475
		    IInterval[] arrayIntervalos = calculateIntervals();
476
			if (arrayIntervalos == null)
477
				return;
478

  
479
			IInterval interval;
480
			NumberFormat.getInstance().setMaximumFractionDigits(2);
481
			auxLegend.clear();
482

  
483
			float minSize = (float) getTxtMinSize().getDouble();
484
			float maxSize = (float) getTxtMaxSize().getDouble();
485
			ISymbol theSymbol;
486

  
487
			this.shapeType = layer.getGeometryType().getType();
488

  
489
			if (GraduatedSymbolsLegend.isPolygonal(this.shapeType)) {
490
			    this.templateShapeType = Geometry.TYPES.POINT;
491
			}
492

  
493
			MapContextManager mcm =
494
			    MapContextLocator.getMapContextManager();
495
			auxLegend = (IVectorialIntervalLegend)
496
			    mcm.createLegend(
497
			    IVectorialIntervalLegend.LEGEND_NAME);
498
			auxLegend.setShapeType(this.shapeType);
499
			auxLegend.setIntervalType(this.cmbIntervalType.getSelectedIndex());
500

  
501
			if (chkdefaultvalues.isSelected()) {
502
				auxLegend.getDefaultSymbol().setDescription("Default");
503
				auxLegend.addSymbol("Default",
504
				    mcm.getSymbolManager().createSymbol(
505
				        this.templateShapeType));
506
			}
507

  
508
			int symbolType;
509
			symbolType = layer.getGeometryType().getType();
510
			int numSymbols = 0;
511

  
512
			double step = (maxSize - minSize) / arrayIntervalos.length;
513
			double size = minSize;
514
			for (int k = 0; k < arrayIntervalos.length; k++) {
515
				interval = arrayIntervalos[k];
516
				theSymbol = newSymbol(symbolType, size);
517

  
518
				auxLegend.addSymbol(interval, theSymbol);
519
				numSymbols++;
520

  
521
				if (numSymbols > 100) {
522
					int resp = JOptionPane.showConfirmDialog(this,
523
					    Messages.getText("mas_de_100_simbolos"),
524
					    Messages.getText("quiere_continuar"),
525
					    JOptionPane.YES_NO_OPTION,
526
					    JOptionPane.WARNING_MESSAGE);
527

  
528
					if ((resp == JOptionPane.NO_OPTION) ||
529
							(resp == JOptionPane.DEFAULT_OPTION)) {
530
						return;
531
					}
532
				}
533

  
534

  
535
				theSymbol.setDescription(NumberFormat.getInstance().format(interval.getMin()) +
536
						" - " +
537
						NumberFormat.getInstance().format(interval.getMax()));
538

  
539
				size = size + step;
540
			} // for
541

  
542
			fillTableSkipDefault(auxLegend);
543

  
544
		} catch (ReadException re) {
545
		    logger.info("Error could_not_get_shape_type", re);
546
            ApplicationLocator.getManager().messageDialog(
547
                Messages.getText("could_not_get_shape_type"),
548
                Messages.getText("error"),
549
                JOptionPane.ERROR_MESSAGE);
550

  
551
		} catch (LegendLayerException lle) {
552
            logger.info("Error failed_computing_intervals", lle);
553
            ApplicationLocator.getManager().messageDialog(
554
                Messages.getText("failed_computing_intervals"),
555
                Messages.getText("error"),
556
                JOptionPane.ERROR_MESSAGE);
557
		}
558

  
559
		bDelAll.setEnabled(true);
560
		bDel.setEnabled(true);
561

  
562
	}
563

  
564
	public void setShowBackground(boolean sb){
565
		this.showBackground = sb;
566
	}
567

  
568
	public boolean getShowBackground(){
569
		return this.showBackground;
570
	}
571

  
572
    private void fillTableSkipDefault(IVectorialIntervalLegend leg) {
573

  
574
        Object[] src_expr = leg.getValues();
575
        ISymbol[] src_syms = leg.getSymbols();
576
        String[] src_descs = leg.getDescriptions();
577

  
578
        List syms = new ArrayList();
579
        List vals = new ArrayList();
580
        List descs = new ArrayList();
581
        for (int i=0; i<src_expr.length; i++) {
582
            if (src_expr[i] instanceof IInterval) {
583
                syms.add(src_syms[i]);
584
                vals.add(src_expr[i]);
585
                descs.add(src_descs[i]);
586
            }
587
        }
588
        symbolTable.fillTableFromSymbolList(
589
            (ISymbol[]) syms.toArray(new ISymbol[0]),
590
            (Object[]) vals.toArray(new Object[0]),
591
            (String[]) descs.toArray(new String[0]));
592
    }
593

  
594

  
595

  
596

  
597
}  //  @jve:decl-index=0:visual-constraint="10,10"
org.gvsig.legend.graduatedsymbols.app.mainplugin/tags/org.gvsig.legend.graduatedsymbols.app.mainplugin-1.0.152/src/main/java/org/gvsig/symbology/library/GraduatedSymbolsLibrary.java
1
/* gvSIG. Desktop Geographic Information System.
2
 *
3
 * Copyright ? 2007-2013 gvSIG Association
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18
 * MA  02110-1301, USA.
19
 *
20
 * For any additional information, do not hesitate to contact us
21
 * at info AT gvsig.com, or visit our website www.gvsig.com.
22
 */
23
package org.gvsig.symbology.library;
24

  
25
import org.gvsig.andami.IconThemeHelper;
26
import org.gvsig.app.project.documents.view.legend.gui.LegendManager;
27
import org.gvsig.symbology.SymbologyLibrary;
28
import org.gvsig.symbology.fmap.rendering.GraduatedSymbolsLegend;
29
import org.gvsig.symbology.gui.layerproperties.GraduatedSymbolsPanel;
30
import org.gvsig.tools.library.AbstractLibrary;
31
import org.gvsig.tools.library.LibraryException;
32
import org.gvsig.tools.persistence.xml.XMLPersistenceLibrary;
33
import org.gvsig.tools.util.Caller;
34
import org.gvsig.tools.util.impl.DefaultCaller;
35

  
36

  
37
/**
38
 * Simple library to register graduated symbols legend
39
 * 
40
 * @author jldominguez
41
 *
42
 */
43
public class GraduatedSymbolsLibrary extends AbstractLibrary {
44

  
45

  
46
    public void doRegistration() {
47
        registerAsImplementationOf(GraduatedSymbolsLibrary.class);
48
        /*
49
         * This checks map context library registration
50
         */
51
        require(SymbologyLibrary.class);
52
        /*
53
         * This is because we need to use persistence manager
54
         */
55
        require(XMLPersistenceLibrary.class);
56
    }
57

  
58
    protected void doInitialize() throws LibraryException {
59
        
60
    }
61

  
62

  
63
    protected void doPostInitialize() throws LibraryException {
64
        
65
        IconThemeHelper.registerIcon(
66
            "legend", "legend-overview-graduated-symbols", this);
67

  
68
        Caller caller = new DefaultCaller();
69
        
70
        caller.add(new GraduatedSymbolsLegend.RegisterLegend());
71
        caller.add(new GraduatedSymbolsLegend.RegisterPersistence());
72
        
73
        /*
74
         * Do register of all
75
         */
76
        if( !caller.call() ) {
77
            throw new LibraryException(
78
                GraduatedSymbolsLibrary.class,
79
                caller.getExceptions());
80
        }
81
        
82
        LegendManager.addLegendPage(GraduatedSymbolsPanel.class);
83
    }
84

  
85
}
org.gvsig.legend.graduatedsymbols.app.mainplugin/tags/org.gvsig.legend.graduatedsymbols.app.mainplugin-1.0.152/src/main/resources-plugin/i18n/text.properties
1
#Translations for language [es]
2
#Mon Sep 21 10:02:12 CEST 2009
3
a_default_symbol_will_be_used=Ser\u00e1 utilizado un s\u00edmbolo por defecto
4
above=Arriba
5
accept=Aceptar
6
accessing_file_structure=Accediendo a la estructura del fichero
7
add=A\u00f1adir
8
add_class=A\u00f1adir clase
9
add_expression=A\u00f1adir Expresi\u00f3n
10
add_field=A\u00f1adir campo
11
add_operator=A\u00f1adir Operador
12
add_text_area=A\u00f1adir campo de texto
13
all_features=Todos los elementos
14
all_supported_background_image_formats=Todos los formatos de imagen de fondo soportados
15
allow_label_overlapping=Permitir superposici\u00f3n de las etiquetas
16
always_circular=
17
always_horizontal=Siempre horizontal
18
always_straight=Siempre recto
19
angle=\u00c1ngulo
20
anticlockwise=
21
apply_visual_correction_to_glyph_for_precise_size_and_position=Aplicar correcci\u00f3n visual al car\u00e1cter para precisi\u00f3n en tama\u00f1o y posici\u00f3n.
22
arguments_added_to_a_costant=Argumento a\u00f1adido a una constante
23
at_begin=Al principio
24
at_best=En la mejor
25
at_end=Al final
26
at_field=en el campo
27
at_fields=en los campos
28
background=Fondo
29
background_color=Color de fondo
30
background_style=Estilo de fondo
31
barchar3d_legend=
32
barchar3d_legend_desc=
33
barchart_3D=
34
below=Abajo
35
bitmap_and_svg_image_files=Im\u00e1genes SVG y de mapa de bits
36
boolean_value=Valor booleano
37
browse=Examinar
38
buffered=Forma del pol\u00edgono
39
cancel=Cancelar
40
cannot_apply_to_a_non_polygon_layer=No puede aplicarse a una capa no poligonal
41
cannot_be_null=No puede ser nulo
42
cannot_exist_two_label_classes_with_the_same_name=No pueden existir dos etiquetas con el mismo nombre
43
cannot_install_labeling_method=No se puede instalar el m\u00e9todo de etiquetado
44
cant_draw_preview=No se puede dibujar la previsualizaci\u00f3n
45
Capa=Capa
46
change_location=Cambiar ubicaci\u00f3n
47
character_marker=Marcador de car\u00e1cter
48
character_marker_symbol=S\u00edmbolo de Marcador de car\u00e1cter
49
choose_marker=Seleccionar marcador
50
circular=Circular
51
class=Clase
52
classes=Clases
53
classifying_field_name_not_found=Campo de clasificaci\u00f3n no encontrado
54
clear=Limpiar
55
color=Color\:
56
color_field=Campo de colores
57
color_ramp=Rampa de color
58
confirmation_dialog=Di\u00e1logo de confirmaci\u00f3n
59
constant=constante
60
correct_expression=Expresion correcta
61
could_not_get_shape_type=No se pudo obtener el tipo de geometr\u00eda.
62
could_not_restore_color_field=No se pudo recuperar el campo para el color del texto.
63
could_not_restore_rotation_field=No se pudo recuperar el campo para la rotaci\u00f3n del texto.
64
could_not_restore_text_field=No se pudo recuperar el campo del texto.
65
could_not_restore_text_height_field=No se pudo recuperar el campo para la altura del texto.
66
could_not_retreive_layer_field_names=
67
could_not_setup_legend=No se puede cargar la leyenda
68
date_value=Valor fecha
69
default=Por defecto
70
define_classes_of_features_and_label_each_differently=Definir diferentes clases de entidades y etiquetarlas de manera diferente
71
Defines_a_dot_density_symbol_based_on_a_field_value=Define una leyenda de densidad de puntos basada en el valor de un determinado campo.
72
delete=Eliminar
73
delete_class=Eliminar clase
74
delete_filter_expression=Eliminar expresi\u00f3n de filtrado
75
densities=Densidades
76
depth_factor=
77
description=Descripci\u00f3n
78
divided_by_0=Divisi\u00f3n por 0
79
dont_show_labels_when_zoomed=No mostrar las etiquetas cuando se haga zoom
80
dot_density=Densidad de puntos
81
dot_size=Tama\u00f1o de punto
82
dot_value=Valor del punto
83
draw_quantities_for_each_category=Representa cantidades para cada categor\u00eda.
84
draw_quantities_using_symbol_size_to_show_exact_values=Representa cantidades a trav\u00e9s del tama\u00f1o del s\u00edmbolo mostrando valores exactos
85
draw_quantities_using_symbol_size_to_show_relative_values=Representa cantidades mediante el tama\u00f1o de un s\u00edmbolo mostrando valores relativos.
86
duplicate_labels=Etiquetas repetidas
87
edit_expression=Editar expresi\u00f3n
88
enable_labeling=Habilitar etiquetado
89
Enable_layer_preview=Activar previsualizaci\u00f3n de capa
90
enter_new_name=Introduzca el nuevo nombre
91
error=Error
92
error\ accessing\ to\ the\ layer=
93
error_coding_filter_query=Error codificando la consulta SQL
94
error_trying_to_access_to_the_layer=Error intentando acceder a la capa
95
error_validating_filter_query=Error validando la consulta SQL
96
Etiquetados=Etiquetados
97
expression=Expresi\u00f3n
98
expression_creator=Crear expresi\u00f3n de filtrado
99
expressions=Expresiones
100
failed_acessing_files=
101
failed_applying_following_line_will_use_default_confg=Fallo aplicando el etiquetado siguiendo la l\u00ednea. Se utilizar\u00e1 la configuraci\u00f3n por defecto
102
failed_computing_intervals=Fallo calculando intervalos
103
false=Falso
104
features=Objetos
105
field_number=N\u00famero de campo
106
field_to_be_labeled=Campo a etiquetar
107
fields=Campos
108
fields_exp=Campos
109
fill_color=Color de relleno
110
fill_properties=Propiedades de relleno
111
filter=Filtro
112
filtered_features=Elementos filtrados
113
fit_inside_polygon=Acoplar dentro del pol\u00edgono
114
fit_on_text_area=Ajustar al area de texto
115
fixed_color=Color fijo
116
fixed_height=Tama\u00f1o fijo
117
fixed_text_size=Tama\u00f1o fijo del texto
118
following_line=Siguiendo la l\u00ednea
119
font=Fuente
120
foreground_alpha=
121
format=Formato
122
from=Desde
123
fuente=Fuente
124
general=General
125
GeneralLabeling.sample_text=
126
generating_intervals=Generando Intervalos
127
getting_layer_shape_type=Obteniendo el tipo de shape
128
gradient_color=Color gradiente
129
gradient_fill=Relleno gradiente
130
gradient_fill_symbol=S\u00edmbolo de relleno gradiente
131
graduated_symbols=S\u00edmbolos graduados
132
grid=Malla
133
high=Alta
134
horizontal=Horizontal
135
ignore_zero_values=
136
in_beyond=Por debajo de
137
in_layer=en capa
138
in_the_middle=En mitad
139
in_the_world=en el mundo
140
incompatible_types_to_calculate_the_normalization=
141
incorrect_expression=Expresi\u00f3n incorrecta
142
intervals=Intervalos
143
invalid_filter_expression=
144
invalid_url=Localizador de servidor WFS con formato no v\u00e1lido.
145
it_will_not_be_added=No ser\u00e1 a\u00f1adida
146
label-point-priority-help=Prioridad\: 0 \= Bloqueado, 1 \= M\u00e1s alta, 3 \= M\u00e1s baja
147
label_attributes_defined_in_table=Atributos de la etiqueta definidos en tabla
148
label_class_properties=Propiedades de la clase de etiquetado
149
label_expression=Expresi\u00f3n de etiquetado
150
label_expression_editor=Editor de expresiones de etiqueta
151
label_expression_help=
152
label_features_in_the_same_way=Etiquetar todas las entidades de la misma manera
153
label_features_in_this_class=Etiquetar entidades dentro de esta clase
154
label_only_when_selected=Etiquetar solamente cuando sus entidades est\u00e9n seleccionadas
155
label_priority=Prioridad en el etiquetado
156
label_style_could_not_be_painted=
157
label_styles=Estilos de etiqueta
158
labeled_point=
159
labeling=Etiquetado
160
labeling_field=Campo de etiquetado
161
layer_name=Nombre de la capa
162
layer_Selector=Selector de capa
163
line=L\u00ednea
164
line_fill=Relleno l\u00edneas
165
line_fill_symbol=S\u00edmbolo de relleno de l\u00edneas
166
line_settings=Configuraci\u00f3n de l\u00ednea
167
lineal=Lineal
168
lines=L\u00edneas
169
location=Ubicaci\u00f3n
170
location_along_the_lines=Ubicaci\u00f3n a lo largo de las l\u00edneas
171
looks_like_too_low_value_for_this_field_may_cause_system_to_run_slow=Parece un valor para el punto demasiado bajo, puede causar que el sistema responda muy lentamente.
172
low=Baja
173
malformed_or_empty_expression=Expresi\u00f3n vac\u00eda o err\u00f3nea
174
marker_fill=Relleno de marcadores
175
marker_fill_symbol=S\u00edmbolo de Relleno de marcadores
176
marker_line=L\u00ednea de marcadores
177
marker_line_symbol=S\u00edmbolo de L\u00ednea de marcadores
178
mas_de_100_simbolos=M\u00e1s 100 de s\u00edmbolos no suelen aportar informaci\u00f3n en un plano.
179
max_scale=Escala m\u00e1x
180
medium=Media
181
method=Operaci\u00f3n
182
min_scale=Escala m\u00edn
183
minimum_angle_to_draw=
184
modify_filter_expression=Modificar expresi\u00f3n de filtrado
185
move_down=Bajar
186
move_up=Subir
187
name=Nombre
188
names_and_types_count_are_disctint=N\u00famero de campos y n\u00famero de tipos de campo distintos
189
new_filter_expression=Nueva expresi\u00f3n de filtrado
190
no=No
191
no_expression_defined=Expresion no definida
192
no_style=Sin estilo
193
no_symbol_especified=S\u00edmbolo no especificado
194
none=None
195
normalization=Normalizaci\u00f3n
196
not_save_empty_legend=Leyenda vac\u00eda no se guardar\u00e1.
197
numeric_or_boolean_value=valor num\u00e9rico o boolean
198
numeric_value=Valor num\u00e9rico
199
offset=Desplazamiento
200
offset_label=Desplazar etiqueta
201
offset_labels_horizontally=Desplazar etiquetas horizontalmente alrededor del punto.
202
offset_labels_on_top_of_the_points=Situar etiquetas sobre los puntos.
203
on_the_line=Sobre la l\u00ednea
204
operand=operando
205
operation_not_allowed_for_SingleLabelingStrategy=Operaci\u00f3n no permitida para la estrategia de etiquetado simple
206
operators=Operadores
207
options=Opciones
208
orientation=Orientaci\u00f3n
209
orientation_system=Orientaci\u00f3n
210
out_beyond=Por encima de
211
outline=Borde
212
outline_opacity=Opacidad del borde
213
outline_width=Ancho del borde
214
page=P\u00e1gina
215
parallel=Paralela
216
pattern=Patr\u00f3n
217
percentage=Porcentaje
218
perpedicular=Perpendicular
219
picture_file=Fichero imagen
220
picture_fill=Relleno de imagen
221
picture_fill_symbol=S\u00edmbolo de Relleno de imagen
222
picture_line_symbol=S\u00edmbolo de L\u00ednea de imagen
223
picture_marker=Marcador de imagen
224
picture_marker_symbol=S\u00edmbolo de marcador de imagen
225
pie_properties=
226
piechart_3D=
227
piechart_3D_legend_desc=
228
place_one_label_per_feature=Situar \u00fanicamente una etiqueta por entidad
229
place_one_label_per_feature_part=Situar una etiqueta por cada parte de la entidad
230
placement=Colocaci\u00f3n
231
placement_priorities_selector=Selector de prioridades de colocaci\u00f3n
232
placement_properties=Propiedades de colocaci\u00f3n
233
point_settings=Configuraci\u00f3n de punto
234
points=Puntos
235
polygon=Pol\u00edgono
236
polygon_settings=Configuraci\u00f3n de pol\u00edgono
237
position=Posici\u00f3n
238
prefer_top_right_all_allowed=Preferiblemente arriba a la derecha, pero permitiendo cualquier posici\u00f3n
239
preview=Previsualizaci\u00f3n
240
preview_not_available=Vista previa no disponible
241
properties=Propiedades
242
proportional_symbols=S\u00edmbolos proporcionales
243
quantity_by_category=Cantidades por categor\u00eda
244
quiere_continuar=\u00bfEst\u00e1 seguro de que quiere continuar?
245
Quitar=Quitar
246
Quitar_todos=Quitar todos
247
random=Aleatorio
248
recovering_recordset=Recuperando recordset.
249
rectangular=Rectangular
250
remane_class=Renombrar clase
251
remove=Quitar
252
remove_duplicate_labels=Eliminar etiquetas repetidas
253
resto_valores=Resto de valores
254
rotation_height=Rotaci\u00f3n
255
scale=Escalar
256
scale_range_window_title=Rango de escalas
257
select=Seleccionar
258
select_one_row=Selecciona una fila
259
selection_picture_file=Imagen de selecci\u00f3n
260
separation=Separaci\u00f3n
261
set_forbidden_precedence=Establecer precedencia nula
262
set_high_precedence=Establecer m\u00e1xima precedencia
263
set_low_precedence=Establecer baja precedencia
264
set_normal_precedence=Establecer precedencia normal
265
shows_the_elements_of_the_layer_depending_on_the_value_of_a_filter_expression=Muestra los elementos de la capa en funci\u00f3n de una determinada expresi\u00f3n de filtrado
266
simple_marker=Marcador simple
267
single_labeling=Etiquetado simple
268
single_labeling_setup=Configuraci\u00f3n del etiquetado simple
269
size=Tama\u00f1o
270
SLD_grammar=Gram\u00e1tica SLD
271
some_arguments_are_incorrect=Algunos argumentos son incorrectos
272
specify_the_range_of_scales_at_which_labels_will_be_shown=Especificar el rango de escalas en el que las etiquetas ser\u00e1n mostradas
273
SQL_query=Sentencia SQL
274
statistics=Estad\u00edsticas
275
string_value=Valor String
276
style=Estilo
277
style_selector=Selector de estilos
278
symbol=S\u00edmbolo
279
symbol_field=Campo de s\u00edmbolo graduado
280
symbol_shapetype_mismatch=
281
syntax_error=Error de sintaxis
282
template=Plantilla
283
text=Texto
284
text_field=Texto
285
text_fields=Campos de texto
286
text_height_field=Altura del texto
287
text_string=Texto
288
text_symbol=S\u00edmbolo de texto
289
the\ size\ for\ the\ symbol\ is\ equal\ to\ NaN\ =
290
the_number_or_arguments_is_incorrect=El n\u00famero de argumentos no es correcto
291
the_result_is_not_a_boolean_value=El resultado no es un boolean
292
to=Hasta
293
Tools_Select=Selecci\u00f3n de herramientas
294
true=Verdadero
295
units=Unidades
296
URL=
297
use_default_symbol=S\u00edmbolo por defecto
298
use_outline=Usar borde
299
use_the_same_scale_range_as_the_feature_layer=Usar el mismo rango de escalas que el elemento de la capa
300
user_defined_labels=Etiquetas definidas por el usuario
301
usupported_layer_type=Tipo de capa no soportado
302
value=Valor
303
value_fields=Campos de valores
304
variation_by=Variaci\u00f3n por
305
verify=Verificar
306
visible=Visible
307
visualization=Visualizaci\u00f3n
308
warning=Aviso
309
width=Ancho
310
x_offset=Desplazamiento en X
311
y_offset=Desplazamiento en Y
312
yes=Si
313
_Unable_to_clone_symbol=No se pudo clonar s?mbolo
314
_Error_while_getting_fields=Error obteniendo campos
315
_Unable_to_set_legend=No se pudo asociar leyenda
316
_Unable_to_get_legend=No se pudo crear leyenda
317
_Unable_to_get_symbol=No se pudo crear s?mbolo
318

  
319

  
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff