2 * Copyright © 2010 Keith Packard <keithp@keithp.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 public class AltosKML implements AltosWriter {
30 AltosRecord prev = null;
32 static final String[] kml_state_colors = {
45 static final String kml_header_start =
46 "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" +
47 "<kml xmlns=\"http://www.opengis.net/kml/2.2\">\n" +
49 " <name>AO Flight#%d S/N: %03d</name>\n" +
51 static final String kml_header_end =
55 static final String kml_style_start =
56 " <Style id=\"ao-flightstate-%s\">\n" +
57 " <LineStyle><color>%s</color><width>4</width></LineStyle>\n" +
61 static final String kml_style_end =
63 " </BalloonStyle>\n" +
66 static final String kml_placemark_start =
68 " <name>%s</name>\n" +
69 " <styleUrl>#ao-flightstate-%s</styleUrl>\n" +
71 " <tessellate>1</tessellate>\n" +
72 " <altitudeMode>absolute</altitudeMode>\n" +
75 static final String kml_coord_fmt =
76 " %12.7f, %12.7f, %12.7f <!-- alt %12.7f time %12.7f sats %d -->\n";
78 static final String kml_placemark_end =
83 static final String kml_footer =
87 void start (AltosRecord record) {
88 out.printf(kml_header_start, record.flight, record.serial);
89 out.printf("Date: %04d-%02d-%02d\n",
90 record.gps.year, record.gps.month, record.gps.day);
91 out.printf("Time: %2d:%02d:%02d\n",
92 record.gps.hour, record.gps.minute, record.gps.second);
93 out.printf("%s", kml_header_end);
96 boolean started = false;
98 void state_start(AltosRecord record) {
99 String state_name = Altos.state_name(record.state);
100 out.printf(kml_style_start, state_name, kml_state_colors[record.state]);
101 out.printf("\tState: %s\n", state_name);
102 out.printf("%s", kml_style_end);
103 out.printf(kml_placemark_start, state_name, state_name);
106 void state_end(AltosRecord record) {
107 out.printf("%s", kml_placemark_end);
110 void coord(AltosRecord record) {
111 AltosGPS gps = record.gps;
112 out.printf(kml_coord_fmt,
114 record.filtered_altitude(), (double) gps.alt,
115 record.time, gps.nsat);
119 out.printf("%s", kml_footer);
122 public void close() {
130 public void write(AltosRecord record) {
131 AltosGPS gps = record.gps;
140 prev.gps.second == record.gps.second &&
141 prev.gps.minute == record.gps.minute &&
142 prev.gps.hour == record.gps.hour)
144 if (record.state != state) {
145 state = record.state;
156 public void write(AltosRecordIterable iterable) {
157 for (AltosRecord record : iterable)
161 public AltosKML(File in_name) throws FileNotFoundException {
163 out = new PrintStream(name);
166 public AltosKML(String in_string) throws FileNotFoundException {
167 this(new File(in_string));