Statistics
| Revision:

root / trunk / libraries / libGPE-KML / src / org / gvsig / gpe / kml / writer / geometries / LatLonBoxWriter.java @ 11484

History | View | Annotate | Download (3.85 KB)

1 11484 jorpiell
package org.gvsig.gpe.kml.writer.geometries;
2
3
import java.io.IOException;
4
5
import org.gvsig.gpe.kml.KmlTags;
6
import org.gvsig.gpe.xml.writer.Writer;
7
8
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
9
 *
10
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
11
 *
12
 * This program is free software; you can redistribute it and/or
13
 * modify it under the terms of the GNU General Public License
14
 * as published by the Free Software Foundation; either version 2
15
 * of the License, or (at your option) any later version.
16
 *
17
 * This program is distributed in the hope that it will be useful,
18
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20
 * GNU General Public License for more details.
21
 *
22
 * You should have received a copy of the GNU General Public License
23
 * along with this program; if not, write to the Free Software
24
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
25
 *
26
 * For more information, contact:
27
 *
28
 *  Generalitat Valenciana
29
 *   Conselleria d'Infraestructures i Transport
30
 *   Av. Blasco Ib??ez, 50
31
 *   46010 VALENCIA
32
 *   SPAIN
33
 *
34
 *      +34 963862235
35
 *   gvsig@gva.es
36
 *      www.gvsig.gva.es
37
 *
38
 *    or
39
 *
40
 *   IVER T.I. S.A
41
 *   Salamanca 50
42
 *   46005 Valencia
43
 *   Spain
44
 *
45
 *   +34 963163400
46
 *   dac@iver.es
47
 */
48
/* CVS MESSAGES:
49
 *
50
 * $Id$
51
 * $Log$
52
 * Revision 1.1  2007-05-08 07:53:08  jorpiell
53
 * Add comments to the writers
54
 *
55
 *
56
 */
57
/**
58
 * This class writes a LatLonBox Kml tag. Example:
59
 * <p>
60
 * <pre>
61
 * <code>
62
 * &lt;LatLonAltBox&gt;
63
 * &lt;north&gt;43.374&lt;/north&gt;
64
 * &lt;south&gt;42.983&lt;/south&gt;
65
 * &lt;east&gt;-0.335&lt;/east&gt;
66
 * &lt;west&gt;-1.423&lt;/west&gt;
67
 * &lt;rotation&gt;39.37878630116985&lt;/rotation&gt;
68
 * &lt;/LatLonAltBox&gt;
69
 * </code>
70
 * </pre>
71
 * </p>
72
 * @author Jorge Piera LLodr? (jorge.piera@iver.es)
73
 * @see http://code.google.com/apis/kml/documentation/kml_tags_21.html#latlonbox
74
 */
75
public class LatLonBoxWriter {
76
77
        /**
78
         * It writes the LatLonBox init tag and its fields
79
         * @param writer
80
         * Writer to write the labels
81
         * @param north
82
         * Specifies the latitude of the north edge of the bounding box,
83
         * in decimal degrees from 0 to ?90.
84
         * @param south
85
         * Specifies the latitude of the south edge of the bounding box,
86
         * in decimal degrees from 0 to ?90.
87
         * @param east
88
         * Specifies the longitude of the east edge of the bounding box,
89
         * in decimal degrees from 0 to ?180.
90
         * @param west
91
         * Specifies the longitude of the west edge of the bounding box,
92
         * in decimal degrees from 0 to ?180.
93
         * @param rotation
94
         * specifies a rotation of the overlay about its center, in degrees.
95
         * Values can be ?180. The default is 0 (north). Rotations are specified
96
         * in a clockwise direction.
97
         * @throws IOException
98
         */
99
        public static void start(Writer writer,double north, double south,
100
                        double east, double west, double rotation) throws IOException{
101
                writer.write("\n");
102
                writer.write("<" + KmlTags.LATLONBOX + ">");
103
                writer.write("<" + KmlTags.NORTH + ">");
104
                DoubleWriter.write(writer, north);
105
                writer.write("<" + KmlTags.NORTH + ">");
106
                writer.write("<" + KmlTags.SOUTH + ">");
107
                DoubleWriter.write(writer, south);
108
                writer.write("<" + KmlTags.SOUTH + ">");
109
                writer.write("<" + KmlTags.EAST + ">");
110
                DoubleWriter.write(writer, east);
111
                writer.write("<" + KmlTags.EAST + ">");
112
                writer.write("<" + KmlTags.WEST + ">");
113
                DoubleWriter.write(writer, west);
114
                writer.write("<" + KmlTags.WEST + ">");
115
                writer.write("<" + KmlTags.ROTATION + ">");
116
                DoubleWriter.write(writer, rotation);
117
                writer.write("<" + KmlTags.ROTATION + ">");
118
        }
119
120
        /**
121
        /**
122
         * It writes the LatLonAltBox end tag and its fields
123
         * @param writer
124
         * Writer to write the labels
125
         * @throws IOException
126
         */
127
        public static void end(Writer writer) throws IOException{
128
                writer.write("\n");
129
                writer.write("</" + KmlTags.LATLONBOX + ">");
130
        }
131
}