Revision 1074

View differences:

org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.103/org.gvsig.gpe.exportto/pom.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
  <modelVersion>4.0.0</modelVersion>
4
  <artifactId>org.gvsig.gpe.exportto</artifactId>
5
  <packaging>pom</packaging>
6

  
7
  
8
  <parent>
9
      <groupId>org.gvsig</groupId>
10
      <artifactId>org.gvsig.gpe</artifactId>
11
      <version>2.1.103</version>
12
  </parent>
13
  
14

  
15
  <modules>
16
    <module>org.gvsig.gpe.exportto.kml</module>  
17
    <module>org.gvsig.gpe.exportto.generic</module>  
18
  </modules>
19
</project>
20

  
21

  
22

  
23

  
24

  
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.103/org.gvsig.gpe.exportto/org.gvsig.gpe.exportto.generic/pom.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
  <modelVersion>4.0.0</modelVersion>
4
  <artifactId>org.gvsig.gpe.exportto.generic</artifactId>
5
  <packaging>jar</packaging>
6
  <name>${project.artifactId}</name>
7
  
8
  <parent>
9
    <groupId>org.gvsig</groupId>
10
    <artifactId>org.gvsig.gpe.exportto</artifactId>
11
    <version>2.1.103</version>
12
  </parent>
13

  
14
  <dependencies>
15
  
16
    <dependency>
17
      <groupId>org.gvsig</groupId>
18
      <artifactId>org.gvsig.gpe.lib.api</artifactId>
19
      <scope>compile</scope>
20
    </dependency>
21
    
22
    <dependency>
23
        <groupId>org.gvsig</groupId>
24
        <artifactId>org.gvsig.tools.lib</artifactId>
25
        <scope>compile</scope>
26
    </dependency>
27

  
28
    <dependency>
29
        <groupId>org.gvsig</groupId>
30
        <artifactId>org.gvsig.fmap.geometry.api</artifactId>    
31
        <scope>compile</scope>        
32
    </dependency>
33

  
34
  </dependencies>
35
</project>
36

  
37

  
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.103/org.gvsig.gpe.exportto/org.gvsig.gpe.exportto.generic/src/main/resources/META-INF/services/org.gvsig.tools.library.Library
1
org.gvsig.gpe.exportto.generic.ExporttoGPEGenericLibrary
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.103/org.gvsig.gpe.exportto/org.gvsig.gpe.exportto.generic/src/main/java/org/gvsig/gpe/exportto/generic/util/CoordinatesSequencePoint.java
1
package org.gvsig.gpe.exportto.generic.util;
2

  
3
import java.io.IOException;
4

  
5
import org.gvsig.fmap.geom.primitive.Point;
6
import org.gvsig.gpe.lib.api.parser.ICoordinateIterator;
7
import org.gvsig.gpe.lib.api.writer.ICoordinateSequence;
8

  
9
public class CoordinatesSequencePoint implements
10
ICoordinateSequence, ICoordinateIterator {
11
    
12
	double[] points = null;
13
	int index = 0;
14

  
15

  
16
	public CoordinatesSequencePoint(Point point) {
17
	    
18
	    if (point.getDimension() == 3) {
19
            // 2dZ
20
	        this.points = new double[3];
21
	        points[0] = point.getX();
22
	        points[1] = point.getY();
23
	        points[2] = point.getCoordinateAt(2);
24
	        index = 3;
25
	    } else {
26
	        // 2d
27
	        this.points = new double[2];
28
	        points[0] = point.getX();
29
	        points[1] = point.getY();
30
	        index = 2;
31
	    }
32
	    
33
	}
34

  
35
	public int getSize() {
36
		return 1;
37
	}
38

  
39
	public ICoordinateIterator iterator() {
40
		return this;
41
	}
42

  
43
	public int getDimension() {
44
		return points.length;
45
	}
46

  
47
	public boolean hasNext() throws IOException {
48
		return (index > 0);
49
	}
50

  
51
	public void next(double[] buffer) throws IOException {
52
		buffer[0] = points[0];
53
		buffer[1] = points[1];
54
		if ((buffer.length == 3) && (points.length == 3)){
55
			buffer[2] = points[2];
56
		}
57
		index--;
58
	}
59
	
60
	
61
}
62

  
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.103/org.gvsig.gpe.exportto/org.gvsig.gpe.exportto.generic/src/main/java/org/gvsig/gpe/exportto/generic/util/CoordinatesSequenceBbox.java
1
package org.gvsig.gpe.exportto.generic.util;
2

  
3
import java.awt.geom.Rectangle2D;
4
import java.io.IOException;
5

  
6
import org.gvsig.gpe.lib.api.parser.ICoordinateIterator;
7
import org.gvsig.gpe.lib.api.writer.ICoordinateSequence;
8

  
9
public class CoordinatesSequenceBbox implements
10
ICoordinateSequence, ICoordinateIterator {
11
    
12
	Rectangle2D bbox = null;
13
	int index = 0;
14
	
15
	public CoordinatesSequenceBbox(Rectangle2D bbox){
16
		this.bbox = bbox;
17
	}
18
	
19
	public int getSize() {
20
		return 2;
21
	}
22

  
23
	public ICoordinateIterator iterator() {
24
		return this;
25
	}
26

  
27
	public int getDimension() {
28
		return 2;
29
	}
30

  
31
	public boolean hasNext() throws IOException {
32
		if (index <=1){
33
			return true;
34
		}
35
		return false;
36
	}
37

  
38
	public void next(double[] buffer) throws IOException {
39
		if (index == 0){
40
			buffer[0] = bbox.getMinX();
41
			buffer[1] = bbox.getMinY();
42
		}else if (index == 1){
43
			buffer[0] = bbox.getMaxX();
44
			buffer[1] = bbox.getMaxY();
45
		}
46
		index++;
47
	}
48

  
49
}
50

  
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.103/org.gvsig.gpe.exportto/org.gvsig.gpe.exportto.generic/src/main/java/org/gvsig/gpe/exportto/generic/util/CoordinatesSequenceGeneralPath.java
1
package org.gvsig.gpe.exportto.generic.util;
2

  
3
import java.awt.geom.PathIterator;
4
import java.io.IOException;
5

  
6
import org.gvsig.gpe.lib.api.parser.ICoordinateIterator;
7
import org.gvsig.gpe.lib.api.writer.ICoordinateSequence;
8

  
9
public class CoordinatesSequenceGeneralPath implements
10
ICoordinateSequence, ICoordinateIterator { 
11
    
12
	private PathIterator it = null;
13
	int size = 0;
14
	boolean hasMoreGeoemtries = true;
15
	
16
	public CoordinatesSequenceGeneralPath(PathIterator it) {
17
		super();
18
		this.it = it;
19
	}
20

  
21
	public int getSize() {
22
		return size;
23
	}
24
	
25
	public void initialize(){
26
		size = 0;
27
	}
28
	
29
	public boolean hasMoreGeometries(){
30
		return hasMoreGeoemtries;
31
	}
32
	
33
	public ICoordinateIterator iterator() {
34
		return this;
35
	}
36
	
37
	public int getDimension() {
38
		return 2;
39
	}
40
	
41
	public boolean hasNext() throws IOException {
42
		if (it.isDone()){
43
			hasMoreGeoemtries = false;
44
			return false;
45
		}
46
		double[] coords = new double[2];
47
		int type = it.currentSegment(coords);		
48
		/*
49
		if (type == PathIterator.SEG_CLOSE){
50
			hasMoreGeoemtries = false;
51
		}
52
		*/
53
		return ((type != PathIterator.SEG_MOVETO) || (size == 0));		
54
	}
55
	
56
	public void next(double[] buffer) throws IOException {
57
		it.currentSegment(buffer);		
58
		it.next();	
59
		size++;
60
	}
61
	
62
}
63

  
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.103/org.gvsig.gpe.exportto/org.gvsig.gpe.exportto.generic/src/main/java/org/gvsig/gpe/exportto/generic/util/GeometryToGPEWriter.java
1
package org.gvsig.gpe.exportto.generic.util;
2

  
3
import java.awt.geom.PathIterator;
4

  
5
import org.slf4j.Logger;
6
import org.slf4j.LoggerFactory;
7

  
8
import org.gvsig.fmap.geom.Geometry;
9
import org.gvsig.fmap.geom.GeometryLocator;
10
import org.gvsig.fmap.geom.aggregate.MultiCurve;
11
import org.gvsig.fmap.geom.aggregate.MultiPoint;
12
import org.gvsig.fmap.geom.aggregate.MultiSurface;
13
import org.gvsig.fmap.geom.exception.CreateGeometryException;
14
import org.gvsig.fmap.geom.primitive.Curve;
15
import org.gvsig.fmap.geom.primitive.Envelope;
16
import org.gvsig.fmap.geom.primitive.Point;
17
import org.gvsig.fmap.geom.primitive.Surface;
18
import org.gvsig.gpe.lib.api.writer.IGPEWriterHandler;
19
import org.gvsig.tools.locator.LocatorException;
20

  
21

  
22
/**
23
 * 
24
 * Utility class to write gvSIG geometries in a GPE writer.
25
 * 
26
 * @author jldominguez (I have removed the reprojection methods/fields)
27
 */
28
public class GeometryToGPEWriter {
29
    
30
    private static Logger logger = LoggerFactory.getLogger(GeometryToGPEWriter.class);
31
    
32
	private IGPEWriterHandler writer = null;
33
	//To know if the geometry is multiple
34
	// private boolean isMultiple = false;
35
	//To reproject geometries
36
	/*
37
	private IProjection projOrig = null;
38
	private IProjection projDest = null;
39
	private ICoordTrans coordTrans = null;
40
	*/
41
	private String srs = null;
42

  
43
	public GeometryToGPEWriter(IGPEWriterHandler writer) {
44
		this.writer = writer;
45
	}
46

  
47
	
48
	
49
    public String getCrs() {
50
        return srs;
51
    }
52

  
53

  
54
    
55
    public void setCrs(String thesrs) {
56
        this.srs = thesrs;
57
    }
58

  
59

  
60
    /**
61
	 * It writes a geometry
62
	 * @param geom
63
	 * The geometry to write
64
	 * @param crs
65
	 * The coordinates reference system
66
	 */
67
	public void writeGeometry(Geometry geom, boolean addLabelPoint) {
68
	    
69
	    if (geom == null) {
70
	        logger.error("GPE Writer cannot write geometry.",
71
	            new Exception("Geometry is NULL"));
72
	        return;
73
	    }
74
	    // ====================================================
75
		if (geom instanceof MultiPoint) {
76
			writeMultiPoint((MultiPoint) geom);
77
			return;
78
		}
79
        if (geom instanceof MultiCurve) {
80
            writeMultiLine((MultiCurve) geom, addLabelPoint);
81
            return;
82
        }
83
        if (geom instanceof MultiSurface) {
84
            writeMultiPolygon((MultiSurface) geom, addLabelPoint);
85
            return;
86
        }
87
        // ====================================================
88
        if (geom instanceof Point) {
89
            writePoint((Point) geom);
90
            return;
91
        }
92
        if (geom instanceof Curve) {
93
            writeLine((Curve) geom, addLabelPoint);
94
            return;
95
        }
96
        if (geom instanceof Surface) {
97
            writePolygon((Surface) geom, addLabelPoint);
98
            return;
99
        }
100
        // ====================================================
101
        logger.error("GPE Writer cannot write geometry",
102
            new Exception("Unexpected geometry: " + geom.getClass().getName()));
103
	}
104

  
105

  
106

  
107

  
108
	/**
109
	 * Writes a point in 2D
110
	 * @param point
111
	 * The point to write
112
	 * @param crs
113
	 * The coordinates reference system
114
	 */
115
	private void writePoint(Point point) {
116
		writer.startPoint(null, new CoordinatesSequencePoint(point), srs);
117
		writer.endPoint();
118
	}
119

  
120
	/**
121
	 * Writes a multipoint in 2D
122
	 * @param point
123
	 * The point to write
124
	 * @param crs
125
	 * The coordinates reference system
126
	 */
127
	private void writeMultiPoint(MultiPoint multi){
128
		writer.startMultiPoint(null, srs);
129
		for (int i=0 ; i<multi.getPrimitivesNumber() ; i++) {
130
		    Point p = multi.getPointAt(i);
131
			writePoint(p);
132
		}
133
		writer.endMultiPoint();
134
	}
135

  
136
	/**
137
	 * Writes a line in 2D
138
	 * @param line
139
	 * The line to write
140
	 * @param crs
141
	 * The coordinates reference system
142
	 * @param geometries
143
	 * The parsed geometries
144
	 */
145
	private void writeLine(Curve curve, boolean addLabelPoint) {
146
	    
147
		boolean ismulti = isMultiple(curve.getPathIterator(null));
148
		/*
149
         * Start ===================================================
150
         */
151
        if (addLabelPoint) {
152
            Point po = null;
153
            try {
154
                po = getLabelPoint(curve.getPathIterator(null), curve.getEnvelope());
155
            } catch (Exception ex) {
156
                logger.info("While getting label point.", ex);
157
                return;
158
            }
159
            writer.startMultiGeometry(null, srs);
160
            CoordinatesSequencePoint pseq = new CoordinatesSequencePoint(po);
161
            writer.startPoint(null, pseq, srs);
162
            writer.endPoint();
163
        } else {
164
            if (ismulti) {
165
                writer.startMultiLineString(null, srs);
166
            }
167
        }		
168
        /*
169
         * Body ===================================================
170
         */
171
        CoordinatesSequenceGeneralPath sequence =
172
		    new CoordinatesSequenceGeneralPath(curve.getPathIterator(null));
173
		writer.startLineString(null, sequence, srs);
174
		writer.endLineString();
175
		if (ismulti) {
176
	        while (sequence.hasMoreGeometries()){
177
	            sequence.initialize();
178
	            writer.startLineString(null, sequence, srs);
179
	            writer.endLineString(); 
180
	        }
181
		}
182
		/*
183
         * End ===================================================
184
         */		
185
		if (addLabelPoint) {
186
            writer.endMultiGeometry();
187
        } else {
188
            if (ismulti) {
189
                writer.endMultiLineString();
190
            }
191
        }		
192
	}
193
	
194
	
195
    private void writeMultiLine(MultiCurve mcurve, boolean addLabelPoint) {
196
        
197
        if (addLabelPoint) {
198
            Point po = null;
199
            try {
200
                po = getLabelPoint(mcurve.getPathIterator(null), mcurve.getEnvelope());
201
            } catch (Exception exc) {
202
                logger.info("While getting label point.", exc);
203
                return;
204
            }
205
            writer.startMultiGeometry(null, srs);
206
            CoordinatesSequencePoint pseq = new CoordinatesSequencePoint(po);
207
            writer.startPoint(null, pseq, srs);
208
            writer.endPoint();            
209
        } else {
210
            writer.startMultiLineString(null, srs);
211
        }
212
        /*
213
         * Body =======================================
214
         */
215
        CoordinatesSequenceGeneralPath sequence =
216
            new CoordinatesSequenceGeneralPath(mcurve.getPathIterator(null));
217
        
218
        writer.startLineString(null, sequence, srs);
219
        writer.endLineString(); 
220
        while (sequence.hasMoreGeometries()){
221
            sequence.initialize();
222
            writer.startLineString(null, sequence, srs);
223
            writer.endLineString(); 
224
        }
225
        /*
226
         * End ======================================
227
         */
228
        if (addLabelPoint) {
229
            writer.endMultiGeometry();
230
        } else {
231
            writer.endMultiLineString();
232
        }
233
        
234
    }
235
	
236
	
237
	
238
	
239
	/**
240
	 * Writes a polygon in 2D
241
	 * @param polygon
242
	 * The polygon to write
243
	 * @param crs
244
	 * The coordinates reference system
245
	 * @param geometries
246
	 * The parsed geometries
247
	 */
248
	private void writePolygon(Surface surface, boolean addLabelPoint) {
249
	    
250
	    boolean ismulti = isMultiple(surface.getPathIterator(null));
251
	    CoordinatesSequenceGeneralPath sequence = null;
252
	    /*
253
         * Start ===================================================
254
         */
255
	    if (addLabelPoint) {
256
	        Point po = null;
257
	        try {
258
	            po = surface.getInteriorPoint();
259
	        } catch (Exception ex) {
260
	            logger.info("While getting label point.", ex);
261
	            return;
262
	        }
263
            writer.startMultiGeometry(null, srs);
264
	        CoordinatesSequencePoint pseq = new CoordinatesSequencePoint(po);
265
	        writer.startPoint(null, pseq, srs);
266
	        writer.endPoint();
267
	    } else {
268
	        if (ismulti) {
269
	            writer.startMultiPolygon(null, srs);
270
	        }
271
	    }
272
		/*
273
		 * Body ===================================================
274
		 */
275
		sequence = new CoordinatesSequenceGeneralPath(surface.getPathIterator(null));
276
		writer.startPolygon(null, sequence, srs);
277
		writer.endPolygon();
278
        if (ismulti) {
279
            while (sequence.hasMoreGeometries()){
280
                sequence.initialize();
281
                writer.startPolygon(null, sequence, srs);
282
                writer.endPolygon();
283
            }
284
        }
285
        /*
286
         * End ===================================================
287
         */
288
		if (addLabelPoint) {
289
		    writer.endMultiGeometry();
290
		} else {
291
		    if (ismulti) {
292
		        writer.endMultiPolygon();
293
		    }
294
		}
295
	}
296
	
297
	
298
    private Point getLabelPoint(PathIterator pathIterator, Envelope envelope) throws
299
    Exception {
300
        
301
        if (pathIterator == null || envelope == null) {
302
            throw new Exception("Null iterator or envelope");
303
        }
304
        
305
        double bestx = 0;
306
        double besty = 0;
307
        double cx = envelope.getCenter(0);
308
        double cy = envelope.getCenter(1);
309
        double dist = Double.MAX_VALUE;
310
        double auxdist = 0;
311
        
312
        double[] coords = new double[6];
313
        while (!pathIterator.isDone()) {
314
            pathIterator.currentSegment(coords);
315
            auxdist = getDist2(cx, cy, coords[0], coords[1]);
316
            if (auxdist < dist) {
317
                dist = auxdist;
318
                bestx = coords[0];
319
                besty = coords[1];
320
            }
321
            pathIterator.next();
322
        }
323
        Point resp = GeometryLocator.getGeometryManager().createPoint(
324
            bestx, besty, Geometry.SUBTYPES.GEOM2D);
325
        return resp;
326
    }
327
    
328
    
329
    private Point getLabelPoint(MultiSurface msurf) throws Exception {
330
        
331
        if (msurf == null) {
332
            throw new Exception("Surface is Null");
333
        }
334
        
335
        int n = msurf.getPrimitivesNumber();
336
        Surface surf = null;
337
        Surface bigsurf = null;
338
        double importance = 0;
339
        double auximportance = 0;
340
        Envelope env = null;
341
        long nverts = 0;
342
        for (int i=0; i<n; i++) {
343
            surf = (Surface) msurf.getPrimitiveAt(i);
344
            nverts = surf.getNumVertices();
345
            env = surf.getEnvelope();
346
            auximportance = nverts * env.getLength(0) * env.getLength(1);
347
            if (auximportance >= importance) {
348
                importance = auximportance;
349
                bigsurf = surf;
350
            }
351
        }
352
        if (bigsurf != null) {
353
            return bigsurf.getInteriorPoint();
354
        } else {
355
            return msurf.getInteriorPoint();
356
        }
357
    }
358

  
359
    /**
360
     * Returns (dist ^ 2) between points a and b
361
     * @param ax
362
     * @param ay
363
     * @param bx
364
     * @param by
365
     * @return
366
     */
367
    private double getDist2(
368
        double ax, double ay,
369
        double bx, double by) {
370
        
371
        double dx = bx - ax; 
372
        double dy = by - ay;
373
        return (dx * dx) + (dy * dy); 
374
    }
375

  
376

  
377

  
378
    private void writeMultiPolygon(MultiSurface msurface, boolean addLabelPoint) {
379
        
380
        if (addLabelPoint) {
381
            Point po = null;
382
            try {
383
                po = getLabelPoint(msurface);
384
            } catch (Exception ex) {
385
                logger.info("While getting label point.", ex); 
386
                return;
387
            }
388
            
389
            writer.startMultiGeometry(null, srs);
390
            CoordinatesSequencePoint pseq = new CoordinatesSequencePoint(po);
391
            writer.startPoint(null, pseq, srs);
392
            writer.endPoint();     
393
        } else {
394
            writer.startMultiPolygon(null, srs);
395
        }
396
        /*
397
         * Body ==============================================
398
         */
399
        CoordinatesSequenceGeneralPath sequence =
400
            new CoordinatesSequenceGeneralPath(msurface.getPathIterator(null));
401
        writer.startPolygon(null, sequence, srs);
402
        writer.endPolygon();    
403
        while (sequence.hasMoreGeometries()){
404
            sequence.initialize();
405
            writer.startPolygon(null, sequence, srs);
406
            writer.endPolygon();
407
        }
408
        /*
409
         * End ==============================================
410
         */
411
        if (addLabelPoint) {
412
            writer.endMultiGeometry();
413
        } else {
414
            writer.endMultiPolygon();
415
        }
416
        
417
    }	
418
	
419
	/**
420
	 * Return if the geometry is multiple	
421
	 * @param path
422
	 * @return
423
	 */
424
	public boolean isMultiple(PathIterator path){
425
		double[] coords = new double[2];
426
		int type = 0;
427
		int numGeometries = 0;
428
		while (!path.isDone()){
429
			type = path.currentSegment(coords);
430
			 switch (type) {
431
			 	case PathIterator.SEG_MOVETO:
432
			 		numGeometries++;
433
			 		if (numGeometries == 2){
434
			 			return true;
435
			 		}
436
			 		break;
437
			 	default:
438
			 		break;
439
			 }
440
			 path.next();
441
		}
442
		return false;
443
	}
444

  
445

  
446

  
447

  
448

  
449

  
450

  
451

  
452

  
453

  
454

  
455

  
456

  
457

  
458

  
459
}
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.103/org.gvsig.gpe.exportto/org.gvsig.gpe.exportto.generic/src/main/java/org/gvsig/gpe/exportto/generic/ExporttoGPEGenericLibrary.java
1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 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 3
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
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.gpe.exportto.generic;
25

  
26
import org.gvsig.gpe.lib.api.GPELibrary;
27
import org.gvsig.tools.library.AbstractLibrary;
28
import org.gvsig.tools.library.LibraryException;
29

  
30
/**
31
 * Library with common things to be used by
32
 * GPE export libraries
33
 * 
34
 * @author gvSIG Team
35
 * @version $Id$
36
 */
37
public class ExporttoGPEGenericLibrary extends AbstractLibrary {
38

  
39
    public void doRegistration() {
40
        require(GPELibrary.class);
41
    }
42

  
43
    protected void doInitialize() throws LibraryException {
44
        // Nothing to do
45
    }
46

  
47
    protected void doPostInitialize() throws LibraryException {
48
        
49
    }
50

  
51
}
0 52

  
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.103/org.gvsig.gpe.exportto/org.gvsig.gpe.exportto.kml/buildNumber.properties
1
#Sun Apr 19 17:20:08 CEST 2020
2
buildNumber=2205
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.103/org.gvsig.gpe.exportto/org.gvsig.gpe.exportto.kml/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
  <dependencySets>
51
    <dependencySet>
52
      <useProjectArtifact>false</useProjectArtifact>
53
      <useTransitiveDependencies>false</useTransitiveDependencies>
54
      <outputDirectory>lib</outputDirectory>
55
      <includes>
56
        <include>org.gvsig:org.gvsig.gpe.exportto.generic</include>
57
      </includes>
58
    </dependencySet>
59
  </dependencySets>
60

  
61
</assembly>
62

  
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.103/org.gvsig.gpe.exportto/org.gvsig.gpe.exportto.kml/src/main/java/org/gvsig/gpe/exportto/kml/service/ExportKMLService.java
1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.gpe.exportto.kml.service;
7

  
8
import java.awt.geom.Rectangle2D;
9
import java.io.File;
10
import java.io.FileOutputStream;
11
import java.io.IOException;
12
import java.util.ArrayList;
13
import java.util.Iterator;
14
import java.util.List;
15
import java.util.Map;
16
import org.cresques.cts.ICoordTrans;
17
import org.cresques.cts.IProjection;
18
import org.gvsig.export.ExportException;
19
import org.gvsig.export.ExportParameters;
20
import org.gvsig.export.spi.AbstractExportService;
21
import org.gvsig.export.spi.ExportService;
22
import org.gvsig.export.spi.ExportServiceFactory;
23
import org.gvsig.fmap.crs.CRSFactory;
24
import org.gvsig.fmap.dal.DALLocator;
25
import org.gvsig.fmap.dal.DataManager;
26
import org.gvsig.fmap.dal.DataServerExplorer;
27
import org.gvsig.fmap.dal.NewDataStoreParameters;
28
import org.gvsig.fmap.dal.OpenDataStoreParameters;
29
import org.gvsig.fmap.dal.exception.DataException;
30
import org.gvsig.fmap.dal.feature.Feature;
31
import org.gvsig.fmap.dal.feature.FeatureAttributeDescriptor;
32
import org.gvsig.fmap.dal.feature.FeatureSet;
33
import org.gvsig.fmap.dal.feature.FeatureType;
34
import org.gvsig.fmap.dal.feature.NewFeatureStoreParameters;
35
import org.gvsig.fmap.dal.feature.OpenFeatureStoreParameters;
36
import org.gvsig.fmap.dal.serverexplorer.filesystem.FilesystemServerExplorer;
37
import org.gvsig.fmap.dal.serverexplorer.filesystem.FilesystemServerExplorerParameters;
38
import org.gvsig.fmap.geom.DataTypes;
39
import org.gvsig.fmap.geom.Geometry;
40
import org.gvsig.fmap.geom.GeometryLocator;
41
import org.gvsig.fmap.geom.GeometryManager;
42
import org.gvsig.fmap.geom.exception.CreateEnvelopeException;
43
import org.gvsig.fmap.geom.primitive.Envelope;
44
import org.gvsig.fmap.mapcontext.MapContextException;
45
import org.gvsig.fmap.mapcontext.layers.vectorial.FLyrVect;
46
import org.gvsig.fmap.mapcontext.rendering.legend.IVectorLegend;
47
import org.gvsig.fmap.mapcontext.rendering.symbols.ISymbol;
48
import org.gvsig.gpe.exportto.generic.util.CoordinatesSequenceBbox;
49
import org.gvsig.gpe.exportto.generic.util.GeometryToGPEWriter;
50
import org.gvsig.gpe.exportto.kml.style.KmlStyle;
51
import org.gvsig.gpe.exportto.kml.style.StyleUtils;
52
import org.gvsig.gpe.lib.api.GPELocator;
53
import org.gvsig.gpe.lib.api.writer.IGPEWriterHandler;
54
import org.gvsig.gpe.lib.api.writer.IGPEWriterHandlerImplementor;
55
import org.gvsig.gpe.prov.kml.utils.Kml2_1_Tags;
56
import org.gvsig.gpe.prov.kml.writer.GPEKmlWriterHandlerImplementor;
57
import org.gvsig.tools.dispose.DisposableIterator;
58
import org.gvsig.tools.locator.LocatorException;
59
import org.gvsig.tools.util.HasAFile;
60
import org.gvsig.xmlpull.lib.api.stream.IXmlStreamWriter;
61
import org.slf4j.Logger;
62
import org.slf4j.LoggerFactory;
63

  
64
/**
65
 *
66
 * @author osc
67
 */
68
public class ExportKMLService extends AbstractExportService
69
	implements ExportService {
70

  
71
	private static Logger logger = LoggerFactory.getLogger(ExportKMLService.class);
72

  
73
	ExportKMLService(ExportServiceFactory factory, ExportParameters parameters) {
74
		super(factory, parameters);
75
	}
76

  
77
	@Override
78
	protected DataServerExplorer createServerExplorer() throws ExportException {
79

  
80
		DataManager dataManager = DALLocator.getDataManager();
81

  
82
		FilesystemServerExplorerParameters explorerParams;
83
		try {
84
			explorerParams
85
				= (FilesystemServerExplorerParameters) dataManager
86
					.createServerExplorerParameters(FilesystemServerExplorer.NAME);
87
		} catch (Exception e) {
88
			throw new ExportException(e);
89
		}
90

  
91
		explorerParams.setRoot(this.getParameters().getFile().getParent());
92

  
93
		FilesystemServerExplorer explorer;
94
		try {
95
			explorer = (FilesystemServerExplorer) dataManager.openServerExplorer(
96
				"FilesystemExplorer", explorerParams
97
			);
98
			return explorer;
99
		} catch (Exception e) {
100
			throw new ExportException(e);
101
		}
102
	}
103

  
104
	@Override
105
	protected NewDataStoreParameters createTargetNewStoreParameters() throws ExportException {
106
		try {
107
			FilesystemServerExplorer explorer = (FilesystemServerExplorer) this.createServerExplorer();
108
			NewFeatureStoreParameters newStoreParameters = (NewFeatureStoreParameters) explorer.getAddParameters(
109
				this.getParameters().getFile()
110
			);
111
			newStoreParameters.setDynValue("CRS", this.getParameters().getTargetProjection());
112
			// Usamos el featureType por defecto del KML
113
			return newStoreParameters;
114
		} catch (DataException ex) {
115
			throw new ExportException(ex);
116
		}
117
	}
118

  
119
	@Override
120
	protected OpenDataStoreParameters createTargetOpenStoreParameters() throws ExportException {
121
		try {
122
			DataManager dataManager = DALLocator.getDataManager();
123
			OpenFeatureStoreParameters openStoreParameters = (OpenFeatureStoreParameters) dataManager.createStoreParameters("GPE");
124
			((HasAFile) openStoreParameters).setFile(getParameters().getFile());
125
			openStoreParameters.setDynValue("CRS", this.getParameters().getTargetProjection());
126
			return openStoreParameters;
127
		} catch (DataException ex) {
128
			throw new ExportException(ex);
129
		}
130
	}
131

  
132
	@Override
133
	public ExportKMLParameters getParameters() {
134
		return (ExportKMLParameters) super.getParameters();
135
	}
136

  
137
	@Override
138
	public void export(
139
		FeatureSet featureSet) throws ExportException {
140
		DataServerExplorer explorer = this.createServerExplorer();
141
		NewFeatureStoreParameters params = (NewFeatureStoreParameters) this.createTargetNewStoreParameters();
142

  
143
		String providerName = params.getDataStoreName();
144
		String explorerName = explorer.getProviderName();
145

  
146
		File outFile = this.getParameters().getFile(); //kmlFile;
147
		FeatureSet featureStore = featureSet;
148

  
149
		FLyrVect vectorLayer = null;
150
		String mimeType = this.getParameters().getMimeType(); //mtype;
151
		boolean useLabels = this.getParameters().getUseLabels(); //doLabels;
152
		boolean attsAsBalloon = this.getParameters().getAttsAsBalloon();
153
		ArrayList<ICoordTrans> ICoordTrans;
154

  
155
		List<ICoordTrans> transfList = new ArrayList<ICoordTrans>();
156

  
157
		ICoordTrans ct = this.getParameters().getSourceTransformation(); //vlayer.getCoordTrans();
158
		IProjection targetproj = this.getParameters().getTargetProjection();
159
//        if (reprojectTo4326) {
160
//		8
161
//            targetproj = CRSFactory.getCRS("EPSG:4326");
162
//            if (ct == null) {
163
//                transfList.add(this.getParameters().getSourceProjection().getCT(targetproj));
164
//            } else {
165
//                transfList.add(ct);
166
//                transfList.add(ct.getPDest().getCT(targetproj));
167
//            }
168
//        } else {
169
		if (ct == null) {
170
			if (targetproj == null) {
171
				targetproj = this.getParameters().getSourceProjection();
172
			}
173
			ct = this.getParameters().getSourceProjection().getCT(targetproj);
174
			transfList.add(ct);
175
		} else {
176
			targetproj = ct.getPDest();
177
			transfList.add(ct);
178
		}
179

  
180
		IGPEWriterHandler wh = null;
181
		FileOutputStream fos = null;
182
		String srs = targetproj.getAbrev();
183

  
184
		String[] fldNames = null;
185
		Envelope env = null;
186
		long count = 0;
187
		FeatureType ftype;
188

  
189
		try {
190
			count = featureSet.getSize();
191
			this.getTaskStatus().setRangeOfValues(0, count);
192
			if (this.getParameters().getExportAttributes().isActive()) {
193
				ftype = this.getParameters().getExportAttributes().getTargetFeatureType();
194
			} else {
195
				ftype = featureStore.getDefaultFeatureType();
196
			}
197
			fldNames = getAttributes(ftype);
198
			env = GeometryLocator.getGeometryManager().createEnvelope(Geometry.SUBTYPES.GEOM2D);
199
			this.initEnvelope(env, featureSet);
200
		} catch (DataException | CreateEnvelopeException | LocatorException e) {
201
			throw new ExportException(e);
202
		}
203

  
204
		try {
205
			env = reproject(env, transfList);
206
		} catch (CreateEnvelopeException ex) {
207
			throw new ExportException(ex);
208
		}
209

  
210
		Rectangle2D rect = new Rectangle2D.Double(
211
			env.getMinimum(0),
212
			env.getMinimum(1),
213
			env.getLength(0),
214
			env.getLength(1));
215

  
216
		File fixedFile = outFile;
217
		try {
218

  
219
			if (!outFile.getAbsolutePath().toLowerCase().endsWith(
220
				"." + this.getFileExtension().toLowerCase())) {
221

  
222
				fixedFile = new File(outFile.getAbsolutePath() + "." + getFileExtension());
223
			}
224

  
225
			wh = GPELocator.getGPEManager().createWriterByMimeType(mimeType);
226
			fos = new FileOutputStream(fixedFile);
227

  
228
			wh.setOutputStream(fos);
229
			wh.initialize();
230
			// ==========================================
231
			wh.startLayer(null, null, fixedFile.getName(), null, srs);
232
			// ==============     Styles    =============
233
			Map<ISymbol, KmlStyle> symsty = null;
234
			IXmlStreamWriter xmlw = getXmlStreamWriter(wh);
235
			if (true && xmlw != null && vectorLayer instanceof FLyrVect) {
236
				symsty = StyleUtils.getSymbolStyles((FLyrVect) vectorLayer,
237
					featureSet,
238
					attsAsBalloon,
239
					fldNames);
240
				Iterator<KmlStyle> iter = symsty.values().iterator();
241
				KmlStyle sty = null;
242
				while (iter.hasNext()) {
243
					sty = iter.next();
244
					writeStyle(xmlw, sty);
245
				}
246
			}
247
			// ==========================================
248
			wh.startBbox(null, new CoordinatesSequenceBbox(rect), srs);
249
			wh.endBbox();
250
			// ============= Writing feature ============
251
			IVectorLegend legend;
252
			if (vectorLayer instanceof FLyrVect) {
253
				legend = (IVectorLegend) ((FLyrVect) vectorLayer).getLegend();
254
			} else {
255
				legend = null;
256
			}
257
			writeFeatures(wh, xmlw, featureSet, fldNames, symsty, legend, transfList);
258

  
259
//            writeFeatures(wh, xmlw, featureSet, fldNames, symsty,
260
//                    (IVectorLegend) vectorLayer.getLegend());
261
			// ==========================================
262
			wh.endLayer();
263
			// ==========================================
264
			wh.close();
265
			fos.close();
266
		} catch (Exception exc) {
267
			throw new ExportException(exc);
268
		}
269

  
270
		this.getTaskStatus().setCurValue(count);
271
//        this.finishAction(fixedFile, targetproj);
272
		this.getTaskStatus().terminate();
273
		this.getTaskStatus().remove();
274

  
275
	}
276

  
277
	private String[] getAttributes(FeatureType ftype) {
278

  
279
		FeatureAttributeDescriptor[] atts = ftype.getAttributeDescriptors();
280

  
281
		FeatureAttributeDescriptor desc = null;
282
		List<String> list = new ArrayList<String>();
283
		for (int i = 0; i < atts.length; i++) {
284
			desc = atts[i];
285
			if (desc.getDataType().getType() != DataTypes.GEOMETRY) {
286
				list.add(desc.getName());
287
			}
288
		}
289
		return list.toArray(new String[0]);
290
	}
291

  
292
	private Geometry reproject(Geometry geom, List<ICoordTrans> transfList) {
293

  
294
		int sz = transfList.size();
295
		if (sz == 0) {
296
			return geom;
297
		} else {
298
			Geometry resp = geom.cloneGeometry();
299
			for (int i = 0; i < sz; i++) {
300
				resp.reProject(transfList.get(i));
301
			}
302
			return resp;
303
		}
304

  
305
	}
306

  
307
	public String getFileExtension() {
308
		return "kml";
309
	}
310

  
311
//    private void finishAction(File kmlfile, IProjection proj)
312
//            throws ExportException {
313
//        
314
//        this.createTargetOpenStoreParameters()
315
//
316
//        if (exporttoServiceFinishAction != null) {
317
//
318
//            /*
319
//             * Export is done. We notify with a SHPStoreParameters,
320
//             * not with the NewSHPParameters we have used:
321
//             */
322
//            DataManagerProviderServices dataman
323
//                    = (DataManagerProviderServices) DALLocator.getDataManager();
324
//
325
//            DataStoreParameters dsp = null;
326
//            try {
327
//                dsp = dataman.createStoreParameters("GPE");
328
//            } catch (Exception e) {
329
//                throw new ExportException(e); //"Cannot add resulting kml file to view", e);
330
//            }
331
//
332
//            dsp.setDynValue("File", kmlfile);
333
//            dsp.setDynValue("CRS", proj);
334
//
335
//            try {
336
//                dsp.validate();
337
//            } catch (ValidateDataParametersException e) {
338
//                throw new ExportException(e);
339
//            }
340
//            exporttoServiceFinishAction.finished(kmlfile.getName(), dsp);
341
//        }
342
//    }
343
	private void writeStyle(IXmlStreamWriter xmlw, KmlStyle sty) throws IOException {
344

  
345
		xmlw.writeStartElement(Kml2_1_Tags.STYLE);
346
		xmlw.writeStartAttribute(Kml2_1_Tags.ID);
347
		xmlw.writeValue(sty.getId());
348
		xmlw.writeEndAttributes();
349
		sty.writeXml(xmlw);
350
		xmlw.writeEndElement();
351
	}
352

  
353
	private IXmlStreamWriter getXmlStreamWriter(IGPEWriterHandler wh) {
354

  
355
		IGPEWriterHandlerImplementor imple = wh.getImplementor();
356
		if (!(imple instanceof GPEKmlWriterHandlerImplementor)) {
357
			/*
358
             * Unexpected class
359
			 */
360
			return null;
361
		}
362
		GPEKmlWriterHandlerImplementor kmlimple = null;
363
		kmlimple = (GPEKmlWriterHandlerImplementor) imple;
364
		IXmlStreamWriter xmlw = kmlimple.getXMLStreamWriter();
365
		return xmlw;
366
	}
367

  
368
	private void writeFeatures(
369
		IGPEWriterHandler gwh,
370
		IXmlStreamWriter xmlw,
371
		FeatureSet fset,
372
		String[] fieldNames,
373
		Map<ISymbol, KmlStyle> symsty,
374
		IVectorLegend lege,
375
		List<ICoordTrans> transfList) throws Exception {
376

  
377
		GeometryToGPEWriter gw = new GeometryToGPEWriter(gwh);
378
		DisposableIterator diter = fset.fastIterator();
379
		Feature feat = null;
380
		long count = 0;
381
		this.getTaskStatus().setCurValue(count);
382
		ISymbol sym = null;
383
		int nullGeometries = 0;
384
		while (diter.hasNext()) {
385
			feat = (Feature) diter.next();
386
			try {
387
				if (lege instanceof IVectorLegend) {
388
					sym = lege.getSymbolByFeature(feat);
389
				}
390
			} catch (MapContextException mce) {
391
				logger.info("While getting legend symbol.", mce);
392
			}
393
			KmlStyle kmlStyle;
394
			try {
395
				kmlStyle = symsty.get(sym);
396
			} catch (Exception e) {
397
				kmlStyle = null;
398
			}
399

  
400
			if (!writeFeature(feat, gwh, xmlw, gw, count, fieldNames, kmlStyle, transfList)) {
401
				nullGeometries++;
402
			};
403
			count++;
404
			this.getTaskStatus().setCurValue(count);
405
		}
406
		if (nullGeometries > 0) {
407
			logger.warn("Can't export " + nullGeometries + " features because source geometries are null.");
408
		}
409
		diter.dispose();
410
	}
411

  
412
	private boolean writeFeature(
413
		Feature feat,
414
		IGPEWriterHandler gwh,
415
		IXmlStreamWriter xmlw,
416
		GeometryToGPEWriter gw,
417
		long index,
418
		String[] fieldNames,
419
		KmlStyle ksty,
420
		List<ICoordTrans> transfList) throws IOException {
421

  
422
		Geometry geom = feat.getDefaultGeometry();
423

  
424
		if (geom == null) {
425
			return false;
426
		}
427

  
428
		String strindex = String.valueOf(index);
429

  
430
		if (this.getParameters().getUseLabels()) {
431
			String lbl = getLabelForFeature(feat);
432
			gwh.startFeature(strindex, "FEATURE", lbl);
433
		} else {
434
			gwh.startFeature(strindex, "FEATURE", "");
435
		}
436
		// =========================
437
		// Style
438
		if (ksty != null) {
439
			xmlw.writeStartElement(Kml2_1_Tags.STYLEURL);
440
			xmlw.writeValue("#" + ksty.getId());
441
			xmlw.writeEndElement();
442
		}
443
		// ===== Balloon ============
444
		if (this.getParameters().getAttsAsBalloon()) {
445
			writeBalloon(xmlw, feat, fieldNames);
446
		}
447

  
448
		// ============= Geometry
449

  
450
		/*
451
         * This has no effect if reprojection is not necessary
452
		 */
453
		geom = reproject(geom, transfList);
454
		gw.writeGeometry(geom, this.getParameters().getUseLabels());
455
		// ============= Attributes
456
		Object val = null;
457
		String fldname = null;
458
		for (int i = 0; i < fieldNames.length; i++) {
459
			val = feat.get(fieldNames[i]);
460
			fldname = fieldNames[i].replace(' ', '_');
461
			gwh.startElement("", fldname, val == null ? "" : val.toString());
462
			gwh.endElement();
463
		}
464
		// =========================
465
		gwh.endFeature();
466
		return true;
467
	}
468

  
469
	private String getLabelForFeature(Feature feat) {
470
		return "";
471

  
472
//        if (this.vectorLayer.isLabeled()) {
473
//
474
//            String[] flds = vectorLayer.getLabelingStrategy().getUsedFields();
475
//            int n = Math.min(flds.length, 2);
476
//            if (n == 0) {
477
//                return "";
478
//            } else {
479
//                String resp = "";
480
//                Object val = null;
481
//                if (n == 1) {
482
//                    val = feat.get(flds[0]);
483
//                    resp = (val == null) ? "" : val.toString();
484
//                } else {
485
//                    // n == 2
486
//                    val = feat.get(flds[0]);
487
//                    resp = (val == null) ? "" : val.toString();
488
//                    val = feat.get(flds[1]);
489
//                    resp = (val == null) ? resp : resp + ", " + val.toString();
490
//                }
491
//                return resp;
492
//            }
493
//
494
//        } else {
495
//            return "";
496
//        }
497
	}
498

  
499
	private void writeBalloon(IXmlStreamWriter xmlw, Feature feat, String[] fieldNames)
500
		throws IOException {
501

  
502
		xmlw.writeStartElement(Kml2_1_Tags.EXTENDED_DATA);
503
		String fldrep = null;
504
		Object val = null;
505
		for (int i = 0; i < fieldNames.length; i++) {
506
			fldrep = fieldNames[i].replace(' ', '_');
507
			xmlw.writeStartElement(Kml2_1_Tags.DATA);
508
			// Att =====================================================
509
			xmlw.writeStartAttribute(null, "name");
510
			xmlw.writeValue(fldrep);
511
			xmlw.writeEndAttributes();
512
			// Value =====================================================
513
			xmlw.writeStartElement(Kml2_1_Tags.VALUE);
514
			val = feat.get(fieldNames[i]);
515
			xmlw.writeValue(val == null ? "" : val.toString());
516
			xmlw.writeEndElement();
517
			// =============================================
518
			xmlw.writeEndElement();
519
		}
520
		xmlw.writeEndElement();
521

  
522
		/*
523
         *
524
<ExtendedData>
525
      <Data name="holeNumber">
526
        <value>1</value>
527
      </Data>
528
      <Data name="holeYardage">
529
        <value>234</value>
530
      </Data>
531
      <Data name="holePar">
532
        <value>4</value>
533
      </Data>
534
    </ExtendedData>
535
         *
536
		 */
537
	}
538

  
539
	private Envelope reproject(Envelope env, List<ICoordTrans> transfList) throws CreateEnvelopeException {
540

  
541
		int sz = transfList.size();
542
		if (sz == 0) {
543
			return env;
544
		} else {
545
			Envelope resp = env;
546
			try {
547
				for (int i = 0; i < sz; i++) {
548
					resp = resp.convert(transfList.get(i));
549
				}
550
			} catch (Exception exc) {
551

  
552
				// If this process fails, we'll use "emergency values":
553
				GeometryManager gm = GeometryLocator.getGeometryManager();
554
				double[] min = new double[2];
555
				double[] max = new double[2];
556
				IProjection targetproj = this.getParameters().getTargetProjection();
557
				if (targetproj.isProjected()) {
558
					min = new double[]{-20000000, -20000000};
559
					max = new double[]{20000000, 20000000};
560
				} else {
561
					min = new double[]{-180, -90};
562
					max = new double[]{180, 90};
563
				}
564

  
565
				resp = gm.createEnvelope(
566
					min[0], min[1],
567
					max[0], max[1],
568
					Geometry.SUBTYPES.GEOM2D);
569

  
570
			}
571
			return resp;
572
		}
573
	}
574

  
575
	private void initEnvelope(Envelope env, FeatureSet featureSet) {
576
		for (Feature feature : featureSet) {
577
			Geometry geometry = feature.getDefaultGeometry();
578
			if (geometry != null && geometry.isValid()) {
579
				env.add(geometry);
580
			}
581
		}
582
	}
583
}
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.103/org.gvsig.gpe.exportto/org.gvsig.gpe.exportto.kml/src/main/java/org/gvsig/gpe/exportto/kml/service/ExportKMLParameters.java
1
package org.gvsig.gpe.exportto.kml.service;
2

  
3
//import org.gvsig.export.dbf.service.ExportDBFParameters;
4
import org.gvsig.export.ExportParametersGeometry;
5
import org.gvsig.tools.util.HasAFile;
6

  
7
/**
8
 *
9
 * @author jjdelcerro
10
 */
11
public interface ExportKMLParameters extends ExportParametersGeometry, HasAFile {
12
        public String getMimeType();
13
        public void setMimeType(String value);
14
        public boolean getUseLabels();
15
        public void setUseLabels(boolean value);
16
        public boolean getAttsAsBalloon();
17
        public void setAttsAsBalloon(boolean value);
18
}
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.103/org.gvsig.gpe.exportto/org.gvsig.gpe.exportto.kml/src/main/java/org/gvsig/gpe/exportto/kml/service/ExportKMLParametersImpl.java
1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.gpe.exportto.kml.service;
7

  
8
import java.io.File;
9
import org.apache.commons.io.FilenameUtils;
10
import org.cresques.cts.IProjection;
11
import org.gvsig.export.spi.AbstractExportParametersGeometry;
12
import org.gvsig.export.spi.ExportServiceFactory;
13
import org.gvsig.fmap.crs.CRSFactory;
14

  
15
/**
16
 *
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff