Index: /bbtracker_common/tags/release_0_4_0/trunk/.classpath
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/.classpath	(revision 29)
+++ /bbtracker_common/tags/release_0_4_0/trunk/.classpath	(revision 29)
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" path="src"/>
+	<classpathentry kind="src" path="res"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/CDC-1.1%Foundation-1.1"/>
+	<classpathentry kind="output" path="bin"/>
+</classpath>
Index: /bbtracker_common/tags/release_0_4_0/trunk/tests/org/bbtracker/UtilsTest.java
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/tests/org/bbtracker/UtilsTest.java	(revision 61)
+++ /bbtracker_common/tags/release_0_4_0/trunk/tests/org/bbtracker/UtilsTest.java	(revision 61)
@@ -0,0 +1,79 @@
+/*
+ * Copyright 2007 Joachim Sauer
+ * 
+ * This file is part of bbTracker.
+ * 
+ * bbTracker is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * bbTracker is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.bbtracker;
+
+import junit.framework.TestCase;
+
+public class UtilsTest extends TestCase {
+	public void testCourseToString3_4() throws Exception {
+		assertEquals("3Â°", Utils.courseToString(3.4f));
+	}
+
+	public void testCourseToString3_6() throws Exception {
+		assertEquals("4Â°", Utils.courseToString(3.6f));
+	}
+
+	public void testCourseToStringNaN() throws Exception {
+		assertEquals("???Â°", Utils.courseToString(Float.NaN));
+	}
+
+	public void testDegreesToStringPositive() throws Exception {
+		assertEquals(" 1Â° 6\u203239.60\u2033+", Utils.degreesToString(1.111, '+', '-'));
+	}
+
+	public void testDegreesToStringNegative() throws Exception {
+		assertEquals(" 1Â° 6\u203239.60\u2033-", Utils.degreesToString(-1.111, '+', '-'));
+	}
+
+	public void testDegreesToStringDecimalSecondsLessThan0_1() throws Exception {
+		assertEquals(" 1Â° 0\u2032 0.04\u2033+", Utils.degreesToString(1.00001, '+', '-'));
+	}
+
+	public void testLatitudeToStringPositive() throws Exception {
+		assertEquals(" 1Â° 0\u2032 0.00\u2033N", Utils.latitudeToString(1d));
+	}
+
+	public void testLatitudeToStringNegative() throws Exception {
+		assertEquals(" 1Â° 0\u2032 0.00\u2033S", Utils.latitudeToString(-1d));
+	}
+
+	public void testLongitudeToStringPositive() throws Exception {
+		assertEquals(" 1Â° 0\u2032 0.00\u2033E", Utils.longitudeToString(1d));
+	}
+
+	public void testLongitudeToStringNegative() throws Exception {
+		assertEquals(" 1Â° 0\u2032 0.00\u2033W", Utils.longitudeToString(-1d));
+	}
+
+	public void testSpeedToString0() throws Exception {
+		assertEquals("0.0 km/h", Utils.speedToString(0));
+	}
+
+	public void testSpeedToString1() throws Exception {
+		assertEquals("3.6 km/h", Utils.speedToString(1));
+	}
+
+	public void testSpeedToString5() throws Exception {
+		assertEquals("18.0 km/h", Utils.speedToString(5));
+	}
+
+	// Test case from http://www.movable-type.co.uk/scripts/latlong-vincenty.html
+	public void testDistanceVincenty() throws Exception {
+		assertEquals(54972.271, Utils.distance(-37.951033, 144.424868, -37.652821, 143.926496), 0.1d);
+	}
+}
Index: /bbtracker_common/tags/release_0_4_0/trunk/tests/org/bbtracker/MMathTest.java
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/tests/org/bbtracker/MMathTest.java	(revision 61)
+++ /bbtracker_common/tags/release_0_4_0/trunk/tests/org/bbtracker/MMathTest.java	(revision 61)
@@ -0,0 +1,36 @@
+/*
+ * Copyright 2007 Joachim Sauer
+ * 
+ * This file is part of bbTracker.
+ * 
+ * bbTracker is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * bbTracker is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.bbtracker;
+
+import junit.framework.TestCase;
+
+public class MMathTest extends TestCase {
+	private static final double DELTA = 1 / 1000d;
+
+	public void testAcos1() throws Exception {
+		assertEquals(0d, MMath.acos(1), DELTA);
+	}
+
+	public void testAcos0() throws Exception {
+		assertEquals(1.57079633d, MMath.acos(0), DELTA);
+	}
+
+	public void testAcos0_54() throws Exception {
+		assertEquals(1, MMath.acos(0.540302306d), DELTA);
+	}
+}
Index: /bbtracker_common/tags/release_0_4_0/trunk/.project
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/.project	(revision 4)
+++ /bbtracker_common/tags/release_0_4_0/trunk/.project	(revision 4)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>bbtracker_common</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+	</natures>
+</projectDescription>
Index: /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/Utils.java
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/Utils.java	(revision 101)
+++ /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/Utils.java	(revision 101)
@@ -0,0 +1,282 @@
+/*
+ * Copyright 2007 Joachim Sauer
+ * Copyright 2002-2006 Chriss Veness (vincenty formula in distance())
+ * 
+ * This file is part of bbTracker.
+ * 
+ * bbTracker is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * bbTracker is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.bbtracker;
+
+import java.util.Calendar;
+import java.util.Date;
+import java.util.TimeZone;
+
+public final class Utils {
+
+	// U+00B0 = Degree Sign
+	public static final char DEGREE = '\u00B0';
+
+	// U+2032 = Prime
+	public static final char MINUTE = '\u2032';
+
+	// U+2033 = Double Prime
+	public static final char SECOND = '\u2033';
+
+	private static final double WGS84_A = 6378137;
+
+	private static final double WGS84_B = 6356752.3142;
+
+	private static final double WGS84_F = 1 / 298.257223563;
+
+	private Utils() {
+		// don't Instantiate
+	}
+
+	public static String longitudeToString(final double longitude) {
+		return degreesToString(longitude, 'E', 'W');
+	}
+
+	public static String latitudeToString(final double latitude) {
+		return degreesToString(latitude, 'N', 'S');
+	}
+
+	public static String degreesToString(final double value, final char positiveChar, final char negativeChar) {
+		if (Double.isNaN(value)) {
+			return "-";
+		}
+		char c;
+		double d;
+		if (value < 0) {
+			d = -value;
+			c = negativeChar;
+		} else {
+			d = value;
+			c = positiveChar;
+		}
+		final StringBuffer buf = new StringBuffer(13);
+		buf.append(c);
+		final int degrees = (int) Math.floor(d);
+		d = (d - degrees) * 60;
+		final int minutes = (int) Math.floor(d);
+		d = (d - minutes) * 60;
+		final int seconds = (int) Math.floor(d);
+		d = (d - seconds) * 100;
+		final int hundrethSeconds = (int) Math.floor(d + 0.5d);
+
+		appendTwoDigits(buf, degrees, ' ').append(DEGREE);
+		appendTwoDigits(buf, minutes, ' ').append(MINUTE);
+		appendTwoDigits(buf, seconds, ' ').append('.');
+		appendTwoDigits(buf, hundrethSeconds, '0').append(SECOND);
+		return buf.toString();
+	}
+
+	private static StringBuffer appendTwoDigits(final StringBuffer buf, final int value, final char c) {
+		if (value < 10) {
+			buf.append(c);
+		}
+		buf.append(value);
+		return buf;
+	}
+
+	/**
+	 * Taken and converted to Java from http://www.movable-type.co.uk/scripts/latlong-vincenty.html
+	 * 
+	 * All parameters are interpreted as degrees.
+	 * 
+	 * @return great circle distance in meters
+	 */
+	public static double distance(final double lat1, final double lon1, final double lat2, final double lon2) {
+
+		final double L = Math.toRadians(lon2 - lon1);
+		final double U1 = MMath.atan((1 - WGS84_F) * Math.tan(Math.toRadians(lat1)));
+		final double U2 = MMath.atan((1 - WGS84_F) * Math.tan(Math.toRadians(lat2)));
+		final double sinU1 = Math.sin(U1), cosU1 = Math.cos(U1);
+		final double sinU2 = Math.sin(U2), cosU2 = Math.cos(U2);
+
+		double lambda = L, lambdaP = 2 * Math.PI;
+		double cosSqAlpha = 0d;
+		double sinSigma = 0d;
+		double cos2SigmaM = 0d;
+		double cosSigma = 0d;
+		double sigma = 0d;
+		int iterLimit = 20;
+		while (Math.abs(lambda - lambdaP) > 1e-12 && --iterLimit > 0) {
+			final double sinLambda = Math.sin(lambda), cosLambda = Math.cos(lambda);
+			sinSigma = Math.sqrt((cosU2 * sinLambda) * (cosU2 * sinLambda) +
+					(cosU1 * sinU2 - sinU1 * cosU2 * cosLambda) * (cosU1 * sinU2 - sinU1 * cosU2 * cosLambda));
+			if (sinSigma == 0) {
+				return 0; // coincident points
+			}
+			cosSigma = sinU1 * sinU2 + cosU1 * cosU2 * cosLambda;
+			sigma = MMath.atan2(sinSigma, cosSigma);
+			final double sinAlpha = cosU1 * cosU2 * sinLambda / sinSigma;
+			cosSqAlpha = 1 - sinAlpha * sinAlpha;
+			cos2SigmaM = cosSigma - 2 * sinU1 * sinU2 / cosSqAlpha;
+			if (Double.isNaN(cos2SigmaM)) {
+				cos2SigmaM = 0; // equatorial line: cosSqAlpha=0 (Â§6)
+			}
+			final double C = WGS84_F / 16 * cosSqAlpha * (4 + WGS84_F * (4 - 3 * cosSqAlpha));
+			lambdaP = lambda;
+			lambda = L + (1 - C) * WGS84_F * sinAlpha *
+					(sigma + C * sinSigma * (cos2SigmaM + C * cosSigma * (-1 + 2 * cos2SigmaM * cos2SigmaM)));
+		}
+		if (iterLimit == 0) {
+			return Double.NaN; // formula failed to converge
+		}
+
+		final double uSq = cosSqAlpha * (WGS84_A * WGS84_A - WGS84_B * WGS84_B) / (WGS84_B * WGS84_B);
+		final double A = 1 + uSq / 16384 * (4096 + uSq * (-768 + uSq * (320 - 175 * uSq)));
+		final double B = uSq / 1024 * (256 + uSq * (-128 + uSq * (74 - 47 * uSq)));
+		final double deltaSigma = B *
+				sinSigma *
+				(cos2SigmaM + B /
+						4 *
+						(cosSigma * (-1 + 2 * cos2SigmaM * cos2SigmaM) - B / 6 * cos2SigmaM *
+								(-3 + 4 * sinSigma * sinSigma) * (-3 + 4 * cos2SigmaM * cos2SigmaM)));
+		final double s = WGS84_B * A * (sigma - deltaSigma);
+
+		return s;
+	}
+
+	public static String dateToString(final Date date) {
+		final String orig = date.toString();
+		final int size = orig.length();
+		// luckily enough Date.toString() is well-defined, so we can cut the TimeZone info out
+		return orig.substring(0, 20) + orig.substring(size - 4, size);
+	}
+
+	public static String calendarToCompactString(final Calendar calendar) {
+		final StringBuffer sb = new StringBuffer(15);
+		sb.append(calendar.get(Calendar.YEAR));
+		appendTwoDigits(sb, calendar.get(Calendar.MONTH) + 1, '0');
+		appendTwoDigits(sb, calendar.get(Calendar.DAY_OF_MONTH), '0');
+		sb.append('_');
+		appendTwoDigits(sb, calendar.get(Calendar.HOUR_OF_DAY), '0');
+		appendTwoDigits(sb, calendar.get(Calendar.MINUTE), '0');
+		appendTwoDigits(sb, calendar.get(Calendar.SECOND), '0');
+		return sb.toString();
+	}
+
+	/**
+	 * Calculates a valid xsd:dateTime value from a given date.
+	 * 
+	 * The XML Schema standard defines a dateTime roughly as "YYYY-MM-DDThh:mm:ss(.s+)? (zzzzzz)?"
+	 * 
+	 * @param date
+	 * @return
+	 */
+	public static String dateToXmlDateTime(final Date date) {
+		final TimeZone utc = TimeZone.getTimeZone("GMT");
+		final Calendar c = Calendar.getInstance(utc);
+		c.setTime(date);
+		final StringBuffer result = new StringBuffer(24);
+		result.append(c.get(Calendar.YEAR)).append('-');
+		appendTwoDigits(result, c.get(Calendar.MONTH) + 1, '0').append('-');
+		appendTwoDigits(result, c.get(Calendar.DATE), '0').append('T');
+		appendTwoDigits(result, c.get(Calendar.HOUR_OF_DAY), '0').append(':');
+		appendTwoDigits(result, c.get(Calendar.MINUTE), '0').append(':');
+		appendTwoDigits(result, c.get(Calendar.SECOND), '0').append('.');
+		final int millisecond = c.get(Calendar.MILLISECOND);
+		if (millisecond < 100) {
+			result.append('0');
+		}
+		appendTwoDigits(result, millisecond, '0').append('Z');
+
+		return result.toString();
+	}
+
+	public static String escapeXml(final String xml) {
+		final StringBuffer escaped = new StringBuffer(xml.length() + 4);
+		final char[] chars = xml.toCharArray();
+		for (int i = 0; i < chars.length; i++) {
+			final char c = chars[i];
+			switch (c) {
+			case '<':
+				escaped.append("&lt;");
+				break;
+			case '&':
+				escaped.append("&amp;");
+				break;
+			default:
+				escaped.append(c);
+			}
+		}
+		return escaped.toString();
+	}
+
+	public static String courseToString(final float course) {
+		if (Float.isNaN(course)) {
+			return "???" + DEGREE;
+		} else {
+			return String.valueOf((int) (Math.floor(course + 0.5d))) + DEGREE;
+		}
+	}
+
+	/**
+	 * Converts a given double value to a String with a single digit after that decimal point and optionally strips ".0"
+	 * if present.
+	 */
+	public static String doubleToString(final double value, final boolean stripDotZero) {
+		return fixedPointToString((long) (value * 10), stripDotZero);
+	}
+
+	/**
+	 * Converts a given float value to a String with a single digit after that decimal point and optionally strips ".0"
+	 * if present.
+	 */
+	public static String floatToString(final float value, final boolean stripDotZero) {
+		return fixedPointToString((long) (value * 10), stripDotZero);
+	}
+
+	private static String fixedPointToString(final long value, final boolean stripDotZero) {
+		final String string = String.valueOf(value);
+		final int stringLength = string.length();
+		final StringBuffer result = new StringBuffer(stringLength + 1);
+		result.append(string.substring(0, stringLength - 1));
+		if (result.length() == 0) {
+			result.append("0");
+		}
+		if (!(stripDotZero && string.endsWith("0"))) {
+			result.append('.');
+			result.append(string.charAt(stringLength - 1));
+		}
+		return result.toString();
+	}
+
+	public static String durationToString(final long msec) {
+		// i do hope no one uses bbTracker do record tracks that
+		// are longer than Integer.MAX_VALUE seconds.
+		final StringBuffer sb = new StringBuffer(8);
+		int sec = (int) (msec / 1000);
+		if (sec > 60 * 60) {
+			final int hours = sec / (60 * 60);
+			sb.append(hours);
+			sec -= hours * (60 * 60);
+			sb.append(':');
+		}
+
+		final int minutes = sec / 60;
+		if (sb.length() > 0) {
+			appendTwoDigits(sb, minutes, '0');
+		} else {
+			sb.append(minutes);
+		}
+		sb.append(':');
+		sec -= minutes * 60;
+
+		appendTwoDigits(sb, sec, '0');
+
+		return sb.toString();
+	}
+}
Index: /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/Track.java
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/Track.java	(revision 93)
+++ /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/Track.java	(revision 93)
@@ -0,0 +1,278 @@
+/*
+ * Copyright 2007 Joachim Sauer
+ * 
+ * This file is part of bbTracker.
+ * 
+ * bbTracker is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * bbTracker is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.bbtracker;
+
+import java.io.DataInputStream;
+import java.io.DataOutputStream;
+import java.io.IOException;
+import java.util.Date;
+import java.util.Enumeration;
+import java.util.Vector;
+
+public class Track {
+	private final Vector segments;
+
+	private String name;
+
+	private Date creationDate;
+
+	private transient int pointCount;
+
+	private transient double minLatitude = Double.POSITIVE_INFINITY;
+
+	private transient double maxLatitude = Double.NEGATIVE_INFINITY;
+
+	private transient double minLongitude = Double.POSITIVE_INFINITY;
+
+	private transient double maxLongitude = Double.NEGATIVE_INFINITY;
+
+	private transient float maxSpeed = Float.NaN;
+
+	private transient float minElevation = Float.NaN;
+
+	private transient float maxElevation = Float.NaN;
+
+	public Track(final String name) {
+		this.name = name;
+		creationDate = new Date();
+		segments = new Vector();
+		pointCount = 0;
+	}
+
+	private Track(final String name, final int size) {
+		this.name = name;
+		creationDate = new Date();
+		segments = new Vector(size);
+		pointCount = 0;
+	}
+
+	public String getName() {
+		return name;
+	}
+
+	public void setName(final String name) {
+		this.name = name;
+	}
+
+	public Date getCreationDate() {
+		return creationDate;
+	}
+
+	public int getPointCount() {
+		return pointCount;
+	}
+
+	public TrackPoint getPoint(final int nr) {
+		if (nr < 0 || nr >= pointCount) {
+			throw new IndexOutOfBoundsException("no such point: " + nr + ", must be >= 0 and < " + pointCount);
+		}
+		int i = nr;
+		final Enumeration segs = segments.elements();
+		while (segs.hasMoreElements()) {
+			final TrackSegment seg = (TrackSegment) segs.nextElement();
+			final int count = seg.getPointCount();
+			if (i < count) {
+				return seg.getPoint(i);
+			} else {
+				i -= count;
+			}
+		}
+		throw new IllegalStateException("pointCount corrupt!");
+	}
+
+	public long getPointOffset(final TrackPoint point) {
+		if (getPointCount() == 0) {
+			throw new IllegalStateException("No points yet, can't calculate point offset.");
+		}
+		return point.getTimestamp() - getPoint(0).getTimestamp();
+	}
+
+	public int getSegmentCount() {
+		return segments.size();
+	}
+
+	public TrackSegment getSegment(final int i) {
+		return (TrackSegment) segments.elementAt(i);
+	}
+
+	public Enumeration getSegments() {
+		return segments.elements();
+	}
+
+	public double getMaxLatitude() {
+		return maxLatitude;
+	}
+
+	public double getMinLatitude() {
+		return minLatitude;
+	}
+
+	public double getMaxLongitude() {
+		return maxLongitude;
+	}
+
+	public double getMinLongitude() {
+		return minLongitude;
+	}
+
+	public double getLength() {
+		final Enumeration e = segments.elements();
+		double length = 0d;
+		while (e.hasMoreElements()) {
+			length += ((TrackSegment) e.nextElement()).getLength();
+		}
+		return length;
+	}
+
+	public float getMaxSpeed() {
+		return maxSpeed;
+	}
+
+	public float getMaxElevation() {
+		return maxElevation;
+	}
+
+	public float getMinElevation() {
+		return minElevation;
+	}
+
+	public boolean addPoint(final TrackPoint point) {
+		final int segmentCount = segments.size();
+		final TrackSegment currentSegment;
+		if (segmentCount == 0) {
+			currentSegment = newSegment();
+		} else {
+			currentSegment = (TrackSegment) segments.elementAt(segmentCount - 1);
+		}
+		point.setIndex(pointCount);
+		final boolean boundsChanged = currentSegment.addPoint(point);
+		if (boundsChanged) {
+			final double lat = point.getLatitude();
+			final double lon = point.getLongitude();
+			updateMinCoordinates(lat, lon);
+			updateMaxCoordinates(lat, lon);
+		}
+		updateSpeedAndElevation(point.getSpeed(), point.getElevation());
+		pointCount++;
+		return boundsChanged;
+	}
+
+	private void updateMinCoordinates(final double lat, final double lon) {
+		if (lat < minLatitude) {
+			minLatitude = lat;
+		}
+		if (lon < minLongitude) {
+			minLongitude = lon;
+		}
+	}
+
+	private void updateMaxCoordinates(final double lat, final double lon) {
+		if (lat > maxLatitude) {
+			maxLatitude = lat;
+		}
+		if (lon > maxLongitude) {
+			maxLongitude = lon;
+		}
+	}
+
+	private void updateSpeedAndElevation(final float speed, final float elevation) {
+		if (!Float.isNaN(speed) && (Float.isNaN(maxSpeed) || speed > maxSpeed)) {
+			maxSpeed = speed;
+		}
+		if (!Float.isNaN(elevation)) {
+			if (Float.isNaN(minElevation) || elevation < minElevation) {
+				minElevation = elevation;
+			}
+			if (Float.isNaN(maxElevation) || elevation > maxElevation) {
+				maxElevation = elevation;
+			}
+
+		}
+
+	}
+
+	public TrackSegment newSegment() {
+		if (segments.size() != 0) {
+			final TrackSegment lastSegment = (TrackSegment) segments.elementAt(segments.size());
+			if (lastSegment.getPointCount() == 0) {
+				return lastSegment;
+			}
+		}
+		final TrackSegment newSegment = new TrackSegment();
+		segments.addElement(newSegment);
+		return newSegment;
+	}
+
+	private static final int streamVersion = 1;
+
+	public void writeToStream(final DataOutputStream out) throws IOException {
+		out.writeInt(streamVersion);
+		out.writeUTF(name == null ? "" : name);
+		out.writeLong(creationDate.getTime());
+		out.writeInt(segments.size());
+		for (int i = 0; i < segments.size(); i++) {
+			final TrackSegment segment = (TrackSegment) segments.elementAt(i);
+			segment.writeToStream(out);
+		}
+	}
+
+	public static Track readFromStream(final DataInputStream in) throws IOException {
+		final int version = in.readInt();
+		if (version != streamVersion) {
+			return null;
+		}
+		final String name = in.readUTF();
+		final Date creationDate = new Date(in.readLong());
+		final int segmentCount = in.readInt();
+		final Track track = new Track(name.length() == 0 ? null : name, segmentCount);
+		int p = 0;
+		for (int i = 0; i < segmentCount; i++) {
+			final TrackSegment segment = TrackSegment.readFromStream(in);
+			track.segments.addElement(segment);
+			track.pointCount += segment.getPointCount();
+			track.updateMinCoordinates(segment.minLatitude, segment.minLongitude);
+			track.updateMaxCoordinates(segment.maxLatitude, segment.maxLongitude);
+			final Enumeration points = segment.getPoints();
+			while (points.hasMoreElements()) {
+				final TrackPoint point = (TrackPoint) points.nextElement();
+				point.setIndex(p++);
+				track.updateSpeedAndElevation(point.getSpeed(), point.getElevation());
+			}
+		}
+		track.creationDate = creationDate;
+		return track;
+	}
+
+	public static String readNameFromStream(final DataInputStream in) throws IOException {
+		final int version = in.readInt();
+		if (version != streamVersion) {
+			return "Wrong version! Got " + version + " instead of " + streamVersion + "!";
+		}
+		final String name = in.readUTF();
+
+		return name;
+	}
+
+	/**
+	 * Can only be used immediately after {@link #readDateFromStream(DataInputStream)}
+	 */
+	public static Date readDateFromStream(final DataInputStream in) throws IOException {
+		final Date creationDate = new Date(in.readLong());
+		return creationDate;
+	}
+}
Index: /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/MMath.java
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/MMath.java	(revision 61)
+++ /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/MMath.java	(revision 61)
@@ -0,0 +1,142 @@
+/*
+ * Copyright 2006 Richard Carless
+ * 
+ * This file is part of bbTracker.
+ * 
+ * bbTracker is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * bbTracker is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.bbtracker;
+
+/*
+ * mMath.java
+ * 
+ * Originally found at http://discussion.forum.nokia.com/forum/showthread.php?t=72840
+ * 
+ * Created on 14 January 2006, 20:00
+ * 
+ * (c) 2006 Richard Carless
+ * 
+ * Fills holes in the java maths library
+ */
+public class MMath {
+	// constants
+	static final double sq2p1 = 2.414213562373095048802e0;
+
+	static final double sq2m1 = .414213562373095048802e0;
+
+	static final double p4 = .161536412982230228262e2;
+
+	static final double p3 = .26842548195503973794141e3;
+
+	static final double p2 = .11530293515404850115428136e4;
+
+	static final double p1 = .178040631643319697105464587e4;
+
+	static final double p0 = .89678597403663861959987488e3;
+
+	static final double q4 = .5895697050844462222791e2;
+
+	static final double q3 = .536265374031215315104235e3;
+
+	static final double q2 = .16667838148816337184521798e4;
+
+	static final double q1 = .207933497444540981287275926e4;
+
+	static final double q0 = .89678597403663861962481162e3;
+
+	static final double PIO2 = 1.5707963267948966135E0;
+
+	// reduce
+	private static double mxatan(final double arg) {
+		double argsq, value;
+
+		argsq = arg * arg;
+		value = ((((p4 * argsq + p3) * argsq + p2) * argsq + p1) * argsq + p0);
+		value = value / (((((argsq + q4) * argsq + q3) * argsq + q2) * argsq + q1) * argsq + q0);
+		return value * arg;
+	}
+
+	// reduce
+	private static double msatan(final double arg) {
+		if (arg < sq2m1) {
+			return mxatan(arg);
+		}
+		if (arg > sq2p1) {
+			return PIO2 - mxatan(1 / arg);
+		}
+		return PIO2 / 2 + mxatan((arg - 1) / (arg + 1));
+	}
+
+	// implementation of atan
+	public static double atan(double arg) {
+		if (arg > 0) {
+			return msatan(arg);
+		}
+		return -msatan(-arg);
+	}
+
+	// implementation of atan2
+	public static double atan2(double arg1, final double arg2) {
+		if (arg1 + arg2 == arg1) {
+			if (arg1 >= 0) {
+				return PIO2;
+			}
+			return -PIO2;
+		}
+		arg1 = atan(arg1 / arg2);
+		if (arg2 < 0) {
+			if (arg1 <= 0) {
+				return arg1 + Math.PI;
+			}
+			return arg1 - Math.PI;
+		}
+		return arg1;
+
+	}
+
+	// implementation of asin
+	public static double asin(double arg) {
+		double temp;
+		int sign;
+
+		sign = 0;
+		if (arg < 0) {
+			arg = -arg;
+			sign++;
+		}
+		if (arg > 1) {
+			return Double.NaN;
+		}
+		temp = Math.sqrt(1 - arg * arg);
+		if (arg > 0.7) {
+			temp = PIO2 - atan(temp / arg);
+		} else {
+			temp = atan(arg / temp);
+		}
+		if (sign > 0) {
+			temp = -temp;
+		}
+		return temp;
+	}
+
+	// implementation of acos
+	public static double acos(final double arg) {
+		if (arg > 1 || arg < -1) {
+			return Double.NaN;
+		}
+		return PIO2 - asin(arg);
+	}
+
+	public MMath() {
+	}
+}
Index: /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/TrackSegment.java
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/TrackSegment.java	(revision 61)
+++ /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/TrackSegment.java	(revision 61)
@@ -0,0 +1,110 @@
+/*
+ * Copyright 2007 Joachim Sauer
+ * 
+ * This file is part of bbTracker.
+ * 
+ * bbTracker is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * bbTracker is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.bbtracker;
+
+import java.io.DataInputStream;
+import java.io.DataOutputStream;
+import java.io.IOException;
+import java.util.Enumeration;
+import java.util.Vector;
+
+public class TrackSegment {
+	private final Vector points;
+
+	transient double minLatitude = Double.POSITIVE_INFINITY;
+
+	transient double maxLatitude = Double.NEGATIVE_INFINITY;
+
+	transient double minLongitude = Double.POSITIVE_INFINITY;
+
+	transient double maxLongitude = Double.NEGATIVE_INFINITY;
+
+	transient double length = 0;
+
+	TrackSegment() {
+		points = new Vector();
+	}
+
+	TrackSegment(final int size) {
+		points = new Vector(size);
+	}
+
+	boolean addPoint(final TrackPoint point) {
+		boolean boundsChanged = false;
+		final double lat = point.getLatitude();
+		final double lon = point.getLongitude();
+		if (lat < minLatitude) {
+			minLatitude = lat;
+			boundsChanged = true;
+		}
+		if (lat > maxLatitude) {
+			maxLatitude = lat;
+			boundsChanged = true;
+		}
+		if (lon < minLongitude) {
+			minLongitude = lon;
+			boundsChanged = true;
+		}
+		if (lon > maxLongitude) {
+			maxLongitude = lon;
+			boundsChanged = true;
+		}
+		if (points.size() > 0) {
+			final TrackPoint prevPoint = (TrackPoint) points.elementAt(points.size() - 1);
+			final double dist = Utils.distance(prevPoint.getLatitude(), prevPoint.getLongitude(), lat, lon);
+			length += dist;
+		}
+		points.addElement(point);
+		return boundsChanged;
+	}
+
+	public TrackPoint getPoint(final int i) {
+		return (TrackPoint) points.elementAt(i);
+	}
+
+	public int getPointCount() {
+		return points.size();
+	}
+
+	public double getLength() {
+		return length;
+	}
+
+	public Enumeration getPoints() {
+		return points.elements();
+	}
+
+	public void writeToStream(final DataOutputStream out) throws IOException {
+		final int pointCount = points.size();
+		out.writeInt(pointCount);
+		for (int i = 0; i < pointCount; i++) {
+			final TrackPoint point = (TrackPoint) points.elementAt(i);
+			point.writeToStream(out);
+		}
+	}
+
+	public static TrackSegment readFromStream(final DataInputStream in) throws IOException {
+		final int size = in.readInt();
+		final TrackSegment segment = new TrackSegment(size);
+		for (int i = 0; i < size; i++) {
+			final TrackPoint point = TrackPoint.readFromStream(in);
+			segment.addPoint(point);
+		}
+		return segment;
+	}
+}
Index: /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/UnitConverter.java
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/UnitConverter.java	(revision 61)
+++ /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/UnitConverter.java	(revision 61)
@@ -0,0 +1,163 @@
+/*
+ * Copyright 2007 Joachim Sauer
+ * 
+ * This file is part of bbTracker.
+ * 
+ * bbTracker is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * bbTracker is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.bbtracker;
+
+/**
+ * Converts the values and units as handled internally by bbTracker to displayable strings.
+ * 
+ * @author Joachim Sauer
+ */
+public abstract class UnitConverter {
+	/**
+	 * @param speed
+	 *            the speed in m/s
+	 * @return a human readable String containing the speed including a unit.
+	 */
+	public abstract String speedToString(final float speed);
+
+	/**
+	 * @param elevation
+	 *            the elevation in meters
+	 * @return a human readable String containing the elevation including a unit.
+	 */
+	public abstract String elevationToString(final float elevation);
+
+	/**
+	 * @param distance
+	 *            the distance in meter
+	 * @return a human readable String containing the distance including a unit.
+	 */
+	public abstract String distanceToString(final double distance);
+
+	public abstract ScaleConfiguration getScaleDistance(final double availableMeter);
+
+	public abstract ScaleConfiguration getScaleElevation(final int min, final int max);
+
+	public abstract ScaleConfiguration getScaleSpeed(final double maxSpeed);
+
+	/**
+	 * Finds a "round" number that's less than or equal to the boundary.
+	 */
+	protected int getRoundScaleSize(final int boundary) {
+		int scaleSize = 1;
+
+		// find the biggest power of ten that matches
+		while (scaleSize < boundary / 10) {
+			scaleSize = scaleSize * 10;
+		}
+
+		if (scaleSize * 5 < boundary) {
+			// see if 5, 50, 500, ... matches
+			scaleSize = scaleSize * 5;
+		} else if (scaleSize * 2 < boundary) {
+			// or at least 2, 20, 200, ... matches
+			scaleSize = scaleSize * 2;
+		}
+		return scaleSize;
+	}
+
+	protected static ScaleConfiguration getScaleConfiguration(final String unit, final double min, final double max) {
+		final double diff = max - min;
+		if (diff == 0) {
+			final ScaleConfiguration conf = new ScaleConfiguration();
+			conf.unit = unit;
+			conf.lengthInSourceUnits = diff;
+			conf.labelLocation = new float[] { (float) min };
+			conf.labelValue = new float[] { 0.0f };
+			return conf;
+		}
+
+		final ScaleConfiguration conf = new ScaleConfiguration();
+		conf.unit = unit;
+		conf.lengthInSourceUnits = diff;
+
+		// calculate approximate tick size (find correct power of ten)
+		double tickSize;
+		// I wanted to use log10 to find the correct magnitude, but that's not available in CLDC 1.1
+		tickSize = 1;
+		if (tickSize > diff) {
+			while (tickSize > diff) {
+				tickSize /= 10;
+			}
+		} else {
+			while (tickSize < diff / 10) {
+				tickSize *= 10;
+			}
+		}
+
+		// adjust to get a reasonable number of ticks (usually between 3 and 6)
+		int ticks = (int) (diff / tickSize);
+		if (ticks > 5) {
+			tickSize *= 2;
+		}
+
+		// might be one to big, but that's better than one to small
+		ticks = (int) (diff / tickSize) + 1;
+
+		conf.labelLocation = new float[ticks];
+		conf.labelValue = new float[ticks];
+
+		// find first tick
+		double tMin = (int) (min / tickSize) * tickSize;
+		if (tMin < min) {
+			tMin += tickSize;
+		}
+
+		double t = tMin;
+		int i = 0;
+		do {
+			// adding a multiple results in smaller numerical errors than adding each iteration
+			conf.labelValue[i] = (float) t;
+			conf.labelLocation[i] = (float) ((t - min) / diff);
+			t = tMin + (++i) * tickSize;
+		} while (t <= max);
+
+		if (i < ticks) {
+			conf.labelLocation[i] = Float.NaN;
+			conf.labelValue[i] = Float.NaN;
+		}
+		return conf;
+	}
+
+	public static class ScaleConfiguration {
+		ScaleConfiguration() {
+		}
+
+		public String unit;
+
+		/**
+		 * The values for the labels.
+		 * 
+		 * Any value might be {@link Float#NaN} to indicate an unused entry (this is used to avoid unnecessary
+		 * re-allocation of a smaller array).
+		 */
+		public float[] labelValue;
+
+		/**
+		 * The relative label positions ranging from 0 (minimum) to 1 (maximum).
+		 * 
+		 * Any value might be {@link Float#NaN} just as in {@link #labelValue}.
+		 */
+		public float[] labelLocation;
+
+		/**
+		 * The length in source units (meter for distance and elevation, m/s for speed)
+		 */
+		public double lengthInSourceUnits;
+	}
+}
Index: /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/ImperialUnitConverter.java
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/ImperialUnitConverter.java	(revision 61)
+++ /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/ImperialUnitConverter.java	(revision 61)
@@ -0,0 +1,88 @@
+/*
+ * Copyright 2007 Joachim Sauer
+ * 
+ * This file is part of bbTracker.
+ * 
+ * bbTracker is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * bbTracker is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.bbtracker;
+
+public class ImperialUnitConverter extends UnitConverter {
+	public static final float METER_TO_FOOT_FACTOR = 1 / 0.3048f;
+
+	public static final int FEET_IN_A_MILE = 5280;
+
+	public static final float METER_TO_MILE_FACTOR = METER_TO_FOOT_FACTOR / FEET_IN_A_MILE;
+
+	public static final float MS_TO_MPH_FACTOR = METER_TO_MILE_FACTOR * 3600;
+
+	public String speedToString(final float speed) {
+		if (Float.isNaN(speed)) {
+			return "-mph";
+		}
+		final float mph = speed * MS_TO_MPH_FACTOR;
+		return Utils.floatToString(mph, false) + "mph";
+	}
+
+	public String elevationToString(final float elevation) {
+		if (Float.isNaN(elevation)) {
+			return "-ft";
+		}
+		final int feet = (int) (elevation * METER_TO_FOOT_FACTOR);
+		return feet + "ft";
+	}
+
+	public String distanceToString(final double length) {
+		if (Double.isNaN(length)) {
+			return "-mi";
+		}
+		final double miles = length * METER_TO_MILE_FACTOR;
+		if (miles < 1) {
+			final int feet = (int) (length * METER_TO_FOOT_FACTOR);
+			return feet + "ft";
+		} else {
+			return Utils.doubleToString(miles, false) + "mi";
+		}
+	}
+
+	public ScaleConfiguration getScaleDistance(final double lengthInMeter) {
+		final double lengthInFoot = lengthInMeter * METER_TO_FOOT_FACTOR;
+		double factor = METER_TO_FOOT_FACTOR;
+		final ScaleConfiguration conf = new ScaleConfiguration();
+		int available;
+		if (lengthInFoot < FEET_IN_A_MILE) {
+			// feet
+			conf.unit = "ft";
+			available = (int) lengthInFoot;
+		} else {
+			// miles
+			conf.unit = "mi";
+			factor = factor / FEET_IN_A_MILE;
+			available = (int) (lengthInFoot / FEET_IN_A_MILE);
+		}
+
+		final int lengthInUnits = getRoundScaleSize(available);
+		conf.lengthInSourceUnits = lengthInUnits / factor;
+		conf.labelLocation = new float[] { 0.0f, 0.5f, 1.0f };
+		conf.labelValue = new float[] { 0f, lengthInUnits / 2, lengthInUnits };
+		return conf;
+	}
+
+	public ScaleConfiguration getScaleElevation(final int min, final int max) {
+		return getScaleConfiguration("ft", min * METER_TO_FOOT_FACTOR, max * METER_TO_FOOT_FACTOR);
+	}
+
+	public ScaleConfiguration getScaleSpeed(final double maxSpeed) {
+		return getScaleConfiguration("mph", 0, (float) (maxSpeed * MS_TO_MPH_FACTOR));
+	}
+}
Index: /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/MetricUnitConverter.java
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/MetricUnitConverter.java	(revision 67)
+++ /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/MetricUnitConverter.java	(revision 67)
@@ -0,0 +1,75 @@
+/*
+ * Copyright 2007 Joachim Sauer
+ * 
+ * This file is part of bbTracker.
+ * 
+ * bbTracker is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * bbTracker is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.bbtracker;
+
+public class MetricUnitConverter extends UnitConverter {
+	public static final float MS_TO_KMH_FACTOR = 3.6f;
+
+	// while I'm at putting magic values into constants ...
+	public static final int METER_TO_KM_FACTOR = 1000;
+
+	public String speedToString(final float speed) {
+		if (Float.isNaN(speed)) {
+			return "-km/h";
+		}
+		final float value = speed * MS_TO_KMH_FACTOR;
+		return Utils.floatToString(value, false) + "km/h";
+	}
+
+	public String elevationToString(final float elevation) {
+		if (Float.isNaN(elevation)) {
+			return "-m";
+		}
+		return ((int) elevation) + "m";
+	}
+
+	public String distanceToString(final double length) {
+		if (Double.isNaN(length)) {
+			return "-km";
+		} else if (length < METER_TO_KM_FACTOR) {
+			return ((int) length) + "m";
+		} else {
+			return Utils.doubleToString(length / 1000, false) + "km";
+		}
+	}
+
+	public ScaleConfiguration getScaleDistance(final double lengthInMeter) {
+		final int scaleSize = getRoundScaleSize((int) lengthInMeter);
+		final ScaleConfiguration conf = new ScaleConfiguration();
+		int lengthInUnits;
+		if (scaleSize >= 1000) {
+			conf.unit = "km";
+			lengthInUnits = scaleSize / 1000;
+		} else {
+			conf.unit = "m";
+			lengthInUnits = scaleSize;
+		}
+		conf.lengthInSourceUnits = scaleSize;
+		conf.labelLocation = new float[] { 0.0f, 0.5f, 1.0f };
+		conf.labelValue = new float[] { 0f, lengthInUnits / 2f, lengthInUnits };
+		return conf;
+	}
+
+	public ScaleConfiguration getScaleElevation(final int min, final int max) {
+		return getScaleConfiguration("m", min, max);
+	}
+
+	public ScaleConfiguration getScaleSpeed(final double maxSpeed) {
+		return getScaleConfiguration("km/h", 0f, (float) (maxSpeed * MS_TO_KMH_FACTOR));
+	}
+}
Index: /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/TrackPoint.java
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/TrackPoint.java	(revision 61)
+++ /bbtracker_common/tags/release_0_4_0/trunk/src/org/bbtracker/TrackPoint.java	(revision 61)
@@ -0,0 +1,174 @@
+/*
+ * Copyright 2007 Joachim Sauer
+ * 
+ * This file is part of bbTracker.
+ * 
+ * bbTracker is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * bbTracker is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.bbtracker;
+
+import java.io.DataInputStream;
+import java.io.DataOutputStream;
+import java.io.IOException;
+
+public class TrackPoint {
+	private long timestamp;
+
+	private double latitude;
+
+	private double longitude;
+
+	private float elevation;
+
+	private float speed;
+
+	private float course;
+
+	private String name;
+
+	private boolean interpolated;
+
+	private boolean standing = false;
+
+	private transient int index;
+
+	public TrackPoint(final long timestamp, final double latitude, final double longitude, final float elevation,
+			final float speed, final float course, final boolean interpolated) {
+		this.timestamp = timestamp;
+		this.latitude = latitude;
+		this.longitude = longitude;
+		this.elevation = elevation;
+		this.speed = speed;
+		this.course = course;
+		this.interpolated = interpolated;
+		name = null;
+	}
+
+	public String getName() {
+		return name;
+	}
+
+	void setName(final String name) {
+		this.name = name;
+	}
+
+	public long getTimestamp() {
+		return timestamp;
+	}
+
+	public void setTimestamp(final long timestamp) {
+		this.timestamp = timestamp;
+	}
+
+	public double getLatitude() {
+		return latitude;
+	}
+
+	public void setLatitude(final double latitude) {
+		this.latitude = latitude;
+	}
+
+	public double getLongitude() {
+		return longitude;
+	}
+
+	public void setLongitude(final double longitude) {
+		this.longitude = longitude;
+	}
+
+	public float getElevation() {
+		return elevation;
+	}
+
+	public void setElevation(final float elevation) {
+		this.elevation = elevation;
+	}
+
+	public float getSpeed() {
+		return speed;
+	}
+
+	public void setSpeed(final float speed) {
+		this.speed = speed;
+	}
+
+	public float getCourse() {
+		return course;
+	}
+
+	public void setCourse(final float course) {
+		this.course = course;
+	}
+
+	public boolean isInterpolated() {
+		return interpolated;
+	}
+
+	public void setInterpolated(final boolean interpolated) {
+		this.interpolated = interpolated;
+	}
+
+	public boolean isStanding() {
+		return standing;
+	}
+
+	public void setStanding(final boolean standing) {
+		this.standing = standing;
+	}
+
+	void setIndex(final int index) {
+		this.index = index;
+	}
+
+	public int getIndex() {
+		return index;
+	}
+
+	public void writeToStream(final DataOutputStream out) throws IOException {
+		out.writeLong(timestamp);
+		out.writeDouble(latitude);
+		out.writeDouble(longitude);
+		out.writeFloat(elevation);
+		out.writeFloat(speed);
+		out.writeFloat(course);
+		out.writeBoolean(interpolated);
+		out.writeBoolean(standing);
+		out.writeUTF(name == null ? "" : name);
+	}
+
+	public static TrackPoint readFromStream(final DataInputStream in) throws IOException {
+		final long timestamp = in.readLong();
+		final double latitude = in.readDouble();
+		final double longitude = in.readDouble();
+		final float elevation = in.readFloat();
+		final float speed = in.readFloat();
+		final float course = in.readFloat();
+		final boolean interpolated = in.readBoolean();
+		final boolean standing = in.readBoolean();
+		final String name = in.readUTF();
+		final TrackPoint point = new TrackPoint(timestamp, latitude, longitude, elevation, speed, course, interpolated);
+		point.setName(name.length() == 0 ? null : name);
+		point.setStanding(standing);
+		return point;
+	}
+
+	public double distance(final TrackPoint point) {
+
+		final double lat1 = Math.toRadians(getLatitude());
+		final double lon1 = Math.toRadians(getLongitude());
+		final double lat2 = Math.toRadians(point.getLatitude());
+		final double lon2 = Math.toRadians(point.getLongitude());
+
+		return Utils.distance(lat1, lon1, lat2, lon2);
+	}
+}
Index: /bbtracker_common/tags/release_0_4_0/trunk/COPYING
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/COPYING	(revision 61)
+++ /bbtracker_common/tags/release_0_4_0/trunk/COPYING	(revision 61)
@@ -0,0 +1,339 @@
+		    GNU GENERAL PUBLIC LICENSE
+		       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+			    Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.)  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+  To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must show them these terms so they know their
+rights.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+		    GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+  1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+  2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+    a) You must cause the modified files to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    b) You must cause any work that you distribute or publish, that in
+    whole or in part contains or is derived from the Program or any
+    part thereof, to be licensed as a whole at no charge to all third
+    parties under the terms of this License.
+
+    c) If the modified program normally reads commands interactively
+    when run, you must cause it, when started running for such
+    interactive use in the most ordinary way, to print or display an
+    announcement including an appropriate copyright notice and a
+    notice that there is no warranty (or else, saying that you provide
+    a warranty) and that users may redistribute the program under
+    these conditions, and telling the user how to view a copy of this
+    License.  (Exception: if the Program itself is interactive but
+    does not normally print such an announcement, your work based on
+    the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works.  But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+    a) Accompany it with the complete corresponding machine-readable
+    source code, which must be distributed under the terms of Sections
+    1 and 2 above on a medium customarily used for software interchange; or,
+
+    b) Accompany it with a written offer, valid for at least three
+    years, to give any third party, for a charge no more than your
+    cost of physically performing source distribution, a complete
+    machine-readable copy of the corresponding source code, to be
+    distributed under the terms of Sections 1 and 2 above on a medium
+    customarily used for software interchange; or,
+
+    c) Accompany it with the information you received as to the offer
+    to distribute corresponding source code.  (This alternative is
+    allowed only for noncommercial distribution and only if you
+    received the program in object code or executable form with such
+    an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it.  For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable.  However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+  4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License.  Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+  5. You are not required to accept this License, since you have not
+signed it.  However, nothing else grants you permission to modify or
+distribute the Program or its derivative works.  These actions are
+prohibited by law if you do not accept this License.  Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+  6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions.  You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+  7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all.  For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices.  Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+  8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded.  In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+  9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number.  If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation.  If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+  10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission.  For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this.  Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+			    NO WARRANTY
+
+  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+		     END OF TERMS AND CONDITIONS
+
+	    How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License along
+    with this program; if not, write to the Free Software Foundation, Inc.,
+    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+    Gnomovision version 69, Copyright (C) year name of author
+    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary.  Here is a sample; alter the names:
+
+  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+  `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+  <signature of Ty Coon>, 1 April 1989
+  Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs.  If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library.  If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.
Index: /bbtracker_common/tags/release_0_4_0/trunk/gpx_1_0.xsd
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/gpx_1_0.xsd	(revision 4)
+++ /bbtracker_common/tags/release_0_4_0/trunk/gpx_1_0.xsd	(revision 4)
@@ -0,0 +1,227 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- GPX.xsd version 1.0 - For more information on GPX and this schema, visit http://www.topografix.com/gpx.asp -->
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:gpx="http://www.topografix.com/GPX/1/0" targetNamespace="http://www.topografix.com/GPX/1/0" elementFormDefault="qualified">
+
+<!-- Main GPX definition -->
+
+  <xsd:element name="gpx">
+    <xsd:complexType>
+      <xsd:sequence>
+        <xsd:element name="name" type="xsd:string" minOccurs="0"/>		<!-- GPX file name -->
+        <xsd:element name="desc" type="xsd:string" minOccurs="0"/>		<!-- GPX file description -->
+        <xsd:element name="author" type="xsd:string" minOccurs="0"/>		<!-- GPX file author -->
+        <xsd:element name="email" type="gpx:emailType" minOccurs="0"/>	<!-- GPX file author email -->
+        <xsd:element name="url" type="xsd:anyURI" minOccurs="0"/>		<!-- GPX file URL -->
+ 		<xsd:element name="urlname" type="xsd:string" minOccurs="0"/>
+        <xsd:element name="time" type="xsd:dateTime" minOccurs="0"/>		<!-- GPX file creation time -->
+        <xsd:element name="keywords" type="xsd:string" minOccurs="0"/>		<!-- GPX file keywords -->
+        <xsd:element name="bounds" type="gpx:boundsType" minOccurs="0"/>	<!-- GPX file bounding rect -->
+        <xsd:element name="wpt" minOccurs="0" maxOccurs="unbounded">
+          <xsd:complexType>
+            <xsd:sequence>	<!-- elements must appear in this order -->
+			  <!-- Position info -->
+              <xsd:element name="ele" type="xsd:decimal" minOccurs="0"/>
+              <xsd:element name="time" type="xsd:dateTime" minOccurs="0"/>
+			  <xsd:element name="magvar" type="gpx:degreesType" minOccurs="0"/>
+			  <xsd:element name="geoidheight" type="xsd:decimal" minOccurs="0"/>
+
+			  <!-- Description info -->
+			  <xsd:element name="name" type="xsd:string" minOccurs="0"/>
+			  <xsd:element name="cmt" type="xsd:string" minOccurs="0"/>
+			  <xsd:element name="desc" type="xsd:string" minOccurs="0"/>
+			  <xsd:element name="src" type="xsd:string" minOccurs="0"/>
+			  <xsd:element name="url" type="xsd:anyURI" minOccurs="0"/>
+			  <xsd:element name="urlname" type="xsd:string" minOccurs="0"/>
+			  <xsd:element name="sym" type="xsd:string" minOccurs="0"/>
+			  <xsd:element name="type" type="xsd:string" minOccurs="0"/>
+
+			  <!-- Accuracy info -->
+			  <xsd:element name="fix" type="gpx:fixType" minOccurs="0"/>
+			  <xsd:element name="sat" type="xsd:nonNegativeInteger" minOccurs="0"/>
+			  <xsd:element name="hdop" type="xsd:decimal" minOccurs="0"/>
+			  <xsd:element name="vdop" type="xsd:decimal" minOccurs="0"/>
+			  <xsd:element name="pdop" type="xsd:decimal" minOccurs="0"/>
+			  <xsd:element name="ageofdgpsdata" type="xsd:decimal" minOccurs="0"/>
+			  <xsd:element name="dgpsid" type="gpx:dgpsStationType" minOccurs="0"/>
+
+			  <!-- you can add your own privately defined wpt elements at the end of the wpt -->
+              <xsd:any namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
+            </xsd:sequence>
+            <xsd:attribute name="lat" type="gpx:latitudeType" use="required"/>
+            <xsd:attribute name="lon" type="gpx:longitudeType" use="required"/>
+          </xsd:complexType>
+        </xsd:element>
+        <xsd:element name="rte" minOccurs="0" maxOccurs="unbounded">
+          <xsd:complexType>
+            <xsd:sequence>
+              <xsd:element name="name" type="xsd:string" minOccurs="0"/>
+			  <xsd:element name="cmt" type="xsd:string" minOccurs="0"/>
+              <xsd:element name="desc" type="xsd:string" minOccurs="0"/>
+			  <xsd:element name="src" type="xsd:string" minOccurs="0"/>	<!-- the source of this data: "Garmin eTrex", "Map", etc -->
+			  <xsd:element name="url" type="xsd:anyURI" minOccurs="0"/>
+ 			  <xsd:element name="urlname" type="xsd:string" minOccurs="0"/>
+			  <xsd:element name="number" type="xsd:nonNegativeInteger" minOccurs="0"/>	<!-- GPS track number -->
+	<!--	  <xsd:element name="type"			type="xsd:string"	minOccurs="0"/>	PROPOSED -->
+			  <!-- you can add your own privately defined rte elements at the end of the rte -->
+              <xsd:any namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
+              <xsd:element name="rtept" minOccurs="0" maxOccurs="unbounded">
+                <xsd:complexType>
+                  <xsd:sequence>	<!-- elements must appear in this order -->
+
+				    <!-- Position info -->
+                    <xsd:element name="ele" type="xsd:decimal" minOccurs="0"/>
+                    <xsd:element name="time" type="xsd:dateTime" minOccurs="0"/>
+					<xsd:element name="magvar" type="gpx:degreesType" minOccurs="0"/>
+					<xsd:element name="geoidheight" type="xsd:decimal" minOccurs="0"/>
+
+					<!-- Description info -->
+                    <xsd:element name="name" type="xsd:string" minOccurs="0"/>
+                    <xsd:element name="cmt" type="xsd:string" minOccurs="0"/>
+                    <xsd:element name="desc" type="xsd:string" minOccurs="0"/>
+                    <xsd:element name="src" type="xsd:string" minOccurs="0"/>
+					<xsd:element name="url" type="xsd:anyURI" minOccurs="0"/>
+ 				    <xsd:element name="urlname" type="xsd:string" minOccurs="0"/>
+                    <xsd:element name="sym" type="xsd:string" minOccurs="0"/>
+                    <xsd:element name="type" type="xsd:string" minOccurs="0"/>
+
+					<!-- Accuracy info -->
+					<xsd:element name="fix" type="gpx:fixType" minOccurs="0"/>
+					<xsd:element name="sat" type="xsd:nonNegativeInteger" minOccurs="0"/>
+					<xsd:element name="hdop" type="xsd:decimal" minOccurs="0"/>
+					<xsd:element name="vdop" type="xsd:decimal" minOccurs="0"/>
+					<xsd:element name="pdop" type="xsd:decimal" minOccurs="0"/>
+					<xsd:element name="ageofdgpsdata" type="xsd:decimal" minOccurs="0"/>
+					<xsd:element name="dgpsid" type="gpx:dgpsStationType" minOccurs="0"/>
+
+					<!-- you can add your own privately defined rtept elements at the end of the rtept -->
+                    <xsd:any namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
+                  </xsd:sequence>
+                  <xsd:attribute name="lat" type="gpx:latitudeType" use="required"/>
+                  <xsd:attribute name="lon" type="gpx:longitudeType" use="required"/>
+                </xsd:complexType>
+              </xsd:element>
+            </xsd:sequence>
+          </xsd:complexType>
+        </xsd:element>
+        <xsd:element name="trk" minOccurs="0" maxOccurs="unbounded">
+          <xsd:complexType>
+            <xsd:sequence>
+              <xsd:element name="name" type="xsd:string" minOccurs="0"/>
+			  <xsd:element name="cmt" type="xsd:string" minOccurs="0"/>
+              <xsd:element name="desc" type="xsd:string" minOccurs="0"/>
+			  <xsd:element name="src" type="xsd:string" minOccurs="0"/>	<!-- the source of this data: "Garmin eTrex", "Map", etc -->
+			  <xsd:element name="url" type="xsd:anyURI" minOccurs="0"/>
+ 			  <xsd:element name="urlname" type="xsd:string" minOccurs="0"/>
+			  <xsd:element name="number" type="xsd:nonNegativeInteger" minOccurs="0"/>	<!-- GPS track number -->
+	<!-- 	  <xsd:element name="type"			type="xsd:string"		minOccurs="0"/>  PROPOSED -->
+			  <!-- you can add your own privately defined trk elements at the end of the trk -->
+              <xsd:any namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
+              <xsd:element name="trkseg" minOccurs="0" maxOccurs="unbounded">
+                <xsd:complexType>
+                  <xsd:sequence>	<!-- elements must appear in this order -->
+				    <xsd:element name="trkpt" minOccurs="0" maxOccurs="unbounded">
+					  <xsd:complexType>
+					    <xsd:sequence>	<!-- elements must appear in this order -->
+
+						  <!-- Position info -->
+						  <xsd:element name="ele" type="xsd:decimal" minOccurs="0"/>
+						  <xsd:element name="time" type="xsd:dateTime" minOccurs="0"/>
+						  <xsd:element name="course" type="gpx:degreesType" minOccurs="0"/>
+						  <xsd:element name="speed" type="xsd:decimal" minOccurs="0"/>
+						  <xsd:element name="magvar" type="gpx:degreesType" minOccurs="0"/>
+						  <xsd:element name="geoidheight" type="xsd:decimal" minOccurs="0"/>
+
+						  <!-- Description info -->
+						  <xsd:element name="name" type="xsd:string" minOccurs="0"/>
+						  <xsd:element name="cmt" type="xsd:string" minOccurs="0"/>
+						  <xsd:element name="desc" type="xsd:string" minOccurs="0"/>
+						  <xsd:element name="src" type="xsd:string" minOccurs="0"/>
+						  <xsd:element name="url" type="xsd:anyURI" minOccurs="0"/>
+ 						  <xsd:element name="urlname" type="xsd:string" minOccurs="0"/>
+						  <xsd:element name="sym" type="xsd:string" minOccurs="0"/>
+						  <xsd:element name="type" type="xsd:string" minOccurs="0"/>
+
+						  <!-- Accuracy info -->
+						  <xsd:element name="fix" type="gpx:fixType" minOccurs="0"/>
+						  <xsd:element name="sat" type="xsd:nonNegativeInteger" minOccurs="0"/>
+						  <xsd:element name="hdop" type="xsd:decimal" minOccurs="0"/>
+						  <xsd:element name="vdop" type="xsd:decimal" minOccurs="0"/>
+						  <xsd:element name="pdop" type="xsd:decimal" minOccurs="0"/>
+						  <xsd:element name="ageofdgpsdata" type="xsd:decimal" minOccurs="0"/>
+						  <xsd:element name="dgpsid" type="gpx:dgpsStationType" minOccurs="0"/>
+
+						  <!-- you can add your own privately defined trkpt elements at the end of the trkpt -->
+						  <xsd:any namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
+					    </xsd:sequence>
+					    <xsd:attribute name="lat" type="gpx:latitudeType" use="required"/>
+					    <xsd:attribute name="lon" type="gpx:longitudeType" use="required"/>
+					  </xsd:complexType>
+				    </xsd:element>
+			  	  </xsd:sequence>
+			    </xsd:complexType>
+			  </xsd:element>
+            </xsd:sequence>
+          </xsd:complexType>
+        </xsd:element>
+		<!-- you can add your own privately defined elements at the end of the GPX file -->
+        <xsd:any namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
+      </xsd:sequence>
+      <xsd:attribute name="version" type="xsd:string" use="required" fixed="1.0"/>	<!-- version 1.0 -->
+      <xsd:attribute name="creator" type="xsd:string" use="required"/>
+    </xsd:complexType>
+  </xsd:element>
+
+  <!-- Other types used by GPX -->
+
+  <xsd:simpleType name="latitudeType">
+    <xsd:restriction base="xsd:decimal">
+      <xsd:minInclusive value="-90.0"/>
+      <xsd:maxInclusive value="90.0"/>
+    </xsd:restriction>
+  </xsd:simpleType>
+
+  <xsd:simpleType name="longitudeType">
+    <xsd:restriction base="xsd:decimal">
+      <xsd:minInclusive value="-180.0"/>
+      <xsd:maxInclusive value="180.0"/>
+    </xsd:restriction>
+  </xsd:simpleType>
+
+  <xsd:simpleType name="degreesType">	<!-- for bearing, heading, course.  Units are degrees, true -->
+    <xsd:restriction base="xsd:decimal">
+      <xsd:minInclusive value="0.0"/>
+      <xsd:maxInclusive value="360.0"/>
+    </xsd:restriction>
+  </xsd:simpleType>
+
+  <xsd:simpleType name="fixType">
+    <xsd:restriction base="xsd:string">
+      <xsd:enumeration value="none"/>	<!-- none means GPS had no fix.  To signify "the fix info is unknown, leave out the <fix> tag entirely --> 
+      <xsd:enumeration value="2d"/>
+      <xsd:enumeration value="3d"/>
+      <xsd:enumeration value="dgps"/>
+      <xsd:enumeration value="pps"/>		<!-- military signal used -->
+    </xsd:restriction>
+  </xsd:simpleType>
+
+  <xsd:simpleType name="dgpsStationType">
+    <xsd:restriction base="xsd:integer">
+      <xsd:minInclusive value="0"/>
+      <xsd:maxInclusive value="1023"/>
+    </xsd:restriction>
+  </xsd:simpleType>
+
+  <xsd:complexType name="boundsType">	<!-- bounding rect for data in file -->
+    <xsd:attribute name="minlat" type="gpx:latitudeType" use="required"/>
+    <xsd:attribute name="minlon" type="gpx:longitudeType" use="required"/>
+    <xsd:attribute name="maxlat" type="gpx:latitudeType" use="required"/>
+    <xsd:attribute name="maxlon" type="gpx:longitudeType" use="required"/>
+  </xsd:complexType>
+
+  <xsd:simpleType name="emailType">
+    <xsd:restriction base="xsd:string">
+      <xsd:pattern value="[\p{L}_]+(\.[\p{L}_]+)*@[\p{L}_]+(\.[\p{L}_]+)+"/>
+    </xsd:restriction>
+  </xsd:simpleType>
+
+</xsd:schema>
Index: /bbtracker_common/tags/release_0_4_0/trunk/gpx.xsd
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/gpx.xsd	(revision 4)
+++ /bbtracker_common/tags/release_0_4_0/trunk/gpx.xsd	(revision 4)
@@ -0,0 +1,784 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.topografix.com/GPX/1/1" targetNamespace="http://www.topografix.com/GPX/1/1" elementFormDefault="qualified">
+
+<xsd:annotation>
+ <xsd:documentation>
+  GPX schema version 1.1 - For more information on GPX and this schema, visit http://www.topografix.com/gpx.asp
+
+  GPX uses the following conventions: all coordinates are relative to the WGS84 datum.  All measurements are in metric units.
+ </xsd:documentation>
+</xsd:annotation>
+
+  <xsd:element name="gpx" type="gpxType">
+    <xsd:annotation>
+      <xsd:documentation>
+		GPX is the root element in the XML file.
+	  </xsd:documentation>
+	</xsd:annotation>
+  </xsd:element>
+
+  <xsd:complexType name="gpxType">
+    <xsd:annotation>
+      <xsd:documentation>
+		GPX documents contain a metadata header, followed by waypoints, routes, and tracks.  You can add your own elements
+		to the extensions section of the GPX document.
+	  </xsd:documentation>
+	</xsd:annotation>
+	<xsd:sequence>
+	 <xsd:element name="metadata" type="metadataType" minOccurs="0">
+	  <xsd:annotation>
+	   <xsd:documentation>
+		Metadata about the file.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+	 <xsd:element name="wpt" type="wptType" minOccurs="0" maxOccurs="unbounded">
+	  <xsd:annotation>
+	   <xsd:documentation>
+		A list of waypoints.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+	 <xsd:element name="rte" type="rteType" minOccurs="0" maxOccurs="unbounded">
+	  <xsd:annotation>
+	   <xsd:documentation>
+		A list of routes.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+	 <xsd:element name="trk" type="trkType" minOccurs="0" maxOccurs="unbounded">
+	  <xsd:annotation>
+	   <xsd:documentation>
+		A list of tracks.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+	 <xsd:element name="extensions" type="extensionsType" minOccurs="0">
+      <xsd:annotation>
+       <xsd:documentation>
+		You can add extend GPX by adding your own elements from another schema here.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+	</xsd:sequence>
+
+	<xsd:attribute name="version" type="xsd:string" use="required" fixed="1.1">
+     <xsd:annotation>
+      <xsd:documentation>
+		You must include the version number in your GPX document.
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:attribute>
+	<xsd:attribute name="creator" type="xsd:string" use="required">
+     <xsd:annotation>
+      <xsd:documentation>
+		You must include the name or URL of the software that created your GPX document.  This allows others to
+		inform the creator of a GPX instance document that fails to validate.
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:attribute>
+  </xsd:complexType>
+
+  <xsd:complexType name="metadataType">
+    <xsd:annotation>
+      <xsd:documentation>
+		Information about the GPX file, author, and copyright restrictions goes in the metadata section.  Providing rich,
+		meaningful information about your GPX files allows others to search for and use your GPS data.
+	  </xsd:documentation>
+	</xsd:annotation>
+    <xsd:sequence>	<!-- elements must appear in this order -->
+     <xsd:element name="name" type="xsd:string" minOccurs="0">
+      <xsd:annotation>
+       <xsd:documentation>
+		The name of the GPX file.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+     <xsd:element name="desc" type="xsd:string" minOccurs="0">
+      <xsd:annotation>
+       <xsd:documentation>
+		A description of the contents of the GPX file.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+     <xsd:element name="author" type="personType" minOccurs="0">
+      <xsd:annotation>
+       <xsd:documentation>
+		The person or organization who created the GPX file.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+     <xsd:element name="copyright" type="copyrightType" minOccurs="0">
+      <xsd:annotation>
+       <xsd:documentation>
+		Copyright and license information governing use of the file.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+     <xsd:element name="link" type="linkType" minOccurs="0" maxOccurs="unbounded">
+      <xsd:annotation>
+       <xsd:documentation>
+		URLs associated with the location described in the file.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+     <xsd:element name="time" type="xsd:dateTime" minOccurs="0">
+      <xsd:annotation>
+       <xsd:documentation>
+		The creation date of the file.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+     <xsd:element name="keywords" type="xsd:string" minOccurs="0">
+      <xsd:annotation>
+       <xsd:documentation>
+		Keywords associated with the file.  Search engines or databases can use this information to classify the data.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+     <xsd:element name="bounds" type="boundsType" minOccurs="0">
+      <xsd:annotation>
+       <xsd:documentation>
+		Minimum and maximum coordinates which describe the extent of the coordinates in the file.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+
+	 <xsd:element name="extensions" type="extensionsType" minOccurs="0">
+      <xsd:annotation>
+       <xsd:documentation>
+		You can add extend GPX by adding your own elements from another schema here.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+    </xsd:sequence>
+  </xsd:complexType>
+
+  <xsd:complexType name="wptType">
+    <xsd:annotation>
+      <xsd:documentation>
+		wpt represents a waypoint, point of interest, or named feature on a map.
+	  </xsd:documentation>
+	</xsd:annotation>
+    <xsd:sequence>	<!-- elements must appear in this order -->
+	  <!-- Position info -->
+      <xsd:element name="ele" type="xsd:decimal" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Elevation (in meters) of the point.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+      <xsd:element name="time" type="xsd:dateTime" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Creation/modification timestamp for element. Date and time in are in Univeral Coordinated Time (UTC), not local time! Conforms to ISO 8601 specification for date/time representation. Fractional seconds are allowed for millisecond timing in tracklogs. 
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="magvar" type="degreesType" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Magnetic variation (in degrees) at the point
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="geoidheight" type="xsd:decimal" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Height (in meters) of geoid (mean sea level) above WGS84 earth ellipsoid.  As defined in NMEA GGA message.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+
+	  <!-- Description info -->
+	  <xsd:element name="name" type="xsd:string" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			The GPS name of the waypoint. This field will be transferred to and from the GPS. GPX does not place restrictions on the length of this field or the characters contained in it. It is up to the receiving application to validate the field before sending it to the GPS.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="cmt" type="xsd:string" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			GPS waypoint comment. Sent to GPS as comment. 
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="desc" type="xsd:string" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			A text description of the element. Holds additional information about the element intended for the user, not the GPS.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="src" type="xsd:string" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Source of data. Included to give user some idea of reliability and accuracy of data.  "Garmin eTrex", "USGS quad Boston North", e.g.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+      <xsd:element name="link" type="linkType" minOccurs="0" maxOccurs="unbounded">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Link to additional information about the waypoint.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="sym" type="xsd:string" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Text of GPS symbol name. For interchange with other programs, use the exact spelling of the symbol as displayed on the GPS.  If the GPS abbreviates words, spell them out.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="type" type="xsd:string" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Type (classification) of the waypoint.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+
+	  <!-- Accuracy info -->
+	  <xsd:element name="fix" type="fixType" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Type of GPX fix.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="sat" type="xsd:nonNegativeInteger" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Number of satellites used to calculate the GPX fix.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="hdop" type="xsd:decimal" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Horizontal dilution of precision.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="vdop" type="xsd:decimal" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Vertical dilution of precision.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="pdop" type="xsd:decimal" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Position dilution of precision.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="ageofdgpsdata" type="xsd:decimal" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Number of seconds since last DGPS update.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="dgpsid" type="dgpsStationType" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			ID of DGPS station used in differential correction.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+
+	 <xsd:element name="extensions" type="extensionsType" minOccurs="0">
+      <xsd:annotation>
+       <xsd:documentation>
+		You can add extend GPX by adding your own elements from another schema here.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+    </xsd:sequence>
+
+    <xsd:attribute name="lat" type="latitudeType" use="required">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		The latitude of the point.  Decimal degrees, WGS84 datum.
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:attribute>
+    <xsd:attribute name="lon" type="longitudeType" use="required">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		The latitude of the point.  Decimal degrees, WGS84 datum.
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:attribute>
+  </xsd:complexType>
+
+  <xsd:complexType name="rteType">
+    <xsd:annotation>
+      <xsd:documentation>
+		rte represents route - an ordered list of waypoints representing a series of turn points leading to a destination.
+	  </xsd:documentation>
+	</xsd:annotation>
+    <xsd:sequence>
+      <xsd:element name="name" type="xsd:string" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			GPS name of route.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="cmt" type="xsd:string" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			GPS comment for route.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+      <xsd:element name="desc" type="xsd:string" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Text description of route for user.  Not sent to GPS.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="src" type="xsd:string" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Source of data. Included to give user some idea of reliability and accuracy of data.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+      <xsd:element name="link" type="linkType" minOccurs="0" maxOccurs="unbounded">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Links to external information about the route.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="number" type="xsd:nonNegativeInteger" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			GPS route number.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="type" type="xsd:string" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Type (classification) of route.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+
+	 <xsd:element name="extensions" type="extensionsType" minOccurs="0">
+      <xsd:annotation>
+       <xsd:documentation>
+		You can add extend GPX by adding your own elements from another schema here.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+ 
+      <xsd:element name="rtept" type="wptType" minOccurs="0" maxOccurs="unbounded">
+	  <xsd:annotation>
+	   <xsd:documentation>
+		A list of route points.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+    </xsd:sequence>
+  </xsd:complexType>
+
+  <xsd:complexType name="trkType">
+    <xsd:annotation>
+      <xsd:documentation>
+		trk represents a track - an ordered list of points describing a path.
+	  </xsd:documentation>
+	</xsd:annotation>
+    <xsd:sequence>
+      <xsd:element name="name" type="xsd:string" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			GPS name of track.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="cmt" type="xsd:string" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			GPS comment for track.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+      <xsd:element name="desc" type="xsd:string" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			User description of track.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="src" type="xsd:string" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Source of data. Included to give user some idea of reliability and accuracy of data.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+      <xsd:element name="link" type="linkType" minOccurs="0" maxOccurs="unbounded">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Links to external information about track.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="number" type="xsd:nonNegativeInteger" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			GPS track number.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+	  <xsd:element name="type" type="xsd:string" minOccurs="0">
+		<xsd:annotation>
+		  <xsd:documentation>
+			Type (classification) of track.
+		  </xsd:documentation>
+		</xsd:annotation>
+	  </xsd:element>
+
+	 <xsd:element name="extensions" type="extensionsType" minOccurs="0">
+      <xsd:annotation>
+       <xsd:documentation>
+		You can add extend GPX by adding your own elements from another schema here.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+  
+     <xsd:element name="trkseg" type="trksegType" minOccurs="0" maxOccurs="unbounded">
+      <xsd:annotation>
+       <xsd:documentation>
+		A Track Segment holds a list of Track Points which are logically connected in order. To represent a single GPS track where GPS reception was lost, or the GPS receiver was turned off, start a new Track Segment for each continuous span of track data.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+    </xsd:sequence>
+  </xsd:complexType>
+ 
+  <xsd:complexType name="extensionsType">
+   <xsd:annotation>
+    <xsd:documentation>
+	 You can add extend GPX by adding your own elements from another schema here.
+    </xsd:documentation>
+   </xsd:annotation>
+    <xsd:sequence>
+	 <xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded">
+	   <xsd:annotation>
+		<xsd:documentation>
+		 You can add extend GPX by adding your own elements from another schema here.
+		</xsd:documentation>
+	   </xsd:annotation>
+	 </xsd:any>
+    </xsd:sequence>
+  </xsd:complexType>
+
+  <xsd:complexType name="trksegType">
+   <xsd:annotation>
+    <xsd:documentation>
+ 	 A Track Segment holds a list of Track Points which are logically connected in order. To represent a single GPS track where GPS reception was lost, or the GPS receiver was turned off, start a new Track Segment for each continuous span of track data.
+    </xsd:documentation>
+   </xsd:annotation>
+   <xsd:sequence>	<!-- elements must appear in this order -->
+	 <xsd:element name="trkpt" type="wptType" minOccurs="0" maxOccurs="unbounded">
+      <xsd:annotation>
+       <xsd:documentation>
+		A Track Point holds the coordinates, elevation, timestamp, and metadata for a single point in a track.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+
+	 <xsd:element name="extensions" type="extensionsType" minOccurs="0">
+      <xsd:annotation>
+       <xsd:documentation>
+		You can add extend GPX by adding your own elements from another schema here.
+	   </xsd:documentation>
+	  </xsd:annotation>
+	 </xsd:element>
+    </xsd:sequence>
+  </xsd:complexType>
+
+  <xsd:complexType name="copyrightType">
+   <xsd:annotation>
+    <xsd:documentation>
+	 Information about the copyright holder and any license governing use of this file.  By linking to an appropriate license,
+	 you may place your data into the public domain or grant additional usage rights.
+    </xsd:documentation>
+   </xsd:annotation>
+   <xsd:sequence>	<!-- elements must appear in this order -->
+    <xsd:element name="year" type="xsd:gYear" minOccurs="0">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		Year of copyright.
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:element>
+    <xsd:element name="license" type="xsd:anyURI" minOccurs="0">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		Link to external file containing license text.
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:element>
+   </xsd:sequence>
+   <xsd:attribute name="author" type="xsd:string" use="required">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		Copyright holder (TopoSoft, Inc.)
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:attribute>
+  </xsd:complexType>
+
+  <xsd:complexType name="linkType">
+   <xsd:annotation>
+    <xsd:documentation>
+	 A link to an external resource (Web page, digital photo, video clip, etc) with additional information.
+    </xsd:documentation>
+   </xsd:annotation>
+   <xsd:sequence>	<!-- elements must appear in this order -->
+    <xsd:element name="text" type="xsd:string" minOccurs="0">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		Text of hyperlink.
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:element>
+    <xsd:element name="type" type="xsd:string" minOccurs="0">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		Mime type of content (image/jpeg)
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:element>
+   </xsd:sequence>
+   <xsd:attribute name="href" type="xsd:anyURI" use="required">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		URL of hyperlink.
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:attribute>
+  </xsd:complexType>
+
+  <xsd:complexType name="emailType">
+   <xsd:annotation>
+    <xsd:documentation>
+	 An email address.  Broken into two parts (id and domain) to help prevent email harvesting.
+    </xsd:documentation>
+   </xsd:annotation>
+   <xsd:attribute name="id" type="xsd:string" use="required">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		id half of email address (billgates2004)
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:attribute>
+   <xsd:attribute name="domain" type="xsd:string" use="required">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		domain half of email address (hotmail.com)
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:attribute>
+  </xsd:complexType>
+
+  <xsd:complexType name="personType">
+   <xsd:annotation>
+    <xsd:documentation>
+	 A person or organization.
+    </xsd:documentation>
+   </xsd:annotation>
+    <xsd:sequence>	<!-- elements must appear in this order -->
+      <xsd:element name="name" type="xsd:string" minOccurs="0">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		Name of person or organization.
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:element>
+      <xsd:element name="email" type="emailType" minOccurs="0">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		Email address.
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:element>
+      <xsd:element name="link" type="linkType" minOccurs="0">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		Link to Web site or other external information about person.
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:element>
+	</xsd:sequence>
+  </xsd:complexType>
+
+  <xsd:complexType name="ptType">
+   <xsd:annotation>
+    <xsd:documentation>
+	 A geographic point with optional elevation and time.  Available for use by other schemas.
+    </xsd:documentation>
+   </xsd:annotation>
+   <xsd:sequence>	<!-- elements must appear in this order -->
+    <xsd:element name="ele" type="xsd:decimal" minOccurs="0">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		The elevation (in meters) of the point.
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:element>
+    <xsd:element name="time" type="xsd:dateTime" minOccurs="0">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		The time that the point was recorded.
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:element>
+   </xsd:sequence>
+    <xsd:attribute name="lat" type="latitudeType" use="required">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		The latitude of the point.  Decimal degrees, WGS84 datum.
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:attribute>
+    <xsd:attribute name="lon" type="longitudeType" use="required">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		The latitude of the point.  Decimal degrees, WGS84 datum.
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:attribute>
+  </xsd:complexType>
+
+  <xsd:complexType name="ptsegType">
+   <xsd:annotation>
+    <xsd:documentation>
+	 An ordered sequence of points.  (for polygons or polylines, e.g.)
+    </xsd:documentation>
+   </xsd:annotation>
+   <xsd:sequence>	<!-- elements must appear in this order -->
+	 <xsd:element name="pt" type="ptType" minOccurs="0" maxOccurs="unbounded">
+	   <xsd:annotation>
+		<xsd:documentation>
+		 Ordered list of geographic points.
+		</xsd:documentation>
+	   </xsd:annotation>
+	 </xsd:element>
+   </xsd:sequence>
+  </xsd:complexType>
+
+  <xsd:complexType name="boundsType">
+   <xsd:annotation>
+    <xsd:documentation>
+	 Two lat/lon pairs defining the extent of an element.
+    </xsd:documentation>
+   </xsd:annotation>
+    <xsd:attribute name="minlat" type="latitudeType" use="required">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		The minimum latitude.
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:attribute>
+    <xsd:attribute name="minlon" type="longitudeType" use="required">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		The minimum longitude.
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:attribute>
+    <xsd:attribute name="maxlat" type="latitudeType" use="required">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		The maximum latitude.
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:attribute>
+    <xsd:attribute name="maxlon" type="longitudeType" use="required">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		The maximum longitude.
+	  </xsd:documentation>
+	 </xsd:annotation>
+	</xsd:attribute>
+  </xsd:complexType>
+
+
+  <xsd:simpleType name="latitudeType">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		The latitude of the point.  Decimal degrees, WGS84 datum.
+	  </xsd:documentation>
+	 </xsd:annotation>
+    <xsd:restriction base="xsd:decimal">
+      <xsd:minInclusive value="-90.0"/>
+      <xsd:maxInclusive value="90.0"/>
+    </xsd:restriction>
+  </xsd:simpleType>
+
+  <xsd:simpleType name="longitudeType">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		The longitude of the point.  Decimal degrees, WGS84 datum.
+	  </xsd:documentation>
+	 </xsd:annotation>
+    <xsd:restriction base="xsd:decimal">
+      <xsd:minInclusive value="-180.0"/>
+      <xsd:maxExclusive value="180.0"/>
+    </xsd:restriction>
+  </xsd:simpleType>
+
+  <xsd:simpleType name="degreesType">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		Used for bearing, heading, course.  Units are decimal degrees, true (not magnetic).
+	  </xsd:documentation>
+	 </xsd:annotation>
+    <xsd:restriction base="xsd:decimal">
+      <xsd:minInclusive value="0.0"/>
+      <xsd:maxExclusive value="360.0"/>
+    </xsd:restriction>
+  </xsd:simpleType>
+
+  <xsd:simpleType name="fixType">
+	 <xsd:annotation>
+	  <xsd:documentation>
+		Type of GPS fix.  none means GPS had no fix.  To signify "the fix info is unknown, leave out fixType entirely. pps = military signal used
+	  </xsd:documentation>
+	 </xsd:annotation>
+    <xsd:restriction base="xsd:string">
+      <xsd:enumeration value="none"/>
+      <xsd:enumeration value="2d"/>
+      <xsd:enumeration value="3d"/>
+      <xsd:enumeration value="dgps"/>
+      <xsd:enumeration value="pps"/>
+    </xsd:restriction>
+  </xsd:simpleType>
+
+  <xsd:simpleType name="dgpsStationType">
+   <xsd:annotation>
+    <xsd:documentation>
+	 Represents a differential GPS station.
+    </xsd:documentation>
+   </xsd:annotation>
+    <xsd:restriction base="xsd:integer">
+      <xsd:minInclusive value="0"/>
+      <xsd:maxInclusive value="1023"/>
+    </xsd:restriction>
+  </xsd:simpleType>
+
+</xsd:schema>
Index: /bbtracker_common/tags/release_0_4_0/trunk/icons/bbtracker.svg
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/icons/bbtracker.svg	(revision 4)
+++ /bbtracker_common/tags/release_0_4_0/trunk/icons/bbtracker.svg	(revision 4)
@@ -0,0 +1,999 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48px"
+   height="48px"
+   id="svg3440"
+   sodipodi:version="0.32"
+   inkscape:version="0.45"
+   sodipodi:docbase="/home/joki/java/workspace/bbtracker/icons"
+   sodipodi:docname="bbtrack.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="/home/joki/java/workspace/bbtracker/icons/bbtrack24.png"
+   inkscape:export-xdpi="45"
+   inkscape:export-ydpi="45"
+   sodipodi:modified="TRUE">
+  <defs
+     id="defs3">
+    <linearGradient
+       id="linearGradient4750">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4752" />
+      <stop
+         style="stop-color:#fefefe;stop-opacity:1.0000000;"
+         offset="0.37931034"
+         id="stop4758" />
+      <stop
+         style="stop-color:#1d1d1d;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop4754" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4350">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4352" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop4354" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4126">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop4128" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.16494845;"
+         offset="1.0000000"
+         id="stop4130" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4114">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop4116" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop4118" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3962">
+      <stop
+         style="stop-color:#d3e9ff;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop3964" />
+      <stop
+         style="stop-color:#d3e9ff;stop-opacity:1.0000000;"
+         offset="0.15517241"
+         id="stop4134" />
+      <stop
+         style="stop-color:#4074ae;stop-opacity:1.0000000;"
+         offset="0.75000000"
+         id="stop4346" />
+      <stop
+         style="stop-color:#36486c;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop3966" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3962"
+       id="radialGradient3968"
+       gradientTransform="scale(0.999989,1.000011)"
+       cx="18.247644"
+       cy="15.716079"
+       fx="18.247644"
+       fy="15.716079"
+       r="29.993349"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4114"
+       id="radialGradient4120"
+       gradientTransform="scale(1.643990,0.608276)"
+       cx="15.115514"
+       cy="63.965388"
+       fx="15.115514"
+       fy="63.965388"
+       r="12.289036"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4126"
+       id="radialGradient4132"
+       gradientTransform="scale(0.999989,1.000011)"
+       cx="15.601279"
+       cy="12.142302"
+       fx="15.601279"
+       fy="12.142302"
+       r="43.526714"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4350"
+       id="radialGradient4356"
+       gradientTransform="scale(1.179536,0.847791)"
+       cx="11.826907"
+       cy="10.476453"
+       fx="11.826907"
+       fy="10.476453"
+       r="32.664848"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4750"
+       id="radialGradient4756"
+       gradientTransform="scale(1.036822,0.964486)"
+       cx="18.633780"
+       cy="17.486208"
+       fx="18.934305"
+       fy="17.810213"
+       r="40.692665"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1460"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1462"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1466"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1468"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1470"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1474"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1476"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1478"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1482"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1484"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1486"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1490"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1492"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1494"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1498"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1500"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1502"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1506"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1508"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1510"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1514"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1516"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1518"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1522"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1524"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1526"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1528"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1530"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1532"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1534"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1536"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1538"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1540"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1542"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1544"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1546"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1550"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1552"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1554"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+    <radialGradient
+       r="40.692665"
+       fy="17.810213"
+       fx="18.934305"
+       cy="17.486208"
+       cx="18.633780"
+       gradientTransform="scale(1.036822,0.964486)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1558"
+       xlink:href="#linearGradient4750"
+       inkscape:collect="always" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="0.17254902"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="13.333333"
+     inkscape:cx="24"
+     inkscape:cy="31.831602"
+     inkscape:current-layer="layer2"
+     showgrid="false"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     inkscape:window-width="1440"
+     inkscape:window-height="853"
+     inkscape:window-x="0"
+     inkscape:window-y="24"
+     inkscape:showpageshadow="false" />
+  <metadata
+     id="metadata4">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>Globe</dc:title>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Jakub Steiner</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:contributor>
+          <cc:Agent>
+            <dc:title>Tuomas Kuosmanen</dc:title>
+          </cc:Agent>
+        </dc:contributor>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
+        <dc:source>http://jimmac.musichall.cz</dc:source>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>globe</rdf:li>
+            <rdf:li>international</rdf:li>
+            <rdf:li>web</rdf:li>
+            <rdf:li>www</rdf:li>
+            <rdf:li>internet</rdf:li>
+            <rdf:li>network</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Reproduction" />
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Distribution" />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/Notice" />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/Attribution" />
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:label="globe"
+     inkscape:groupmode="layer"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:url(#radialGradient4120);fill-opacity:1;stroke:none;stroke-opacity:1"
+       id="path4112"
+       sodipodi:cx="24.849752"
+       sodipodi:cy="38.908627"
+       sodipodi:rx="20.203051"
+       sodipodi:ry="7.4751287"
+       d="M 45.052803 38.908627 A 20.203051 7.4751287 0 1 1  4.6467018,38.908627 A 20.203051 7.4751287 0 1 1  45.052803 38.908627 z"
+       transform="matrix(1,0,0,1.243244,0,-10.27241)" />
+    <path
+       style="fill:url(#radialGradient3968);fill-opacity:1;fill-rule:nonzero;stroke:#39396c;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 43.959853,23.485499 C 43.959853,34.195217 35.27775,42.877222 24.569505,42.877222 C 13.860279,42.877222 5.1786663,34.195119 5.1786663,23.485499 C 5.1786663,12.776272 13.860279,4.0951517 24.569505,4.0951517 C 35.27775,4.0951517 43.959853,12.776272 43.959853,23.485499 L 43.959853,23.485499 z "
+       id="path3214" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.42159382;fill:url(#radialGradient4356);fill-opacity:1;stroke:none;stroke-opacity:1"
+       id="path4348"
+       sodipodi:cx="17.778685"
+       sodipodi:cy="15.271057"
+       sodipodi:rx="12.929953"
+       sodipodi:ry="9.2934036"
+       d="M 30.708637 15.271057 A 12.929953 9.2934036 0 1 1  4.848732,15.271057 A 12.929953 9.2934036 0 1 1  30.708637 15.271057 z"
+       transform="matrix(0.835938,0,0,1,9.886868,0)" />
+    <g
+       id="g4136"
+       style="fill:#000000;fill-opacity:0.71345029;fill-rule:nonzero;stroke:none;stroke-miterlimit:4"
+       transform="matrix(0.982371,0,0,0.982371,0.121079,0.232914)">
+      <g
+         id="g4138">
+        <g
+           id="g4142">
+          <path
+             d="M 44.0713,20.7144 C 44.0713,20.9771 44.0713,20.7144 44.0713,20.7144 L 43.5264,21.3316 C 43.1924,20.938 42.8174,20.607 42.4366,20.2613 L 41.6007,20.3843 L 40.837,19.521 L 40.837,20.5894 L 41.4913,21.0845 L 41.9268,21.5777 L 42.5088,20.9195 C 42.6553,21.1939 42.7998,21.4683 42.9453,21.7427 L 42.9453,22.565 L 42.29,23.3052 L 41.0908,24.1284 L 40.1826,25.0347 L 39.6006,24.3745 L 39.8916,23.6343 L 39.3105,22.9761 L 38.3291,20.8784 L 37.4932,19.9331 L 37.2744,20.1792 L 37.6025,21.3726 L 38.2197,22.0718 C 38.5722,23.0894 38.9209,24.062 39.3838,25.0347 C 40.1016,25.0347 40.7783,24.9585 41.4912,24.8687 L 41.4912,25.4449 L 40.6191,27.5841 L 39.8193,28.4884 L 39.165,29.8888 C 39.165,30.6564 39.165,31.424 39.165,32.1915 L 39.3838,33.0978 L 39.0205,33.508 L 38.2197,34.0021 L 37.3838,34.7013 L 38.0752,35.4826 L 37.1299,36.3068 L 37.3115,36.84 L 35.8935,38.4455 L 34.9492,38.4455 L 34.1494,38.9396 L 33.6396,38.9396 L 33.6396,38.2814 L 33.4228,36.963 C 33.1415,36.1368 32.8486,35.3165 32.5507,34.4962 C 32.5507,33.8907 32.5868,33.2911 32.623,32.6857 L 32.9873,31.8634 L 32.4775,30.8751 L 32.5146,29.5177 L 31.8232,28.7364 L 32.1689,27.6055 L 31.6064,26.9673 L 30.624,26.9673 L 30.2969,26.5972 L 29.3155,27.2149 L 28.9161,26.7613 L 28.0069,27.543 C 27.3897,26.8433 26.7715,26.1441 26.1534,25.4449 L 25.4268,23.7164 L 26.0811,22.7301 L 25.7178,22.319 L 26.5166,20.4254 C 27.1729,19.609 27.8584,18.8258 28.5518,18.0397 L 29.7881,17.7106 L 31.169,17.5465 L 32.1143,17.7936 L 33.459,19.15 L 33.9317,18.6158 L 34.585,18.5338 L 35.8213,18.9449 L 36.7666,18.9449 L 37.4209,18.3687 L 37.7119,17.9576 L 37.0566,17.5465 L 35.9658,17.4645 C 35.6631,17.0446 35.3818,16.6032 35.0224,16.2301 L 34.6581,16.3942 L 34.5126,17.4645 L 33.8583,16.7243 L 33.7138,15.9001 L 32.9872,15.3259 L 32.6952,15.3259 L 33.4227,16.1482 L 33.1317,16.8884 L 32.5506,17.0525 L 32.9139,16.3123 L 32.2586,15.9842 L 31.6785,15.326 L 30.5867,15.5721 L 30.4422,15.9002 L 29.7879,16.3123 L 29.4246,17.2176 L 28.5164,17.6697 L 28.116,17.2176 L 27.6805,17.2176 L 27.6805,15.7362 L 28.6258,15.2421 L 29.3524,15.2421 L 29.2059,14.6669 L 28.6258,14.0907 L 29.6063,13.8846 L 30.1512,13.2684 L 30.5867,12.5272 L 31.3875,12.5272 L 31.1687,11.952 L 31.6785,11.6229 L 31.6785,12.2811 L 32.7683,12.5272 L 33.8581,11.6229 L 33.9313,11.2108 L 34.8756,10.5531 C 34.5338,10.5956 34.192,10.6268 33.858,10.7177 L 33.858,9.9766 L 34.2213,9.1538 L 33.858,9.1538 L 33.0596,9.894 L 32.8408,10.3056 L 33.0596,10.8823 L 32.6953,11.8686 L 32.1142,11.5395 L 31.6064,10.9643 L 30.8056,11.5395 L 30.5146,10.2236 L 31.8955,9.3188 L 31.8955,8.8247 L 32.7685,8.249 L 34.1494,7.9194 L 35.0947,8.249 L 36.8388,8.5781 L 36.4033,9.0713 L 35.458,9.0713 L 36.4033,10.0586 L 37.1299,9.2363 L 37.3506,8.8745 C 37.3506,8.8745 40.1377,11.3725 41.7305,14.105 C 43.3233,16.8384 44.0713,20.0601 44.0713,20.7144 z "
+             id="path4144" />
+        </g>
+      </g>
+      <g
+         id="g4146">
+        <g
+           id="g4150">
+          <path
+             d="M 26.0703,9.2363 L 25.9971,9.7295 L 26.5069,10.0586 L 27.378,9.4829 L 26.9425,8.9892 L 26.3605,9.3188 L 26.0705,9.2363"
+             id="path4152" />
+        </g>
+      </g>
+      <g
+         id="g4154">
+        <g
+           id="g4158">
+          <path
+             d="M 26.8701,5.8633 L 24.9795,5.1226 L 22.7998,5.3692 L 20.1094,6.1094 L 19.6006,6.6035 L 21.2725,7.7549 L 21.2725,8.4131 L 20.6182,9.0713 L 21.4912,10.8003 L 22.0713,10.4702 L 22.7998,9.3188 C 23.9228,8.9716 24.9297,8.5781 25.9971,8.0844 L 26.8701,5.8632"
+             id="path4160" />
+        </g>
+      </g>
+      <g
+         id="g4162">
+        <g
+           id="g4166">
+          <path
+             d="M 28.833,12.7749 L 28.542,12.0337 L 28.0322,12.1987 L 28.1787,13.103 L 28.833,12.7749"
+             id="path4168" />
+        </g>
+      </g>
+      <g
+         id="g4170">
+        <g
+           id="g4174">
+          <path
+             d="M 29.123,12.6089 L 28.9775,13.5972 L 29.7773,13.4322 L 30.3584,12.857 L 29.8496,12.3629 C 29.6787,11.9078 29.4824,11.483 29.2685,11.0465 L 28.833,11.0465 L 28.833,11.5397 L 29.123,11.8688 L 29.123,12.609"
+             id="path4176" />
+        </g>
+      </g>
+      <g
+         id="g4178">
+        <g
+           id="g4182">
+          <path
+             d="M 18.3652,28.2422 L 17.7832,27.0899 L 16.6929,26.8433 L 16.1114,25.2808 L 14.6578,25.4449 L 13.4224,24.5406 L 12.1133,25.692 L 12.1133,25.8736 C 11.7173,25.7593 11.2305,25.7437 10.8779,25.5269 L 10.5869,24.7046 L 10.5869,23.7993 L 9.7148,23.8813 C 9.7876,23.3051 9.8598,22.7299 9.9331,22.1538 L 9.4238,22.1538 L 8.9155,22.812 L 8.4062,23.0581 L 7.6791,22.6479 L 7.6063,21.7426 L 7.7518,20.7553 L 8.8426,19.933 L 9.7147,19.933 L 9.8597,19.4389 L 10.95,19.685 L 11.7498,20.6733 L 11.8953,19.0268 L 13.2766,17.8754 L 13.7854,16.641 L 14.803,16.2299 L 15.3845,15.4076 L 16.6926,15.1596 L 17.3474,14.1733 C 16.6931,14.1733 16.0388,14.1733 15.3845,14.1733 L 16.6203,13.5971 L 17.4919,13.5971 L 18.7282,13.185 L 18.8737,12.6928 L 18.4372,12.2807 L 17.9284,12.1157 L 18.0739,11.6225 L 17.7106,10.8823 L 16.838,11.2104 L 16.9835,10.5527 L 15.9659,9.9765 L 15.1666,11.3744 L 15.2389,11.8685 L 14.4396,12.1986 L 13.9303,13.2679 L 13.7125,12.2806 L 12.3312,11.7044 L 12.1129,10.9642 L 13.9303,9.8939 L 14.7301,9.1537 L 14.8029,8.2489 L 14.3669,8.0018 L 13.7854,7.9193 L 13.4221,8.8246 C 13.4221,8.8246 12.8142,8.9437 12.6579,8.9823 C 10.6618,10.8217 6.6286,14.7924 5.6916,22.2885 C 5.7287,22.4623 6.3708,23.4701 6.3708,23.4701 L 7.8972,24.3744 L 9.4236,24.7865 L 10.0784,25.6097 L 11.0955,26.3499 L 11.677,26.2679 L 12.113,26.4642 L 12.113,26.597 L 11.5319,28.16 L 11.0954,28.8182 L 11.2409,29.1483 L 10.8776,30.3807 L 12.1862,32.7674 L 13.4943,33.9197 L 14.0763,34.742 L 14.0031,36.4705 L 14.4396,37.4568 L 14.0031,39.3494 C 14.0031,39.3494 13.9689,39.3377 14.0246,39.5271 C 14.0808,39.7166 16.3537,40.9783 16.4982,40.8709 C 16.6422,40.7615 16.7653,40.6658 16.7653,40.6658 L 16.6203,40.2556 L 17.2014,39.6794 L 17.4197,39.1032 L 18.365,38.7731 L 19.0916,36.9626 L 18.8738,36.4704 L 19.3816,35.7302 L 20.4724,35.4822 L 21.0544,34.1658 L 20.9089,32.5213 L 21.781,31.2869 L 21.9265,30.0525 C 20.7331,29.4607 19.5495,28.8513 18.365,28.242"
+             id="path4184" />
+        </g>
+      </g>
+      <g
+         id="g4186">
+        <g
+           id="g4190">
+          <path
+             d="M 16.7656,9.5649 L 17.4922,10.0586 L 18.0742,10.0586 L 18.0742,9.4829 L 17.3476,9.1538 L 16.7656,9.5649"
+             id="path4192" />
+        </g>
+      </g>
+      <g
+         id="g4194">
+        <g
+           id="g4198">
+          <path
+             d="M 14.876,8.9072 L 14.5122,9.812 L 15.2393,9.812 L 15.6031,8.9892 C 15.9166,8.7675 16.2286,8.5444 16.5479,8.331 L 17.275,8.5781 C 17.7594,8.9072 18.2438,9.2363 18.7286,9.5649 L 19.4561,8.9072 L 18.6558,8.5781 L 18.292,7.8374 L 16.9111,7.6728 L 16.8383,7.2612 L 16.184,7.4262 L 15.8936,8.002 L 15.5298,7.2613 L 15.3848,7.5904 L 15.4576,8.4132 L 14.876,8.9072"
+             id="path4200" />
+        </g>
+      </g>
+      <g
+         id="g4202">
+        <g
+           style="opacity:0.75"
+           id="g4204">
+          <path
+             id="path4206"
+             d="" />
+        </g>
+        <g
+           id="g4208">
+          <path
+             id="path4210"
+             d="" />
+        </g>
+      </g>
+      <g
+         id="g4212">
+        <g
+           style="opacity:0.75"
+           id="g4214">
+          <path
+             id="path4216"
+             d="" />
+        </g>
+        <g
+           id="g4218">
+          <path
+             id="path4220"
+             d="" />
+        </g>
+      </g>
+      <g
+         id="g4222">
+        <g
+           id="g4226">
+          <path
+             d="M 17.4922,6.8496 L 17.856,6.521 L 18.5831,6.3564 C 19.0811,6.1142 19.5811,5.9511 20.1095,5.7802 L 19.8195,5.2865 L 18.881,5.4213 L 18.4376,5.8632 L 17.7066,5.9692 L 17.0567,6.2744 L 16.7408,6.4272 L 16.5479,6.6855 L 17.4922,6.8496"
+             id="path4228" />
+        </g>
+      </g>
+      <g
+         id="g4230">
+        <g
+           id="g4234">
+          <path
+             d="M 18.7285,14.6665 L 19.165,14.0083 L 18.5102,13.5151 L 18.7285,14.6665"
+             id="path4236" />
+        </g>
+      </g>
+    </g>
+    <g
+       id="g3216"
+       style="color:#000000;fill:url(#radialGradient1460);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01794541;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       transform="matrix(0.982371,0,0,0.982371,-8.095179e-2,3.0883e-2)">
+      <g
+         id="g3218"
+         style="color:#000000;fill:url(#radialGradient1462);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+        <g
+           id="g3222"
+           style="color:#000000;fill:url(#radialGradient1466);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+          <path
+             d="M 44.0713,20.7144 C 44.0713,20.9771 44.0713,20.7144 44.0713,20.7144 L 43.5264,21.3316 C 43.1924,20.938 42.8174,20.607 42.4366,20.2613 L 41.6007,20.3843 L 40.837,19.521 L 40.837,20.5894 L 41.4913,21.0845 L 41.9268,21.5777 L 42.5088,20.9195 C 42.6553,21.1939 42.7998,21.4683 42.9453,21.7427 L 42.9453,22.565 L 42.29,23.3052 L 41.0908,24.1284 L 40.1826,25.0347 L 39.6006,24.3745 L 39.8916,23.6343 L 39.3105,22.9761 L 38.3291,20.8784 L 37.4932,19.9331 L 37.2744,20.1792 L 37.6025,21.3726 L 38.2197,22.0718 C 38.5722,23.0894 38.9209,24.062 39.3838,25.0347 C 40.1016,25.0347 40.7783,24.9585 41.4912,24.8687 L 41.4912,25.4449 L 40.6191,27.5841 L 39.8193,28.4884 L 39.165,29.8888 C 39.165,30.6564 39.165,31.424 39.165,32.1915 L 39.3838,33.0978 L 39.0205,33.508 L 38.2197,34.0021 L 37.3838,34.7013 L 38.0752,35.4826 L 37.1299,36.3068 L 37.3115,36.84 L 35.8935,38.4455 L 34.9492,38.4455 L 34.1494,38.9396 L 33.6396,38.9396 L 33.6396,38.2814 L 33.4228,36.963 C 33.1415,36.1368 32.8486,35.3165 32.5507,34.4962 C 32.5507,33.8907 32.5868,33.2911 32.623,32.6857 L 32.9873,31.8634 L 32.4775,30.8751 L 32.5146,29.5177 L 31.8232,28.7364 L 32.1689,27.6055 L 31.6064,26.9673 L 30.624,26.9673 L 30.2969,26.5972 L 29.3155,27.2149 L 28.9161,26.7613 L 28.0069,27.543 C 27.3897,26.8433 26.7715,26.1441 26.1534,25.4449 L 25.4268,23.7164 L 26.0811,22.7301 L 25.7178,22.319 L 26.5166,20.4254 C 27.1729,19.609 27.8584,18.8258 28.5518,18.0397 L 29.7881,17.7106 L 31.169,17.5465 L 32.1143,17.7936 L 33.459,19.15 L 33.9317,18.6158 L 34.585,18.5338 L 35.8213,18.9449 L 36.7666,18.9449 L 37.4209,18.3687 L 37.7119,17.9576 L 37.0566,17.5465 L 35.9658,17.4645 C 35.6631,17.0446 35.3818,16.6032 35.0224,16.2301 L 34.6581,16.3942 L 34.5126,17.4645 L 33.8583,16.7243 L 33.7138,15.9001 L 32.9872,15.3259 L 32.6952,15.3259 L 33.4227,16.1482 L 33.1317,16.8884 L 32.5506,17.0525 L 32.9139,16.3123 L 32.2586,15.9842 L 31.6785,15.326 L 30.5867,15.5721 L 30.4422,15.9002 L 29.7879,16.3123 L 29.4246,17.2176 L 28.5164,17.6697 L 28.116,17.2176 L 27.6805,17.2176 L 27.6805,15.7362 L 28.6258,15.2421 L 29.3524,15.2421 L 29.2059,14.6669 L 28.6258,14.0907 L 29.6063,13.8846 L 30.1512,13.2684 L 30.5867,12.5272 L 31.3875,12.5272 L 31.1687,11.952 L 31.6785,11.6229 L 31.6785,12.2811 L 32.7683,12.5272 L 33.8581,11.6229 L 33.9313,11.2108 L 34.8756,10.5531 C 34.5338,10.5956 34.192,10.6268 33.858,10.7177 L 33.858,9.9766 L 34.2213,9.1538 L 33.858,9.1538 L 33.0596,9.894 L 32.8408,10.3056 L 33.0596,10.8823 L 32.6953,11.8686 L 32.1142,11.5395 L 31.6064,10.9643 L 30.8056,11.5395 L 30.5146,10.2236 L 31.8955,9.3188 L 31.8955,8.8247 L 32.7685,8.249 L 34.1494,7.9194 L 35.0947,8.249 L 36.8388,8.5781 L 36.4033,9.0713 L 35.458,9.0713 L 36.4033,10.0586 L 37.1299,9.2363 L 37.3506,8.8745 C 37.3506,8.8745 40.1377,11.3725 41.7305,14.105 C 43.3233,16.8384 44.0713,20.0601 44.0713,20.7144 z "
+             id="path3224"
+             style="color:#000000;fill:url(#radialGradient1468);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible" />
+        </g>
+      </g>
+      <g
+         id="g3226"
+         style="color:#000000;fill:url(#radialGradient1470);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+        <g
+           id="g3230"
+           style="color:#000000;fill:url(#radialGradient1474);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+          <path
+             d="M 26.0703,9.2363 L 25.9971,9.7295 L 26.5069,10.0586 L 27.378,9.4829 L 26.9425,8.9892 L 26.3605,9.3188 L 26.0705,9.2363"
+             id="path3232"
+             style="color:#000000;fill:url(#radialGradient1476);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible" />
+        </g>
+      </g>
+      <g
+         id="g3234"
+         style="color:#000000;fill:url(#radialGradient1478);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+        <g
+           id="g3238"
+           style="color:#000000;fill:url(#radialGradient1482);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+          <path
+             d="M 26.8701,5.8633 L 24.9795,5.1226 L 22.7998,5.3692 L 20.1094,6.1094 L 19.6006,6.6035 L 21.2725,7.7549 L 21.2725,8.4131 L 20.6182,9.0713 L 21.4912,10.8003 L 22.0713,10.4702 L 22.7998,9.3188 C 23.9228,8.9716 24.9297,8.5781 25.9971,8.0844 L 26.8701,5.8632"
+             id="path3240"
+             style="color:#000000;fill:url(#radialGradient1484);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible" />
+        </g>
+      </g>
+      <g
+         id="g3242"
+         style="color:#000000;fill:url(#radialGradient1486);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+        <g
+           id="g3246"
+           style="color:#000000;fill:url(#radialGradient1490);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+          <path
+             d="M 28.833,12.7749 L 28.542,12.0337 L 28.0322,12.1987 L 28.1787,13.103 L 28.833,12.7749"
+             id="path3248"
+             style="color:#000000;fill:url(#radialGradient1492);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible" />
+        </g>
+      </g>
+      <g
+         id="g3250"
+         style="color:#000000;fill:url(#radialGradient1494);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+        <g
+           id="g3254"
+           style="color:#000000;fill:url(#radialGradient1498);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+          <path
+             d="M 29.123,12.6089 L 28.9775,13.5972 L 29.7773,13.4322 L 30.3584,12.857 L 29.8496,12.3629 C 29.6787,11.9078 29.4824,11.483 29.2685,11.0465 L 28.833,11.0465 L 28.833,11.5397 L 29.123,11.8688 L 29.123,12.609"
+             id="path3256"
+             style="color:#000000;fill:url(#radialGradient1500);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible" />
+        </g>
+      </g>
+      <g
+         id="g3258"
+         style="color:#000000;fill:url(#radialGradient1502);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+        <g
+           id="g3262"
+           style="color:#000000;fill:url(#radialGradient1506);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+          <path
+             d="M 18.3652,28.2422 L 17.7832,27.0899 L 16.6929,26.8433 L 16.1114,25.2808 L 14.6578,25.4449 L 13.4224,24.5406 L 12.1133,25.692 L 12.1133,25.8736 C 11.7173,25.7593 11.2305,25.7437 10.8779,25.5269 L 10.5869,24.7046 L 10.5869,23.7993 L 9.7148,23.8813 C 9.7876,23.3051 9.8598,22.7299 9.9331,22.1538 L 9.4238,22.1538 L 8.9155,22.812 L 8.4062,23.0581 L 7.6791,22.6479 L 7.6063,21.7426 L 7.7518,20.7553 L 8.8426,19.933 L 9.7147,19.933 L 9.8597,19.4389 L 10.95,19.685 L 11.7498,20.6733 L 11.8953,19.0268 L 13.2766,17.8754 L 13.7854,16.641 L 14.803,16.2299 L 15.3845,15.4076 L 16.6926,15.1596 L 17.3474,14.1733 C 16.6931,14.1733 16.0388,14.1733 15.3845,14.1733 L 16.6203,13.5971 L 17.4919,13.5971 L 18.7282,13.185 L 18.8737,12.6928 L 18.4372,12.2807 L 17.9284,12.1157 L 18.0739,11.6225 L 17.7106,10.8823 L 16.838,11.2104 L 16.9835,10.5527 L 15.9659,9.9765 L 15.1666,11.3744 L 15.2389,11.8685 L 14.4396,12.1986 L 13.9303,13.2679 L 13.7125,12.2806 L 12.3312,11.7044 L 12.1129,10.9642 L 13.9303,9.8939 L 14.7301,9.1537 L 14.8029,8.2489 L 14.3669,8.0018 L 13.7854,7.9193 L 13.4221,8.8246 C 13.4221,8.8246 12.8142,8.9437 12.6579,8.9823 C 10.6618,10.8217 6.6286,14.7924 5.6916,22.2885 C 5.7287,22.4623 6.3708,23.4701 6.3708,23.4701 L 7.8972,24.3744 L 9.4236,24.7865 L 10.0784,25.6097 L 11.0955,26.3499 L 11.677,26.2679 L 12.113,26.4642 L 12.113,26.597 L 11.5319,28.16 L 11.0954,28.8182 L 11.2409,29.1483 L 10.8776,30.3807 L 12.1862,32.7674 L 13.4943,33.9197 L 14.0763,34.742 L 14.0031,36.4705 L 14.4396,37.4568 L 14.0031,39.3494 C 14.0031,39.3494 13.9689,39.3377 14.0246,39.5271 C 14.0808,39.7166 16.3537,40.9783 16.4982,40.8709 C 16.6422,40.7615 16.7653,40.6658 16.7653,40.6658 L 16.6203,40.2556 L 17.2014,39.6794 L 17.4197,39.1032 L 18.365,38.7731 L 19.0916,36.9626 L 18.8738,36.4704 L 19.3816,35.7302 L 20.4724,35.4822 L 21.0544,34.1658 L 20.9089,32.5213 L 21.781,31.2869 L 21.9265,30.0525 C 20.7331,29.4607 19.5495,28.8513 18.365,28.242"
+             id="path3264"
+             style="color:#000000;fill:url(#radialGradient1508);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible" />
+        </g>
+      </g>
+      <g
+         id="g3266"
+         style="color:#000000;fill:url(#radialGradient1510);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+        <g
+           id="g3270"
+           style="color:#000000;fill:url(#radialGradient1514);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+          <path
+             d="M 16.7656,9.5649 L 17.4922,10.0586 L 18.0742,10.0586 L 18.0742,9.4829 L 17.3476,9.1538 L 16.7656,9.5649"
+             id="path3272"
+             style="color:#000000;fill:url(#radialGradient1516);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible" />
+        </g>
+      </g>
+      <g
+         id="g3274"
+         style="color:#000000;fill:url(#radialGradient1518);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+        <g
+           id="g3278"
+           style="color:#000000;fill:url(#radialGradient1522);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+          <path
+             d="M 14.876,8.9072 L 14.5122,9.812 L 15.2393,9.812 L 15.6031,8.9892 C 15.9166,8.7675 16.2286,8.5444 16.5479,8.331 L 17.275,8.5781 C 17.7594,8.9072 18.2438,9.2363 18.7286,9.5649 L 19.4561,8.9072 L 18.6558,8.5781 L 18.292,7.8374 L 16.9111,7.6728 L 16.8383,7.2612 L 16.184,7.4262 L 15.8936,8.002 L 15.5298,7.2613 L 15.3848,7.5904 L 15.4576,8.4132 L 14.876,8.9072"
+             id="path3280"
+             style="color:#000000;fill:url(#radialGradient1524);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible" />
+        </g>
+      </g>
+      <g
+         id="g3282"
+         style="color:#000000;fill:url(#radialGradient1526);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+        <g
+           style="opacity:0.75;color:#000000;fill:url(#radialGradient1528);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible"
+           id="g3284">
+          <path
+             d=""
+             style="color:#000000;fill:url(#radialGradient1530);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible"
+             id="path3286" />
+        </g>
+        <g
+           id="g3288"
+           style="color:#000000;fill:url(#radialGradient1532);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+          <path
+             d=""
+             id="path3290"
+             style="color:#000000;fill:url(#radialGradient1534);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible" />
+        </g>
+      </g>
+      <g
+         id="g3292"
+         style="color:#000000;fill:url(#radialGradient1536);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+        <g
+           style="opacity:0.75;color:#000000;fill:url(#radialGradient1538);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible"
+           id="g3294">
+          <path
+             d=""
+             style="color:#000000;fill:url(#radialGradient1540);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible"
+             id="path3296" />
+        </g>
+        <g
+           id="g3298"
+           style="color:#000000;fill:url(#radialGradient1542);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+          <path
+             d=""
+             id="path3300"
+             style="color:#000000;fill:url(#radialGradient1544);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible" />
+        </g>
+      </g>
+      <g
+         id="g3302"
+         style="color:#000000;fill:url(#radialGradient1546);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+        <g
+           id="g3306"
+           style="color:#000000;fill:url(#radialGradient1550);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+          <path
+             d="M 17.4922,6.8496 L 17.856,6.521 L 18.5831,6.3564 C 19.0811,6.1142 19.5811,5.9511 20.1095,5.7802 L 19.8195,5.2865 L 18.881,5.4213 L 18.4376,5.8632 L 17.7066,5.9692 L 17.0567,6.2744 L 16.7408,6.4272 L 16.5479,6.6855 L 17.4922,6.8496"
+             id="path3308"
+             style="color:#000000;fill:url(#radialGradient1552);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible" />
+        </g>
+      </g>
+      <g
+         id="g3310"
+         style="color:#000000;fill:url(#radialGradient1554);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+        <g
+           id="g3314"
+           style="color:#000000;fill:url(#radialGradient1558);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible">
+          <path
+             d="M 18.7285,14.6665 L 19.165,14.0083 L 18.5102,13.5151 L 18.7285,14.6665"
+             id="path3316"
+             style="color:#000000;fill:url(#radialGradient4756);marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible" />
+        </g>
+      </g>
+    </g>
+    <path
+       style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient4132);stroke-miterlimit:4;stroke-opacity:1"
+       d="M 42.975093,23.485534 C 42.975093,33.651354 34.733915,41.89244 24.569493,41.89244 C 14.404139,41.89244 6.1634261,33.651261 6.1634261,23.485534 C 6.1634261,13.32018 14.404139,5.079934 24.569493,5.079934 C 34.733915,5.079934 42.975093,13.32018 42.975093,23.485534 L 42.975093,23.485534 z "
+       id="path4122" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="reticule"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:#cc0000;fill-opacity:1;stroke:#3c0000;stroke-width:0.77725261;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;display:inline"
+       d="M 29.40625,1.08125 C 29.404095,1.08125 29.40673,2.670402 29.40625,4.3625 C 24.790018,4.772431 21.097431,8.465018 20.6875,13.08125 L 17.4375,13.08125 C 17.42604,13.08125 17.40625,13.45535 17.40625,13.925 C 17.40625,14.39465 17.42604,14.76875 17.4375,14.76875 L 20.6875,14.76875 C 21.097431,19.384982 24.790018,23.077569 29.40625,23.4875 C 29.40673,25.179598 29.404094,26.76875 29.40625,26.76875 L 31.09375,26.76875 C 31.095905,26.76875 31.09327,25.179598 31.09375,23.4875 C 35.709982,23.077569 39.402569,19.384982 39.8125,14.76875 L 43.0625,14.76875 C 43.07396,14.76875 43.09375,14.39465 43.09375,13.925 C 43.09375,13.45535 43.073959,13.08125 43.0625,13.08125 L 39.8125,13.08125 C 39.402569,8.465018 35.709982,4.772431 31.09375,4.3625 C 31.09327,2.670402 31.095905,1.08125 31.09375,1.08125 L 29.40625,1.08125 z M 29.40625,6.3 C 29.407057,7.371264 29.404628,8.76875 29.40625,8.76875 L 31.09375,8.76875 C 31.095372,8.76875 31.092943,7.371264 31.09375,6.3 C 34.654682,6.691736 37.483264,9.520318 37.875,13.08125 L 35.4375,13.08125 C 35.42604,13.08125 35.40625,13.45535 35.40625,13.925 C 35.40625,14.39465 35.426041,14.76875 35.4375,14.76875 L 37.875,14.76875 C 37.483264,18.329682 34.654682,21.158264 31.09375,21.55 C 31.092943,20.478736 31.095372,19.08125 31.09375,19.08125 L 29.40625,19.08125 C 29.404628,19.08125 29.407057,20.478736 29.40625,21.55 C 25.845319,21.158265 23.016736,18.329681 22.625,14.76875 L 25.0625,14.76875 C 25.07396,14.76875 25.09375,14.39465 25.09375,13.925 C 25.09375,13.45535 25.07396,13.08125 25.0625,13.08125 L 22.625,13.08125 C 23.016736,9.520319 25.845319,6.691736 29.40625,6.3 z "
+       id="Reticule"
+       inkscape:label="#reticule" />
+  </g>
+</svg>
Index: /bbtracker_common/tags/release_0_4_0/trunk/GPX 1.1 Schema Documentation.html
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/GPX 1.1 Schema Documentation.html	(revision 4)
+++ /bbtracker_common/tags/release_0_4_0/trunk/GPX 1.1 Schema Documentation.html	(revision 4)
@@ -0,0 +1,1912 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"><head><title>GPX 1.1 Schema Documentation</title>
+
+
+  
+    
+    <meta http-equiv="Content-Type" content="text/xml; charset=iso-8859-1">
+    <style type="text/css">
+/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
+/* More-configurable styles */
+
+/******** General ********/
+
+/* Document body */
+body {
+   color: Black;
+   background-color: White;
+   font-family: Arial, sans-serif;
+   font-size: 10pt;
+}
+/* Horizontal rules */
+hr {
+   color: black;
+}
+/* Document title */
+h1 {
+   font-size: 18pt;
+   letter-spacing: 2px;
+   border-bottom: 1px #ccc solid;
+   padding-top: 5px;
+   padding-bottom: 5px;
+}
+/* Main section headers */
+h2 {
+   font-size: 14pt;
+   letter-spacing: 1px;
+}
+/* Sub-section headers */
+h3, h3 a, h3 span {
+   font-size: 12pt;
+   font-weight: bold;
+   color: black;
+}
+/* Table displaying the properties of the schema components or the
+   schema document itself */
+table.properties th, table.properties th a {
+   color: black;
+   background-color: #F99; /* Pink */
+}
+table.properties td {
+   background-color: #eee; /* Gray */
+}
+
+
+/******** Table of Contents Section ********/
+
+/* Controls for switching between printing and viewing modes */
+div#printerControls {
+   color: #963; /* Orange-brown */
+}
+/* Controls that can collapse or expand all XML Instance
+   Representation and Schema Component Representation boxes */
+div#globalControls {
+   border: 2px solid #999;
+}
+
+
+/******** Schema Document Properties Section ********/
+
+/* Table displaying the namespaces declared in the schema */
+table.namespaces th {
+   background-color: #ccc;
+}
+table.namespaces td {
+   background-color: #eee;
+}
+/* Target namespace of the schema */
+span.targetNS {
+   color: #06C;
+   font-weight: bold;
+}
+
+
+/******** Schema Components' Sections ********/
+
+/* Name of schema component */
+.name {
+   color: #F93; /* Orange */
+}
+
+/* Hierarchy table */
+table.hierarchy {
+   border: 2px solid #999; /* Gray */
+}
+
+/* XML Instance Representation table */
+div.sample div.contents {
+   border: 2px dashed black;
+}
+
+/* Schema Component Representation table */
+div.schemaComponent div.contents {
+   border: 2px black solid;
+}
+
+
+/******** Glossary Section ********/
+
+/* Glossary Terms */
+.glossaryTerm {
+   color: #036; /* Blue */
+}
+
+
+/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
+/* Printer-version styles */
+
+@media print {
+
+/* Ensures that controls are hidden when printing */
+div#printerControls {
+   visibility: hidden;
+}
+div#globalControls {
+   visibility: hidden;
+}
+#legend {
+   display: none;
+}
+#legendTOC {
+   display: none;
+}
+#glossary {
+   display: none;
+}
+#glossaryTOC {
+   display: none;
+}
+
+}
+
+/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
+/* Base styles */
+
+/******** General ********/
+
+/* Unordered lists */
+ul {
+   margin-left: 1.5em;
+   margin-bottom: 0em;
+}
+/* Tables */
+table {
+   margin-top: 10px;
+   margin-bottom: 10px;
+   margin-left: 2px;
+   margin-right: 2px;
+}
+table th, table td {
+   font-size: 10pt;
+   vertical-align: top;
+   padding-top: 3px;
+   padding-bottom: 3px;
+   padding-left: 10px;
+   padding-right: 10px;
+}
+table th {
+   font-weight: bold;
+   text-align: left;
+}
+/* Table displaying the properties of the schema components or the
+   schema document itself */
+table.properties {
+   width: 90%;
+}
+table.properties th {
+   width: 30%;
+}
+/* Boxes that can make its content appear and disappear*/
+div.box {
+   margin: 1em;
+}
+   /* Box caption */
+div.box span.caption {
+   font-weight: bold;
+}
+   /* Button to open and close the box */
+div.box input.control {
+   width: 1.4em;
+   height: 1.4em;
+   text-align: center;
+   vertical-align: middle;
+   font-size: 11pt;
+}
+   /* Box contents */
+div.box div.contents {
+   margin-top: 3px;
+}
+
+
+/******** Table of Contents Section ********/
+
+/* Controls for switching between printing and viewing modes */
+div#printerControls {
+   white-space: nowrap;
+   font-weight: bold;
+   padding: 5px;
+   margin: 5px;
+}
+/* Controls that can collapse or expand all XML Instance
+   Representation and Schema Component Representation boxes */
+div#globalControls {
+   padding: 10px;
+   margin: 5px;
+}
+
+
+/******** Schema Document Properties Section ********/
+
+/* Table displaying the namespaces declared in the schema */
+table.namespaces th {
+}
+table.namespaces td {
+}
+/* Target namespace of the schema */
+span.targetNS {
+}
+
+
+/******** Schema Components' Sections ********/
+
+/* Name of schema component */
+.name {
+}
+
+/* Hierarchy table */
+table.hierarchy {
+   width: 90%;
+}
+table.hierarchy th {
+   font-weight: normal;
+   font-style: italic;
+   width: 20%;
+}
+table.hierarchy th, table.hierarchy td {
+   padding: 5px;
+}
+
+/* XML Instance Representation table */
+div.sample {
+   width: 90%;
+}
+div.sample div.contents {
+   padding: 5px;
+   font-family: Courier New, sans-serif;
+   font-size: 10pt;
+}
+   /* Normal elements and attributes */
+div.sample div.contents, div.sample div.contents a {
+   color: black;
+}
+   /* Group Headers */
+div.sample div.contents .group, div.sample div.contents .group a {
+   color: #999; /* Light gray */
+}
+   /* Type Information */
+div.sample div.contents .type, div.sample div.contents .type a {
+   color: #999; /* Light gray */
+}
+   /* Occurrence Information */
+div.sample div.contents .occurs, div.sample div.contents .occurs a {
+   color: #999; /* Light gray */
+}
+   /* Fixed values */
+div.sample div.contents .fixed {
+   color: #063; /* Green */
+   font-weight: bold;
+}
+   /* Simple type constraints */
+div.sample div.contents .constraint, div.sample div.contents .constraint a {
+   color: #999; /* Light gray */
+}
+   /* Elements and attributes inherited from base type */
+div.sample div.contents .inherited, div.sample div.contents .inherited a {
+   color: #666; /* Dark gray */
+}
+   /* Elements and attributes added to or changed from base type */
+div.sample div.contents .newFields {
+   font-weight: bold;
+}
+   /* Other type of information */
+div.sample div.contents .other, div.sample div.contents .other a {
+   color: #369; /* Blue */
+   font-style: italic;
+}
+   /* Link to open up window displaying documentation */
+div.sample div.contents a.documentation {
+   text-decoration: none;
+   padding-left: 3px;
+   padding-right: 3px;
+   padding-top: 0px;
+   padding-bottom: 0px;
+   font-weight: bold;
+   font-size: 11pt;
+   background-color: #FFD;
+   color: #069;
+}
+   /* Invert colors when hovering over link to open up window 
+      displaying documentation */
+div.sample div.contents a.documentation:hover {
+   color: #FFD;
+   background-color: #069;
+}
+
+/* Schema Component Representation table */
+div.schemaComponent {
+   width: 90%;
+}
+div.schemaComponent div.contents {
+   font-family: Courier New, sans-serif;
+   font-size: 10pt;
+   padding: 5px;
+}
+   /* Syntax characters */
+div.schemaComponent div.contents {
+   color: #00f; /* blue */
+}
+   /* Element and attribute tags */
+div.schemaComponent div.contents .scTag {
+   color: #933; /* maroon */
+}
+   /* Element and attribute content */
+div.schemaComponent div.contents .scContent, div.schemaComponent div.contents .scContent a {
+   color: black;
+   font-weight: bold;
+}
+   /* Comments */
+div.schemaComponent div.contents .comment {
+   color: #999; /* Light gray */
+}
+
+/******** Legend Section ********/
+
+div#legend table, div#legend div {
+   margin-bottom: 3px;
+}
+div#legend div.hint {
+   color: #999; /* Light gray */
+   width: 90%;
+   margin-left: 1em;
+   margin-bottom: 2em;
+}
+
+
+/******** Glossary Section ********/
+
+/* Glossary Terms */
+.glossaryTerm {
+   font-weight: bold;
+}
+
+
+/******** Footer ********/
+
+.footer {
+   font-size: 8pt;
+}
+</style>
+    <script type="text/javascript">
+<!--
+/* IDs of XML Instance Representation boxes */
+var xiBoxes = new Array('element_gpx_xibox', 'type_gpxType_xibox', 'type_metadataType_xibox', 'type_wptType_xibox', 'type_rteType_xibox', 'type_trkType_xibox', 'type_extensionsType_xibox', 'type_trksegType_xibox', 'type_copyrightType_xibox', 'type_linkType_xibox', 'type_emailType_xibox', 'type_personType_xibox', 'type_ptType_xibox', 'type_ptsegType_xibox', 'type_boundsType_xibox', 'type_latitudeType_xibox', 'type_longitudeType_xibox', 'type_degreesType_xibox', 'type_fixType_xibox', 'type_dgpsStationType_xibox');
+/* IDs of Schema Component Representation boxes */
+var scBoxes = new Array('schema_scbox', 'element_gpx_scbox', 'type_gpxType_scbox', 'type_metadataType_scbox', 'type_wptType_scbox', 'type_rteType_scbox', 'type_trkType_scbox', 'type_extensionsType_scbox', 'type_trksegType_scbox', 'type_copyrightType_scbox', 'type_linkType_scbox', 'type_emailType_scbox', 'type_personType_scbox', 'type_ptType_scbox', 'type_ptsegType_scbox', 'type_boundsType_scbox', 'type_latitudeType_scbox', 'type_longitudeType_scbox', 'type_degreesType_scbox', 'type_fixType_scbox', 'type_dgpsStationType_scbox');
+
+/**
+ * Can get the ID of the button controlling
+ * a collapseable box by concatenating
+ * this string onto the ID of the box itself.
+ */
+var B_SFIX = "_button";
+
+/**
+ * Counter of documentation windows
+ * Used to give each window a unique name
+ */
+var windowCount = 0;
+
+/**
+ * Returns an element in the current HTML document.
+ * 
+ * @param elementID Identifier of HTML element
+ * @return               HTML element object
+ */
+function getElementObject(elementID) {
+    var elemObj = null;
+    if (document.getElementById) {
+        elemObj = document.getElementById(elementID);
+    }
+    return elemObj;
+}             
+
+/**
+ * Closes a collapseable box.
+ * 
+ * @param boxObj       Collapseable box
+ * @param buttonObj Button controlling box
+ */
+function closeBox(boxObj, buttonObj) {
+  if (boxObj == null || buttonObj == null) {
+     // Box or button not found
+  } else {
+     // Change 'display' CSS property of box
+     boxObj.style.display="none";
+
+     // Change text of button 
+     if (boxObj.style.display=="none") {
+        buttonObj.value=" + ";
+     }
+  }
+}
+
+/**
+ * Opens a collapseable box.
+ * 
+ * @param boxObj       Collapseable box
+ * @param buttonObj Button controlling box
+ */
+function openBox(boxObj, buttonObj) {
+  if (boxObj == null || buttonObj == null) {
+     // Box or button not found
+  } else {
+     // Change 'display' CSS property of box
+     boxObj.style.display="block";
+
+     // Change text of button
+     if (boxObj.style.display=="block") {
+        buttonObj.value=" - ";
+     }
+  }
+}
+
+/**
+ * Sets the state of a collapseable box.
+ * 
+ * @param boxID Identifier of box
+ * @param open If true, box is "opened",
+ *             Otherwise, box is "closed".
+ */
+function setState(boxID, open) {
+  var boxObj = getElementObject(boxID);
+  var buttonObj = getElementObject(boxID+B_SFIX);
+  if (boxObj == null || buttonObj == null) {
+     // Box or button not found
+  } else if (open) {
+     openBox(boxObj, buttonObj);
+     // Make button visible
+     buttonObj.style.display="inline";
+  } else {
+     closeBox(boxObj, buttonObj);
+     // Make button visible
+     buttonObj.style.display="inline";
+  }
+}
+
+/**
+ * Switches the state of a collapseable box, e.g.
+ * if it's opened, it'll be closed, and vice versa.
+ * 
+ * @param boxID Identifier of box
+ */
+function switchState(boxID) {
+  var boxObj = getElementObject(boxID);
+  var buttonObj = getElementObject(boxID+B_SFIX);
+  if (boxObj == null || buttonObj == null) {
+     // Box or button not found
+  } else if (boxObj.style.display=="none") {
+     // Box is closed, so open it
+     openBox(boxObj, buttonObj);
+  } else if (boxObj.style.display=="block") {
+     // Box is opened, so close it
+     closeBox(boxObj, buttonObj);
+  }
+}
+
+/**
+ * Closes all boxes in a given list.
+ * 
+ * @param boxList Array of box IDs
+ */
+function collapseAll(boxList) {
+  var idx;
+  for (idx = 0; idx < boxList.length; idx++) {
+     var boxObj = getElementObject(boxList[idx]);
+     var buttonObj = getElementObject(boxList[idx]+B_SFIX);
+     closeBox(boxObj, buttonObj);
+  }
+}
+
+/**
+ * Open all boxes in a given list.
+ * 
+ * @param boxList Array of box IDs
+ */
+function expandAll(boxList) {
+  var idx;
+  for (idx = 0; idx < boxList.length; idx++) {
+     var boxObj = getElementObject(boxList[idx]);
+     var buttonObj = getElementObject(boxList[idx]+B_SFIX);
+     openBox(boxObj, buttonObj);
+  }
+}
+
+/**
+ * Makes all the control buttons of boxes appear.
+ * 
+ * @param boxList Array of box IDs
+ */
+function viewControlButtons(boxList) {
+    var idx;
+    for (idx = 0; idx < boxList.length; idx++) {
+        buttonObj = getElementObject(boxList[idx]+B_SFIX);
+        if (buttonObj != null) {
+            buttonObj.style.display = "inline";
+        }
+    }
+}
+
+/**
+ * Makes all the control buttons of boxes disappear.
+ * 
+ * @param boxList Array of box IDs
+ */
+function hideControlButtons(boxList) {
+    var idx;
+    for (idx = 0; idx < boxList.length; idx++) {
+        buttonObj = getElementObject(boxList[idx]+B_SFIX);
+        if (buttonObj != null) {
+            buttonObj.style.display = "none";
+        }
+    }
+}
+
+/**
+ * Sets the page for either printing mode
+ * or viewing mode. In printing mode, the page
+ * is made to be more readable when printing it out.
+ * In viewing mode, the page is more browsable.
+ *
+ * @param isPrinterVersion If true, display in
+ *                                 printing mode; otherwise, 
+ *                                 in viewing mode
+ */
+function displayMode(isPrinterVersion) {
+    var obj;
+    if (isPrinterVersion) {
+        // Hide global control buttons
+        obj = getElementObject("globalControls");
+        if (obj != null) {
+            obj.style.visibility = "hidden";
+        }
+        // Hide Legend
+        obj = getElementObject("legend");
+        if (obj != null) {
+            obj.style.display = "none";
+        }
+        obj = getElementObject("legendTOC");
+        if (obj != null) {
+            obj.style.display = "none";
+        }
+        // Hide Glossary
+        obj = getElementObject("glossary");
+        if (obj != null) {
+            obj.style.display = "none";
+        }
+        obj = getElementObject("glossaryTOC");
+        if (obj != null) {
+            obj.style.display = "none";
+        }
+
+        // Expand all XML Instance Representation tables
+        expandAll(xiBoxes);
+        // Expand all Schema Component Representation tables
+        expandAll(scBoxes);
+
+        // Hide Control buttons
+        hideControlButtons(xiBoxes);
+        hideControlButtons(scBoxes);
+    } else {
+        // View global control buttons
+        obj = getElementObject("globalControls");
+        if (obj != null) {
+            obj.style.visibility = "visible";
+        }
+        // View Legend
+        obj = getElementObject("legend");
+        if (obj != null) {
+            obj.style.display = "block";
+        }
+        obj = getElementObject("legendTOC");
+        if (obj != null) {
+            obj.style.display = "block";
+        }
+        // View Glossary
+        obj = getElementObject("glossary");
+        if (obj != null) {
+            obj.style.display = "block";
+        }
+        obj = getElementObject("glossaryTOC");
+        if (obj != null) {
+            obj.style.display = "block";
+        }
+
+        // Expand all XML Instance Representation tables
+        expandAll(xiBoxes);
+        // Collapse all Schema Component Representation tables
+        collapseAll(scBoxes);
+
+        // View Control buttons
+        viewControlButtons(xiBoxes);
+        viewControlButtons(scBoxes);
+    }
+}
+
+/**
+ * Opens up a window displaying the documentation
+ * of a schema component in the XML Instance
+ * Representation table.
+ * 
+ * @param compDesc      Description of schema component 
+ * @param compName      Name of schema component 
+ * @param docTextArray Array containing the paragraphs 
+ *                           of the new document
+ */
+function viewDocumentation(compDesc, compName, docTextArray) {
+  var width = 400;
+  var height = 200;
+  var locX = 100;
+  var locY = 200;
+
+  /* Generate content */
+  var actualText = "<html>";
+  actualText += "<head><title>";
+  actualText += compDesc;
+  if (compName != '') {
+     actualText += ": " + compName;
+  }
+  actualText += "</title></head>";
+  actualText += "<body bgcolor=\"#FFFFEE\">";
+  // Title
+  actualText += "<p style=\"font-family: Arial, sans-serif; font-size: 12pt; font-weight: bold; letter-spacing:1px;\">";
+  actualText += compDesc;
+  if (compName != '') {
+     actualText += ": <span style=\"color:#006699\">" + compName + "</span>";
+  }
+  actualText += "</p>";
+  // Documentation
+  var idx;
+  for (idx = 0; idx < docTextArray.length; idx++) {
+     actualText += "<p style=\"font-family: Arial, sans-serif; font-size: 10pt;\">" + docTextArray[idx] + "</p>";
+  }
+  // Link to close window
+  actualText += "<a href=\"javascript:void(0)\" onclick=\"window.close();\" style=\"font-family: Arial, sans-serif; font-size: 8pt;\">Close</a>";
+  actualText += "</body></html>";
+
+  /* Display window */
+  windowCount++;
+  var docWindow = window.open("", "documentation"+windowCount, "toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable,alwaysRaised,dependent,titlebar=no,width="+width+",height="+height+",screenX="+locX+",left="+locX+",screenY="+locY+",top="+locY);
+  docWindow.document.write(actualText);
+}
+
+// -->
+</script></head><body>
+    <h1>
+      <a name="top">GPX 1.1 Schema Documentation</a>
+    </h1>
+    <div style="float: right;">
+      <div id="printerControls" style="display: block;"><input onclick="displayMode(this.checked)" type="checkbox">Printer-friendly Version</div>
+      <script type="text/javascript">
+<!--
+
+var pc = getElementObject("printerControls");
+if (pc != null) {
+   pc.style.display="block";
+}
+               
+// -->
+</script>
+      <div id="globalControls" style="display: block; visibility: visible;">
+        <strong>XML Instance Representation:</strong>
+        <br>
+        <span style="margin-left: 1em; white-space: nowrap;">[ <a href="javascript:void(0)" onclick="expandAll(xiBoxes)">Expand All</a> | <a href="javascript:void(0)" onclick="collapseAll(xiBoxes)">Collapse All</a> ]</span>
+        <br>
+        <br>
+        <strong>Schema Component Representation:</strong>
+        <br>
+        <span style="margin-left: 1em; white-space: nowrap;">[ <a href="javascript:void(0)" onclick="expandAll(scBoxes)">Expand All</a> | <a href="javascript:void(0)" onclick="collapseAll(scBoxes)">Collapse All</a> ]</span>
+      </div>
+      <script type="text/javascript">
+<!--
+
+var gc = getElementObject("globalControls");
+if (gc != null) {
+   gc.style.display="block";
+}
+               
+// -->
+</script>
+    </div>
+    <h2>Table of Contents</h2>
+    <ul>
+      <li>
+        <a href="#SchemaProperties">Schema Document Properties</a>
+      </li>
+      <li>
+        <a href="#SchemaComponents">Global Schema Components</a>
+        <ul>
+          <li>
+            <a href="#element_gpx">Element: <strong>gpx</strong></a>
+          </li>
+          <li>
+            <a href="#type_gpxType">Complex Type: <strong>gpxType</strong></a>
+          </li>
+          <li>
+            <a href="#type_metadataType">Complex Type: <strong>metadataType</strong></a>
+          </li>
+          <li>
+            <a href="#type_wptType">Complex Type: <strong>wptType</strong></a>
+          </li>
+          <li>
+            <a href="#type_rteType">Complex Type: <strong>rteType</strong></a>
+          </li>
+          <li>
+            <a href="#type_trkType">Complex Type: <strong>trkType</strong></a>
+          </li>
+          <li>
+            <a href="#type_extensionsType">Complex Type: <strong>extensionsType</strong></a>
+          </li>
+          <li>
+            <a href="#type_trksegType">Complex Type: <strong>trksegType</strong></a>
+          </li>
+          <li>
+            <a href="#type_copyrightType">Complex Type: <strong>copyrightType</strong></a>
+          </li>
+          <li>
+            <a href="#type_linkType">Complex Type: <strong>linkType</strong></a>
+          </li>
+          <li>
+            <a href="#type_emailType">Complex Type: <strong>emailType</strong></a>
+          </li>
+          <li>
+            <a href="#type_personType">Complex Type: <strong>personType</strong></a>
+          </li>
+          <li>
+            <a href="#type_ptType">Complex Type: <strong>ptType</strong></a>
+          </li>
+          <li>
+            <a href="#type_ptsegType">Complex Type: <strong>ptsegType</strong></a>
+          </li>
+          <li>
+            <a href="#type_boundsType">Complex Type: <strong>boundsType</strong></a>
+          </li>
+          <li>
+            <a href="#type_latitudeType">Simple Type: <strong>latitudeType</strong></a>
+          </li>
+          <li>
+            <a href="#type_longitudeType">Simple Type: <strong>longitudeType</strong></a>
+          </li>
+          <li>
+            <a href="#type_degreesType">Simple Type: <strong>degreesType</strong></a>
+          </li>
+          <li>
+            <a href="#type_fixType">Simple Type: <strong>fixType</strong></a>
+          </li>
+          <li>
+            <a href="#type_dgpsStationType">Simple Type: <strong>dgpsStationType</strong></a>
+          </li>
+        </ul>
+      </li>
+    </ul>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h2>
+      <a name="SchemaProperties">Schema Document Properties</a>
+    </h2>
+    <table class="properties">
+      <tbody><tr>
+        <th>Target Namespace</th>
+        <td>
+          <span class="targetNS">http://www.topografix.com/GPX/1/1</span>
+        </td>
+      </tr>
+      <tr>
+        <th>Element and Attribute Namespaces</th>
+        <td>
+          <ul>
+            <li>Global element and attribute declarations belong to this schema's target namespace.</li>
+            <li>By default, local element declarations belong to this schema's target namespace.</li>
+            <li>By default, local attribute declarations have no namespace.</li>
+          </ul>
+        </td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+  GPX schema version 1.1 - For more information on GPX and this schema, visit http://www.topografix.com/gpx.asp
+
+  GPX uses the following conventions: all coordinates are relative to the WGS84 datum.  All measurements are in metric units.
+ </td>
+      </tr>
+    </tbody></table>
+    <h3>Declared Namespaces</h3>
+    <table class="namespaces">
+      <tbody><tr>
+        <th>Prefix</th>
+        <th>Namespace</th>
+      </tr>
+      <tr>
+        <td>
+          <a name="ns_">Default namespace</a>
+        </td>
+        <td>
+          <span class="targetNS">http://www.topografix.com/GPX/1/1</span>
+        </td>
+      </tr>
+      <tr>
+        <td>
+          <a name="ns_xml">xml</a>
+        </td>
+        <td>http://www.w3.org/XML/1998/namespace</td>
+      </tr>
+      <tr>
+        <td>
+          <a name="ns_xsd">xsd</a>
+        </td>
+        <td>http://www.w3.org/2001/XMLSchema</td>
+      </tr>
+    </tbody></table>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="schema_scbox_button" class="control" onclick="switchState('schema_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="schema_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:schema</span> <span class="scTag">targetNamespace</span>="<span class="scContent">http://www.topografix.com/GPX/1/1</span>" <span class="scTag">elementFormDefault</span>="<span class="scContent">qualified</span>"&gt;<div class="scContent" style="margin-left: 1.5em;">...</div>&lt;/<span class="scTag">xsd:schema</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('schema_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h2>
+      <a name="SchemaComponents">Global Schema Components</a>
+    </h2>
+    <h3>Element: <a name="element_gpx" class="name">gpx</a></h3>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>gpx</td>
+      </tr>
+      <tr>
+        <th>Type</th>
+        <td>
+          <span class="type">
+            <a title="Jump to &quot;gpxType&quot; type definition." href="#type_gpxType">gpxType</a>
+          </span>
+        </td>
+      </tr>
+      <tr>
+        <th>Nillable</th>
+        <td>no</td>
+      </tr>
+      <tr>
+        <th>Abstract</th>
+        <td>no</td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+		GPX is the root element in the XML file.
+	  </td>
+      </tr>
+    </tbody></table>
+    <div class="sample box">
+      <div><input value=" - " id="element_gpx_xibox_button" class="control" onclick="switchState('element_gpx_xibox'); return false;" style="display: inline;" type="button"> <span class="caption">XML Instance Representation</span></div>
+      <div style="display: block;" id="element_gpx_xibox" class="contents">
+        <div style="margin-left: 0em;">&lt;gpx<br><span style="margin-left: 0.5em;"> version="<span class="fixed">1.1</span> <span class="occurs">[1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('You must include the version number in your GPX document.'); viewDocumentation('Attribute', 'version', docArray);">?</a>"</span><br><span style="margin-left: 0.5em;"> creator="<span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> <span class="occurs">[1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('You must include the name or URL of the software that created your GPX document. This allows others to inform the creator of a GPX instance document that fails to validate.'); viewDocumentation('Attribute', 'creator', docArray);">?</a>"</span>&gt; <br><div style="margin-left: 1.5em;">&lt;metadata&gt; <span class="type"><a title="Jump to &quot;metadataType&quot; type definition." href="#type_metadataType">metadataType</a></span> &lt;/metadata&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Metadata about the file.'); viewDocumentation('Element', 'metadata', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;wpt&gt; <span class="type"><a title="Jump to &quot;wptType&quot; type definition." href="#type_wptType">wptType</a></span> &lt;/wpt&gt; <span class="occurs">[0..*]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('A list of waypoints.'); viewDocumentation('Element', 'wpt', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;rte&gt; <span class="type"><a title="Jump to &quot;rteType&quot; type definition." href="#type_rteType">rteType</a></span> &lt;/rte&gt; <span class="occurs">[0..*]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('A list of routes.'); viewDocumentation('Element', 'rte', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;trk&gt; <span class="type"><a title="Jump to &quot;trkType&quot; type definition." href="#type_trkType">trkType</a></span> &lt;/trk&gt; <span class="occurs">[0..*]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('A list of tracks.'); viewDocumentation('Element', 'trk', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;extensions&gt; <span class="type"><a title="Jump to &quot;extensionsType&quot; type definition." href="#type_extensionsType">extensionsType</a></span> &lt;/extensions&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('You can add extend GPX by adding your own elements from another schema here.'); viewDocumentation('Element', 'extensions', docArray);">?</a></div>&lt;/gpx&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('element_gpx_xibox', true);
+// -->
+</script>
+    </div>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="element_gpx_scbox_button" class="control" onclick="switchState('element_gpx_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="element_gpx_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">gpx</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;gpxType&quot; type definition." href="#type_gpxType">gpxType</a></span></span>"/&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('element_gpx_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h3>Complex Type: <a name="type_gpxType" class="name">gpxType</a></h3>
+    <table class="hierarchy">
+      <tbody><tr>
+        <th>Parent type:</th>
+        <td>None</td>
+      </tr>
+      <tr>
+        <th>Direct sub-types:</th>
+        <td>None</td>
+      </tr>
+    </tbody></table>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>gpxType</td>
+      </tr>
+      <tr>
+        <th>Abstract</th>
+        <td>no</td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+		GPX documents contain a metadata header, followed by waypoints, routes, and tracks.  You can add your own elements
+		to the extensions section of the GPX document.
+	  </td>
+      </tr>
+    </tbody></table>
+    <div class="sample box">
+      <div><input value=" - " id="type_gpxType_xibox_button" class="control" onclick="switchState('type_gpxType_xibox'); return false;" style="display: inline;" type="button"> <span class="caption">XML Instance Representation</span></div>
+      <div style="display: block;" id="type_gpxType_xibox" class="contents">
+        <div style="margin-left: 0em;">&lt;...<br><span style="margin-left: 0.5em;"> version="<span class="fixed">1.1</span> <span class="occurs">[1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('You must include the version number in your GPX document.'); viewDocumentation('Attribute', 'version', docArray);">?</a>"</span><br><span style="margin-left: 0.5em;"> creator="<span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> <span class="occurs">[1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('You must include the name or URL of the software that created your GPX document. This allows others to inform the creator of a GPX instance document that fails to validate.'); viewDocumentation('Attribute', 'creator', docArray);">?</a>"</span>&gt; <br><div style="margin-left: 1.5em;">&lt;metadata&gt; <span class="type"><a title="Jump to &quot;metadataType&quot; type definition." href="#type_metadataType">metadataType</a></span> &lt;/metadata&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Metadata about the file.'); viewDocumentation('Element', 'metadata', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;wpt&gt; <span class="type"><a title="Jump to &quot;wptType&quot; type definition." href="#type_wptType">wptType</a></span> &lt;/wpt&gt; <span class="occurs">[0..*]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('A list of waypoints.'); viewDocumentation('Element', 'wpt', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;rte&gt; <span class="type"><a title="Jump to &quot;rteType&quot; type definition." href="#type_rteType">rteType</a></span> &lt;/rte&gt; <span class="occurs">[0..*]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('A list of routes.'); viewDocumentation('Element', 'rte', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;trk&gt; <span class="type"><a title="Jump to &quot;trkType&quot; type definition." href="#type_trkType">trkType</a></span> &lt;/trk&gt; <span class="occurs">[0..*]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('A list of tracks.'); viewDocumentation('Element', 'trk', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;extensions&gt; <span class="type"><a title="Jump to &quot;extensionsType&quot; type definition." href="#type_extensionsType">extensionsType</a></span> &lt;/extensions&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('You can add extend GPX by adding your own elements from another schema here.'); viewDocumentation('Element', 'extensions', docArray);">?</a></div>&lt;/...&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_gpxType_xibox', true);
+// -->
+</script>
+    </div>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="type_gpxType_scbox_button" class="control" onclick="switchState('type_gpxType_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="type_gpxType_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:complexType</span> <span class="scTag">name</span>="<span class="scContent">gpxType</span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:sequence</span>&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">metadata</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;metadataType&quot; type definition." href="#type_metadataType">metadataType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">wpt</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;wptType&quot; type definition." href="#type_wptType">wptType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">rte</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;rteType&quot; type definition." href="#type_rteType">rteType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">trk</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;trkType&quot; type definition." href="#type_trkType">trkType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">extensions</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;extensionsType&quot; type definition." href="#type_extensionsType">extensionsType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div>&lt;/<span class="scTag">xsd:sequence</span>&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:attribute</span> <span class="scTag">name</span>="<span class="scContent">version</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">use</span>="<span class="scContent">required</span>" <span class="scTag">fixed</span>="<span class="scContent">1.1</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:attribute</span> <span class="scTag">name</span>="<span class="scContent">creator</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/&gt;</div>&lt;/<span class="scTag">xsd:complexType</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_gpxType_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h3>Complex Type: <a name="type_metadataType" class="name">metadataType</a></h3>
+    <table class="hierarchy">
+      <tbody><tr>
+        <th>Parent type:</th>
+        <td>None</td>
+      </tr>
+      <tr>
+        <th>Direct sub-types:</th>
+        <td>None</td>
+      </tr>
+    </tbody></table>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>metadataType</td>
+      </tr>
+      <tr>
+        <th>Abstract</th>
+        <td>no</td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+		Information about the GPX file, author, and copyright restrictions goes in the metadata section.  Providing rich,
+		meaningful information about your GPX files allows others to search for and use your GPS data.
+	  </td>
+      </tr>
+    </tbody></table>
+    <div class="sample box">
+      <div><input value=" - " id="type_metadataType_xibox_button" class="control" onclick="switchState('type_metadataType_xibox'); return false;" style="display: inline;" type="button"> <span class="caption">XML Instance Representation</span></div>
+      <div style="display: block;" id="type_metadataType_xibox" class="contents">
+        <div style="margin-left: 0em;">&lt;...&gt; <br><div style="margin-left: 1.5em;">&lt;name&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/name&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('The name of the GPX file.'); viewDocumentation('Element', 'name', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;desc&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/desc&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('A description of the contents of the GPX file.'); viewDocumentation('Element', 'desc', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;author&gt; <span class="type"><a title="Jump to &quot;personType&quot; type definition." href="#type_personType">personType</a></span> &lt;/author&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('The person or organization who created the GPX file.'); viewDocumentation('Element', 'author', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;copyright&gt; <span class="type"><a title="Jump to &quot;copyrightType&quot; type definition." href="#type_copyrightType">copyrightType</a></span> &lt;/copyright&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Copyright and license information governing use of the file.'); viewDocumentation('Element', 'copyright', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;link&gt; <span class="type"><a title="Jump to &quot;linkType&quot; type definition." href="#type_linkType">linkType</a></span> &lt;/link&gt; <span class="occurs">[0..*]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('URLs associated with the location described in the file.'); viewDocumentation('Element', 'link', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;time&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:dateTime</span> &lt;/time&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('The creation date of the file.'); viewDocumentation('Element', 'time', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;keywords&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/keywords&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Keywords associated with the file. Search engines or databases can use this information to classify the data.'); viewDocumentation('Element', 'keywords', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;bounds&gt; <span class="type"><a title="Jump to &quot;boundsType&quot; type definition." href="#type_boundsType">boundsType</a></span> &lt;/bounds&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Minimum and maximum coordinates which describe the extent of the coordinates in the file.'); viewDocumentation('Element', 'bounds', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;extensions&gt; <span class="type"><a title="Jump to &quot;extensionsType&quot; type definition." href="#type_extensionsType">extensionsType</a></span> &lt;/extensions&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('You can add extend GPX by adding your own elements from another schema here.'); viewDocumentation('Element', 'extensions', docArray);">?</a></div>&lt;/...&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_metadataType_xibox', true);
+// -->
+</script>
+    </div>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="type_metadataType_scbox_button" class="control" onclick="switchState('type_metadataType_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="type_metadataType_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:complexType</span> <span class="scTag">name</span>="<span class="scContent">metadataType</span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:sequence</span>&gt;<div class="comment" style="margin-left: 1.5em;">&lt;-- elements must appear in this order --&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">name</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">desc</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">author</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;personType&quot; type definition." href="#type_personType">personType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">copyright</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;copyrightType&quot; type definition." href="#type_copyrightType">copyrightType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">link</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;linkType&quot; type definition." href="#type_linkType">linkType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">time</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:dateTime</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">keywords</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">bounds</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;boundsType&quot; type definition." href="#type_boundsType">boundsType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">extensions</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;extensionsType&quot; type definition." href="#type_extensionsType">extensionsType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div>&lt;/<span class="scTag">xsd:sequence</span>&gt;</div>&lt;/<span class="scTag">xsd:complexType</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_metadataType_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h3>Complex Type: <a name="type_wptType" class="name">wptType</a></h3>
+    <table class="hierarchy">
+      <tbody><tr>
+        <th>Parent type:</th>
+        <td>None</td>
+      </tr>
+      <tr>
+        <th>Direct sub-types:</th>
+        <td>None</td>
+      </tr>
+    </tbody></table>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>wptType</td>
+      </tr>
+      <tr>
+        <th>Abstract</th>
+        <td>no</td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+		wpt represents a waypoint, point of interest, or named feature on a map.
+	  </td>
+      </tr>
+    </tbody></table>
+    <div class="sample box">
+      <div><input value=" - " id="type_wptType_xibox_button" class="control" onclick="switchState('type_wptType_xibox'); return false;" style="display: inline;" type="button"> <span class="caption">XML Instance Representation</span></div>
+      <div style="display: block;" id="type_wptType_xibox" class="contents">
+        <div style="margin-left: 0em;">&lt;...<br><span style="margin-left: 0.5em;"> lat="<span class="type"><a title="Jump to &quot;latitudeType&quot; type definition." href="#type_latitudeType">latitudeType</a></span> <span class="occurs">[1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('The latitude of the point. Decimal degrees, WGS84 datum.'); viewDocumentation('Attribute', 'lat', docArray);">?</a>"</span><br><span style="margin-left: 0.5em;"> lon="<span class="type"><a title="Jump to &quot;longitudeType&quot; type definition." href="#type_longitudeType">longitudeType</a></span> <span class="occurs">[1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('The latitude of the point. Decimal degrees, WGS84 datum.'); viewDocumentation('Attribute', 'lon', docArray);">?</a>"</span>&gt; <br><div style="margin-left: 1.5em;">&lt;ele&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span> &lt;/ele&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Elevation (in meters) of the point.'); viewDocumentation('Element', 'ele', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;time&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:dateTime</span> &lt;/time&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Creation/modification timestamp for element. Date and time in are in Univeral Coordinated Time (UTC), not local time! Conforms to ISO 8601 specification for date/time representation. Fractional seconds are allowed for millisecond timing in tracklogs.'); viewDocumentation('Element', 'time', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;magvar&gt; <span class="type"><a title="Jump to &quot;degreesType&quot; type definition." href="#type_degreesType">degreesType</a></span> &lt;/magvar&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Magnetic variation (in degrees) at the point'); viewDocumentation('Element', 'magvar', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;geoidheight&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span> &lt;/geoidheight&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Height (in meters) of geoid (mean sea level) above WGS84 earth ellipsoid. As defined in NMEA GGA message.'); viewDocumentation('Element', 'geoidheight', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;name&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/name&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('The GPS name of the waypoint. This field will be transferred to and from the GPS. GPX does not place restrictions on the length of this field or the characters contained in it. It is up to the receiving application to validate the field before sending it to the GPS.'); viewDocumentation('Element', 'name', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;cmt&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/cmt&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('GPS waypoint comment. Sent to GPS as comment.'); viewDocumentation('Element', 'cmt', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;desc&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/desc&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('A text description of the element. Holds additional information about the element intended for the user, not the GPS.'); viewDocumentation('Element', 'desc', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;src&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/src&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Source of data. Included to give user some idea of reliability and accuracy of data. \&quot;Garmin eTrex\&quot;, \&quot;USGS quad Boston North\&quot;, e.g.'); viewDocumentation('Element', 'src', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;link&gt; <span class="type"><a title="Jump to &quot;linkType&quot; type definition." href="#type_linkType">linkType</a></span> &lt;/link&gt; <span class="occurs">[0..*]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Link to additional information about the waypoint.'); viewDocumentation('Element', 'link', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;sym&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/sym&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Text of GPS symbol name. For interchange with other programs, use the exact spelling of the symbol as displayed on the GPS. If the GPS abbreviates words, spell them out.'); viewDocumentation('Element', 'sym', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;type&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/type&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Type (classification) of the waypoint.'); viewDocumentation('Element', 'type', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;fix&gt; <span class="type"><a title="Jump to &quot;fixType&quot; type definition." href="#type_fixType">fixType</a></span> &lt;/fix&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Type of GPX fix.'); viewDocumentation('Element', 'fix', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;sat&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:nonNegativeInteger</span> &lt;/sat&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Number of satellites used to calculate the GPX fix.'); viewDocumentation('Element', 'sat', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;hdop&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span> &lt;/hdop&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Horizontal dilution of precision.'); viewDocumentation('Element', 'hdop', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;vdop&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span> &lt;/vdop&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Vertical dilution of precision.'); viewDocumentation('Element', 'vdop', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;pdop&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span> &lt;/pdop&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Position dilution of precision.'); viewDocumentation('Element', 'pdop', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;ageofdgpsdata&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span> &lt;/ageofdgpsdata&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Number of seconds since last DGPS update.'); viewDocumentation('Element', 'ageofdgpsdata', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;dgpsid&gt; <span class="type"><a title="Jump to &quot;dgpsStationType&quot; type definition." href="#type_dgpsStationType">dgpsStationType</a></span> &lt;/dgpsid&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('ID of DGPS station used in differential correction.'); viewDocumentation('Element', 'dgpsid', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;extensions&gt; <span class="type"><a title="Jump to &quot;extensionsType&quot; type definition." href="#type_extensionsType">extensionsType</a></span> &lt;/extensions&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('You can add extend GPX by adding your own elements from another schema here.'); viewDocumentation('Element', 'extensions', docArray);">?</a></div>&lt;/...&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_wptType_xibox', true);
+// -->
+</script>
+    </div>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="type_wptType_scbox_button" class="control" onclick="switchState('type_wptType_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="type_wptType_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:complexType</span> <span class="scTag">name</span>="<span class="scContent">wptType</span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:sequence</span>&gt;<div class="comment" style="margin-left: 1.5em;">&lt;-- elements must appear in this order --&gt;</div><div class="comment" style="margin-left: 1.5em;">&lt;-- Position info --&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">ele</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">time</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:dateTime</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">magvar</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;degreesType&quot; type definition." href="#type_degreesType">degreesType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">geoidheight</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div class="comment" style="margin-left: 1.5em;">&lt;-- Description info --&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">name</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">cmt</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">desc</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">src</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">link</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;linkType&quot; type definition." href="#type_linkType">linkType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">sym</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div class="comment" style="margin-left: 1.5em;">&lt;-- Accuracy info --&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">fix</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;fixType&quot; type definition." href="#type_fixType">fixType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">sat</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:nonNegativeInteger</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">hdop</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">vdop</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">pdop</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">ageofdgpsdata</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">dgpsid</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;dgpsStationType&quot; type definition." href="#type_dgpsStationType">dgpsStationType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">extensions</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;extensionsType&quot; type definition." href="#type_extensionsType">extensionsType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div>&lt;/<span class="scTag">xsd:sequence</span>&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:attribute</span> <span class="scTag">name</span>="<span class="scContent">lat</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;latitudeType&quot; type definition." href="#type_latitudeType">latitudeType</a></span></span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:attribute</span> <span class="scTag">name</span>="<span class="scContent">lon</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;longitudeType&quot; type definition." href="#type_longitudeType">longitudeType</a></span></span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/&gt;</div>&lt;/<span class="scTag">xsd:complexType</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_wptType_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h3>Complex Type: <a name="type_rteType" class="name">rteType</a></h3>
+    <table class="hierarchy">
+      <tbody><tr>
+        <th>Parent type:</th>
+        <td>None</td>
+      </tr>
+      <tr>
+        <th>Direct sub-types:</th>
+        <td>None</td>
+      </tr>
+    </tbody></table>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>rteType</td>
+      </tr>
+      <tr>
+        <th>Abstract</th>
+        <td>no</td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+		rte represents route - an ordered list of waypoints representing a series of turn points leading to a destination.
+	  </td>
+      </tr>
+    </tbody></table>
+    <div class="sample box">
+      <div><input value=" - " id="type_rteType_xibox_button" class="control" onclick="switchState('type_rteType_xibox'); return false;" style="display: inline;" type="button"> <span class="caption">XML Instance Representation</span></div>
+      <div style="display: block;" id="type_rteType_xibox" class="contents">
+        <div style="margin-left: 0em;">&lt;...&gt; <br><div style="margin-left: 1.5em;">&lt;name&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/name&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('GPS name of route.'); viewDocumentation('Element', 'name', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;cmt&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/cmt&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('GPS comment for route.'); viewDocumentation('Element', 'cmt', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;desc&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/desc&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Text description of route for user. Not sent to GPS.'); viewDocumentation('Element', 'desc', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;src&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/src&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Source of data. Included to give user some idea of reliability and accuracy of data.'); viewDocumentation('Element', 'src', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;link&gt; <span class="type"><a title="Jump to &quot;linkType&quot; type definition." href="#type_linkType">linkType</a></span> &lt;/link&gt; <span class="occurs">[0..*]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Links to external information about the route.'); viewDocumentation('Element', 'link', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;number&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:nonNegativeInteger</span> &lt;/number&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('GPS route number.'); viewDocumentation('Element', 'number', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;type&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/type&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Type (classification) of route.'); viewDocumentation('Element', 'type', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;extensions&gt; <span class="type"><a title="Jump to &quot;extensionsType&quot; type definition." href="#type_extensionsType">extensionsType</a></span> &lt;/extensions&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('You can add extend GPX by adding your own elements from another schema here.'); viewDocumentation('Element', 'extensions', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;rtept&gt; <span class="type"><a title="Jump to &quot;wptType&quot; type definition." href="#type_wptType">wptType</a></span> &lt;/rtept&gt; <span class="occurs">[0..*]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('A list of route points.'); viewDocumentation('Element', 'rtept', docArray);">?</a></div>&lt;/...&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_rteType_xibox', true);
+// -->
+</script>
+    </div>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="type_rteType_scbox_button" class="control" onclick="switchState('type_rteType_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="type_rteType_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:complexType</span> <span class="scTag">name</span>="<span class="scContent">rteType</span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:sequence</span>&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">name</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">cmt</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">desc</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">src</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">link</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;linkType&quot; type definition." href="#type_linkType">linkType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">number</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:nonNegativeInteger</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">extensions</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;extensionsType&quot; type definition." href="#type_extensionsType">extensionsType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">rtept</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;wptType&quot; type definition." href="#type_wptType">wptType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/&gt;</div>&lt;/<span class="scTag">xsd:sequence</span>&gt;</div>&lt;/<span class="scTag">xsd:complexType</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_rteType_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h3>Complex Type: <a name="type_trkType" class="name">trkType</a></h3>
+    <table class="hierarchy">
+      <tbody><tr>
+        <th>Parent type:</th>
+        <td>None</td>
+      </tr>
+      <tr>
+        <th>Direct sub-types:</th>
+        <td>None</td>
+      </tr>
+    </tbody></table>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>trkType</td>
+      </tr>
+      <tr>
+        <th>Abstract</th>
+        <td>no</td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+		trk represents a track - an ordered list of points describing a path.
+	  </td>
+      </tr>
+    </tbody></table>
+    <div class="sample box">
+      <div><input value=" - " id="type_trkType_xibox_button" class="control" onclick="switchState('type_trkType_xibox'); return false;" style="display: inline;" type="button"> <span class="caption">XML Instance Representation</span></div>
+      <div style="display: block;" id="type_trkType_xibox" class="contents">
+        <div style="margin-left: 0em;">&lt;...&gt; <br><div style="margin-left: 1.5em;">&lt;name&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/name&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('GPS name of track.'); viewDocumentation('Element', 'name', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;cmt&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/cmt&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('GPS comment for track.'); viewDocumentation('Element', 'cmt', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;desc&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/desc&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('User description of track.'); viewDocumentation('Element', 'desc', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;src&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/src&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Source of data. Included to give user some idea of reliability and accuracy of data.'); viewDocumentation('Element', 'src', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;link&gt; <span class="type"><a title="Jump to &quot;linkType&quot; type definition." href="#type_linkType">linkType</a></span> &lt;/link&gt; <span class="occurs">[0..*]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Links to external information about track.'); viewDocumentation('Element', 'link', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;number&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:nonNegativeInteger</span> &lt;/number&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('GPS track number.'); viewDocumentation('Element', 'number', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;type&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/type&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Type (classification) of track.'); viewDocumentation('Element', 'type', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;extensions&gt; <span class="type"><a title="Jump to &quot;extensionsType&quot; type definition." href="#type_extensionsType">extensionsType</a></span> &lt;/extensions&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('You can add extend GPX by adding your own elements from another schema here.'); viewDocumentation('Element', 'extensions', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;trkseg&gt; <span class="type"><a title="Jump to &quot;trksegType&quot; type definition." href="#type_trksegType">trksegType</a></span> &lt;/trkseg&gt; <span class="occurs">[0..*]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('A Track Segment holds a list of Track Points which are logically connected in order. To represent a single GPS track where GPS reception was lost, or the GPS receiver was turned off, start a new Track Segment for each continuous span of track data.'); viewDocumentation('Element', 'trkseg', docArray);">?</a></div>&lt;/...&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_trkType_xibox', true);
+// -->
+</script>
+    </div>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="type_trkType_scbox_button" class="control" onclick="switchState('type_trkType_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="type_trkType_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:complexType</span> <span class="scTag">name</span>="<span class="scContent">trkType</span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:sequence</span>&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">name</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">cmt</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">desc</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">src</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">link</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;linkType&quot; type definition." href="#type_linkType">linkType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">number</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:nonNegativeInteger</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">extensions</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;extensionsType&quot; type definition." href="#type_extensionsType">extensionsType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">trkseg</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;trksegType&quot; type definition." href="#type_trksegType">trksegType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/&gt;</div>&lt;/<span class="scTag">xsd:sequence</span>&gt;</div>&lt;/<span class="scTag">xsd:complexType</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_trkType_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h3>Complex Type: <a name="type_extensionsType" class="name">extensionsType</a></h3>
+    <table class="hierarchy">
+      <tbody><tr>
+        <th>Parent type:</th>
+        <td>None</td>
+      </tr>
+      <tr>
+        <th>Direct sub-types:</th>
+        <td>None</td>
+      </tr>
+    </tbody></table>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>extensionsType</td>
+      </tr>
+      <tr>
+        <th>Abstract</th>
+        <td>no</td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+	 You can add extend GPX by adding your own elements from another schema here.
+    </td>
+      </tr>
+    </tbody></table>
+    <div class="sample box">
+      <div><input value=" - " id="type_extensionsType_xibox_button" class="control" onclick="switchState('type_extensionsType_xibox'); return false;" style="display: inline;" type="button"> <span class="caption">XML Instance Representation</span></div>
+      <div style="display: block;" id="type_extensionsType_xibox" class="contents">
+        <div style="margin-left: 0em;">&lt;...&gt; <br><div class="other" style="margin-left: 1.5em;">Allow any elements from a namespace other than this schema's namespace (lax validation). <span class="occurs">[0..*]</span></div>&lt;/...&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_extensionsType_xibox', true);
+// -->
+</script>
+    </div>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="type_extensionsType_scbox_button" class="control" onclick="switchState('type_extensionsType_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="type_extensionsType_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:complexType</span> <span class="scTag">name</span>="<span class="scContent">extensionsType</span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:sequence</span>&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:any</span> <span class="scTag">namespace</span>="<span class="scContent">##other</span>" <span class="scTag">processContents</span>="<span class="scContent">lax</span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/&gt;</div>&lt;/<span class="scTag">xsd:sequence</span>&gt;</div>&lt;/<span class="scTag">xsd:complexType</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_extensionsType_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h3>Complex Type: <a name="type_trksegType" class="name">trksegType</a></h3>
+    <table class="hierarchy">
+      <tbody><tr>
+        <th>Parent type:</th>
+        <td>None</td>
+      </tr>
+      <tr>
+        <th>Direct sub-types:</th>
+        <td>None</td>
+      </tr>
+    </tbody></table>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>trksegType</td>
+      </tr>
+      <tr>
+        <th>Abstract</th>
+        <td>no</td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+A Track Segment holds a list of Track Points which are logically
+connected in order. To represent a single GPS track where GPS reception
+was lost, or the GPS receiver was turned off, start a new Track Segment
+for each continuous span of track data. </td>
+      </tr>
+    </tbody></table>
+    <div class="sample box">
+      <div><input value=" - " id="type_trksegType_xibox_button" class="control" onclick="switchState('type_trksegType_xibox'); return false;" style="display: inline;" type="button"> <span class="caption">XML Instance Representation</span></div>
+      <div style="display: block;" id="type_trksegType_xibox" class="contents">
+        <div style="margin-left: 0em;">&lt;...&gt; <br><div style="margin-left: 1.5em;">&lt;trkpt&gt; <span class="type"><a title="Jump to &quot;wptType&quot; type definition." href="#type_wptType">wptType</a></span> &lt;/trkpt&gt; <span class="occurs">[0..*]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('A Track Point holds the coordinates, elevation, timestamp, and metadata for a single point in a track.'); viewDocumentation('Element', 'trkpt', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;extensions&gt; <span class="type"><a title="Jump to &quot;extensionsType&quot; type definition." href="#type_extensionsType">extensionsType</a></span> &lt;/extensions&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('You can add extend GPX by adding your own elements from another schema here.'); viewDocumentation('Element', 'extensions', docArray);">?</a></div>&lt;/...&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_trksegType_xibox', true);
+// -->
+</script>
+    </div>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="type_trksegType_scbox_button" class="control" onclick="switchState('type_trksegType_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="type_trksegType_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:complexType</span> <span class="scTag">name</span>="<span class="scContent">trksegType</span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:sequence</span>&gt;<div class="comment" style="margin-left: 1.5em;">&lt;-- elements must appear in this order --&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">trkpt</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;wptType&quot; type definition." href="#type_wptType">wptType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">extensions</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;extensionsType&quot; type definition." href="#type_extensionsType">extensionsType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div>&lt;/<span class="scTag">xsd:sequence</span>&gt;</div>&lt;/<span class="scTag">xsd:complexType</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_trksegType_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h3>Complex Type: <a name="type_copyrightType" class="name">copyrightType</a></h3>
+    <table class="hierarchy">
+      <tbody><tr>
+        <th>Parent type:</th>
+        <td>None</td>
+      </tr>
+      <tr>
+        <th>Direct sub-types:</th>
+        <td>None</td>
+      </tr>
+    </tbody></table>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>copyrightType</td>
+      </tr>
+      <tr>
+        <th>Abstract</th>
+        <td>no</td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+	 Information about the copyright holder and any license governing use of this file.  By linking to an appropriate license,
+	 you may place your data into the public domain or grant additional usage rights.
+    </td>
+      </tr>
+    </tbody></table>
+    <div class="sample box">
+      <div><input value=" - " id="type_copyrightType_xibox_button" class="control" onclick="switchState('type_copyrightType_xibox'); return false;" style="display: inline;" type="button"> <span class="caption">XML Instance Representation</span></div>
+      <div style="display: block;" id="type_copyrightType_xibox" class="contents">
+        <div style="margin-left: 0em;">&lt;...<br><span style="margin-left: 0.5em;"> author="<span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> <span class="occurs">[1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Copyright holder (TopoSoft, Inc.)'); viewDocumentation('Attribute', 'author', docArray);">?</a>"</span>&gt; <br><div style="margin-left: 1.5em;">&lt;year&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:gYear</span> &lt;/year&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Year of copyright.'); viewDocumentation('Element', 'year', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;license&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:anyURI</span> &lt;/license&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Link to external file containing license text.'); viewDocumentation('Element', 'license', docArray);">?</a></div>&lt;/...&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_copyrightType_xibox', true);
+// -->
+</script>
+    </div>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="type_copyrightType_scbox_button" class="control" onclick="switchState('type_copyrightType_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="type_copyrightType_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:complexType</span> <span class="scTag">name</span>="<span class="scContent">copyrightType</span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:sequence</span>&gt;<div class="comment" style="margin-left: 1.5em;">&lt;-- elements must appear in this order --&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">year</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:gYear</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">license</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:anyURI</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div>&lt;/<span class="scTag">xsd:sequence</span>&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:attribute</span> <span class="scTag">name</span>="<span class="scContent">author</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/&gt;</div>&lt;/<span class="scTag">xsd:complexType</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_copyrightType_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h3>Complex Type: <a name="type_linkType" class="name">linkType</a></h3>
+    <table class="hierarchy">
+      <tbody><tr>
+        <th>Parent type:</th>
+        <td>None</td>
+      </tr>
+      <tr>
+        <th>Direct sub-types:</th>
+        <td>None</td>
+      </tr>
+    </tbody></table>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>linkType</td>
+      </tr>
+      <tr>
+        <th>Abstract</th>
+        <td>no</td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+	 A link to an external resource (Web page, digital photo, video clip, etc) with additional information.
+    </td>
+      </tr>
+    </tbody></table>
+    <div class="sample box">
+      <div><input value=" - " id="type_linkType_xibox_button" class="control" onclick="switchState('type_linkType_xibox'); return false;" style="display: inline;" type="button"> <span class="caption">XML Instance Representation</span></div>
+      <div style="display: block;" id="type_linkType_xibox" class="contents">
+        <div style="margin-left: 0em;">&lt;...<br><span style="margin-left: 0.5em;"> href="<span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:anyURI</span> <span class="occurs">[1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('URL of hyperlink.'); viewDocumentation('Attribute', 'href', docArray);">?</a>"</span>&gt; <br><div style="margin-left: 1.5em;">&lt;text&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/text&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Text of hyperlink.'); viewDocumentation('Element', 'text', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;type&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/type&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Mime type of content (image/jpeg)'); viewDocumentation('Element', 'type', docArray);">?</a></div>&lt;/...&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_linkType_xibox', true);
+// -->
+</script>
+    </div>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="type_linkType_scbox_button" class="control" onclick="switchState('type_linkType_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="type_linkType_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:complexType</span> <span class="scTag">name</span>="<span class="scContent">linkType</span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:sequence</span>&gt;<div class="comment" style="margin-left: 1.5em;">&lt;-- elements must appear in this order --&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">text</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div>&lt;/<span class="scTag">xsd:sequence</span>&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:attribute</span> <span class="scTag">name</span>="<span class="scContent">href</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:anyURI</span></span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/&gt;</div>&lt;/<span class="scTag">xsd:complexType</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_linkType_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h3>Complex Type: <a name="type_emailType" class="name">emailType</a></h3>
+    <table class="hierarchy">
+      <tbody><tr>
+        <th>Parent type:</th>
+        <td>None</td>
+      </tr>
+      <tr>
+        <th>Direct sub-types:</th>
+        <td>None</td>
+      </tr>
+    </tbody></table>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>emailType</td>
+      </tr>
+      <tr>
+        <th>Abstract</th>
+        <td>no</td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+	 An email address.  Broken into two parts (id and domain) to help prevent email harvesting.
+    </td>
+      </tr>
+    </tbody></table>
+    <div class="sample box">
+      <div><input value=" - " id="type_emailType_xibox_button" class="control" onclick="switchState('type_emailType_xibox'); return false;" style="display: inline;" type="button"> <span class="caption">XML Instance Representation</span></div>
+      <div style="display: block;" id="type_emailType_xibox" class="contents">
+        <div style="margin-left: 0em;">&lt;...<br><span style="margin-left: 0.5em;"> id="<span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> <span class="occurs">[1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('id half of email address (billgates2004)'); viewDocumentation('Attribute', 'id', docArray);">?</a>"</span><br><span style="margin-left: 0.5em;"> domain="<span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> <span class="occurs">[1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('domain half of email address (hotmail.com)'); viewDocumentation('Attribute', 'domain', docArray);">?</a>"</span>/&gt; </div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_emailType_xibox', true);
+// -->
+</script>
+    </div>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="type_emailType_scbox_button" class="control" onclick="switchState('type_emailType_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="type_emailType_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:complexType</span> <span class="scTag">name</span>="<span class="scContent">emailType</span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:attribute</span> <span class="scTag">name</span>="<span class="scContent">id</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:attribute</span> <span class="scTag">name</span>="<span class="scContent">domain</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/&gt;</div>&lt;/<span class="scTag">xsd:complexType</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_emailType_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h3>Complex Type: <a name="type_personType" class="name">personType</a></h3>
+    <table class="hierarchy">
+      <tbody><tr>
+        <th>Parent type:</th>
+        <td>None</td>
+      </tr>
+      <tr>
+        <th>Direct sub-types:</th>
+        <td>None</td>
+      </tr>
+    </tbody></table>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>personType</td>
+      </tr>
+      <tr>
+        <th>Abstract</th>
+        <td>no</td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+	 A person or organization.
+    </td>
+      </tr>
+    </tbody></table>
+    <div class="sample box">
+      <div><input value=" - " id="type_personType_xibox_button" class="control" onclick="switchState('type_personType_xibox'); return false;" style="display: inline;" type="button"> <span class="caption">XML Instance Representation</span></div>
+      <div style="display: block;" id="type_personType_xibox" class="contents">
+        <div style="margin-left: 0em;">&lt;...&gt; <br><div style="margin-left: 1.5em;">&lt;name&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> &lt;/name&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Name of person or organization.'); viewDocumentation('Element', 'name', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;email&gt; <span class="type"><a title="Jump to &quot;emailType&quot; type definition." href="#type_emailType">emailType</a></span> &lt;/email&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Email address.'); viewDocumentation('Element', 'email', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;link&gt; <span class="type"><a title="Jump to &quot;linkType&quot; type definition." href="#type_linkType">linkType</a></span> &lt;/link&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Link to Web site or other external information about person.'); viewDocumentation('Element', 'link', docArray);">?</a></div>&lt;/...&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_personType_xibox', true);
+// -->
+</script>
+    </div>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="type_personType_scbox_button" class="control" onclick="switchState('type_personType_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="type_personType_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:complexType</span> <span class="scTag">name</span>="<span class="scContent">personType</span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:sequence</span>&gt;<div class="comment" style="margin-left: 1.5em;">&lt;-- elements must appear in this order --&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">name</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">email</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;emailType&quot; type definition." href="#type_emailType">emailType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">link</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;linkType&quot; type definition." href="#type_linkType">linkType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div>&lt;/<span class="scTag">xsd:sequence</span>&gt;</div>&lt;/<span class="scTag">xsd:complexType</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_personType_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h3>Complex Type: <a name="type_ptType" class="name">ptType</a></h3>
+    <table class="hierarchy">
+      <tbody><tr>
+        <th>Parent type:</th>
+        <td>None</td>
+      </tr>
+      <tr>
+        <th>Direct sub-types:</th>
+        <td>None</td>
+      </tr>
+    </tbody></table>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>ptType</td>
+      </tr>
+      <tr>
+        <th>Abstract</th>
+        <td>no</td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+	 A geographic point with optional elevation and time.  Available for use by other schemas.
+    </td>
+      </tr>
+    </tbody></table>
+    <div class="sample box">
+      <div><input value=" - " id="type_ptType_xibox_button" class="control" onclick="switchState('type_ptType_xibox'); return false;" style="display: inline;" type="button"> <span class="caption">XML Instance Representation</span></div>
+      <div style="display: block;" id="type_ptType_xibox" class="contents">
+        <div style="margin-left: 0em;">&lt;...<br><span style="margin-left: 0.5em;"> lat="<span class="type"><a title="Jump to &quot;latitudeType&quot; type definition." href="#type_latitudeType">latitudeType</a></span> <span class="occurs">[1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('The latitude of the point. Decimal degrees, WGS84 datum.'); viewDocumentation('Attribute', 'lat', docArray);">?</a>"</span><br><span style="margin-left: 0.5em;"> lon="<span class="type"><a title="Jump to &quot;longitudeType&quot; type definition." href="#type_longitudeType">longitudeType</a></span> <span class="occurs">[1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('The latitude of the point. Decimal degrees, WGS84 datum.'); viewDocumentation('Attribute', 'lon', docArray);">?</a>"</span>&gt; <br><div style="margin-left: 1.5em;">&lt;ele&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span> &lt;/ele&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('The elevation (in meters) of the point.'); viewDocumentation('Element', 'ele', docArray);">?</a></div><div style="margin-left: 1.5em;">&lt;time&gt; <span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:dateTime</span> &lt;/time&gt; <span class="occurs">[0..1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('The time that the point was recorded.'); viewDocumentation('Element', 'time', docArray);">?</a></div>&lt;/...&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_ptType_xibox', true);
+// -->
+</script>
+    </div>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="type_ptType_scbox_button" class="control" onclick="switchState('type_ptType_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="type_ptType_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:complexType</span> <span class="scTag">name</span>="<span class="scContent">ptType</span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:sequence</span>&gt;<div class="comment" style="margin-left: 1.5em;">&lt;-- elements must appear in this order --&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">ele</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">time</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:dateTime</span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/&gt;</div>&lt;/<span class="scTag">xsd:sequence</span>&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:attribute</span> <span class="scTag">name</span>="<span class="scContent">lat</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;latitudeType&quot; type definition." href="#type_latitudeType">latitudeType</a></span></span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:attribute</span> <span class="scTag">name</span>="<span class="scContent">lon</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;longitudeType&quot; type definition." href="#type_longitudeType">longitudeType</a></span></span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/&gt;</div>&lt;/<span class="scTag">xsd:complexType</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_ptType_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h3>Complex Type: <a name="type_ptsegType" class="name">ptsegType</a></h3>
+    <table class="hierarchy">
+      <tbody><tr>
+        <th>Parent type:</th>
+        <td>None</td>
+      </tr>
+      <tr>
+        <th>Direct sub-types:</th>
+        <td>None</td>
+      </tr>
+    </tbody></table>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>ptsegType</td>
+      </tr>
+      <tr>
+        <th>Abstract</th>
+        <td>no</td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+	 An ordered sequence of points.  (for polygons or polylines, e.g.)
+    </td>
+      </tr>
+    </tbody></table>
+    <div class="sample box">
+      <div><input value=" - " id="type_ptsegType_xibox_button" class="control" onclick="switchState('type_ptsegType_xibox'); return false;" style="display: inline;" type="button"> <span class="caption">XML Instance Representation</span></div>
+      <div style="display: block;" id="type_ptsegType_xibox" class="contents">
+        <div style="margin-left: 0em;">&lt;...&gt; <br><div style="margin-left: 1.5em;">&lt;pt&gt; <span class="type"><a title="Jump to &quot;ptType&quot; type definition." href="#type_ptType">ptType</a></span> &lt;/pt&gt; <span class="occurs">[0..*]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('Ordered list of geographic points.'); viewDocumentation('Element', 'pt', docArray);">?</a></div>&lt;/...&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_ptsegType_xibox', true);
+// -->
+</script>
+    </div>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="type_ptsegType_scbox_button" class="control" onclick="switchState('type_ptsegType_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="type_ptsegType_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:complexType</span> <span class="scTag">name</span>="<span class="scContent">ptsegType</span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:sequence</span>&gt;<div class="comment" style="margin-left: 1.5em;">&lt;-- elements must appear in this order --&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:element</span> <span class="scTag">name</span>="<span class="scContent">pt</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;ptType&quot; type definition." href="#type_ptType">ptType</a></span></span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/&gt;</div>&lt;/<span class="scTag">xsd:sequence</span>&gt;</div>&lt;/<span class="scTag">xsd:complexType</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_ptsegType_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h3>Complex Type: <a name="type_boundsType" class="name">boundsType</a></h3>
+    <table class="hierarchy">
+      <tbody><tr>
+        <th>Parent type:</th>
+        <td>None</td>
+      </tr>
+      <tr>
+        <th>Direct sub-types:</th>
+        <td>None</td>
+      </tr>
+    </tbody></table>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>boundsType</td>
+      </tr>
+      <tr>
+        <th>Abstract</th>
+        <td>no</td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+	 Two lat/lon pairs defining the extent of an element.
+    </td>
+      </tr>
+    </tbody></table>
+    <div class="sample box">
+      <div><input value=" - " id="type_boundsType_xibox_button" class="control" onclick="switchState('type_boundsType_xibox'); return false;" style="display: inline;" type="button"> <span class="caption">XML Instance Representation</span></div>
+      <div style="display: block;" id="type_boundsType_xibox" class="contents">
+        <div style="margin-left: 0em;">&lt;...<br><span style="margin-left: 0.5em;"> minlat="<span class="type"><a title="Jump to &quot;latitudeType&quot; type definition." href="#type_latitudeType">latitudeType</a></span> <span class="occurs">[1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('The minimum latitude.'); viewDocumentation('Attribute', 'minlat', docArray);">?</a>"</span><br><span style="margin-left: 0.5em;"> minlon="<span class="type"><a title="Jump to &quot;longitudeType&quot; type definition." href="#type_longitudeType">longitudeType</a></span> <span class="occurs">[1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('The minimum longitude.'); viewDocumentation('Attribute', 'minlon', docArray);">?</a>"</span><br><span style="margin-left: 0.5em;"> maxlat="<span class="type"><a title="Jump to &quot;latitudeType&quot; type definition." href="#type_latitudeType">latitudeType</a></span> <span class="occurs">[1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('The maximum latitude.'); viewDocumentation('Attribute', 'maxlat', docArray);">?</a>"</span><br><span style="margin-left: 0.5em;"> maxlon="<span class="type"><a title="Jump to &quot;longitudeType&quot; type definition." href="#type_longitudeType">longitudeType</a></span> <span class="occurs">[1]</span> <a href="javascript:void(0)" title="View Documentation" class="documentation" onclick="docArray = new Array('The maximum longitude.'); viewDocumentation('Attribute', 'maxlon', docArray);">?</a>"</span>/&gt; </div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_boundsType_xibox', true);
+// -->
+</script>
+    </div>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="type_boundsType_scbox_button" class="control" onclick="switchState('type_boundsType_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="type_boundsType_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:complexType</span> <span class="scTag">name</span>="<span class="scContent">boundsType</span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:attribute</span> <span class="scTag">name</span>="<span class="scContent">minlat</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;latitudeType&quot; type definition." href="#type_latitudeType">latitudeType</a></span></span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:attribute</span> <span class="scTag">name</span>="<span class="scContent">minlon</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;longitudeType&quot; type definition." href="#type_longitudeType">longitudeType</a></span></span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:attribute</span> <span class="scTag">name</span>="<span class="scContent">maxlat</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;latitudeType&quot; type definition." href="#type_latitudeType">latitudeType</a></span></span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:attribute</span> <span class="scTag">name</span>="<span class="scContent">maxlon</span>" <span class="scTag">type</span>="<span class="scContent"><span class="type"><a title="Jump to &quot;longitudeType&quot; type definition." href="#type_longitudeType">longitudeType</a></span></span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/&gt;</div>&lt;/<span class="scTag">xsd:complexType</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_boundsType_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h3>Simple Type: <a name="type_latitudeType" class="name">latitudeType</a></h3>
+    <table class="hierarchy">
+      <tbody><tr>
+        <th>Parent type:</th>
+        <td><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span> (derivation method: restriction)</td>
+      </tr>
+      <tr>
+        <th>Direct sub-types:</th>
+        <td>None</td>
+      </tr>
+    </tbody></table>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>latitudeType</td>
+      </tr>
+      <tr>
+        <th>Content</th>
+        <td>
+          <ul>
+            <li>Base XSD Type: decimal</li>
+          </ul>
+          <ul>
+            <li>-90.0 &lt;= <em>value</em> &lt;= 90.0</li>
+          </ul>
+        </td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+		The latitude of the point.  Decimal degrees, WGS84 datum.
+	  </td>
+      </tr>
+    </tbody></table>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="type_latitudeType_scbox_button" class="control" onclick="switchState('type_latitudeType_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="type_latitudeType_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:simpleType</span> <span class="scTag">name</span>="<span class="scContent">latitudeType</span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:restriction</span> <span class="scTag">base</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span></span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:minInclusive</span> <span class="scTag">value</span>="<span class="scContent">-90.0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:maxInclusive</span> <span class="scTag">value</span>="<span class="scContent">90.0</span>"/&gt;</div>&lt;/<span class="scTag">xsd:restriction</span>&gt;</div>&lt;/<span class="scTag">xsd:simpleType</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_latitudeType_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h3>Simple Type: <a name="type_longitudeType" class="name">longitudeType</a></h3>
+    <table class="hierarchy">
+      <tbody><tr>
+        <th>Parent type:</th>
+        <td><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span> (derivation method: restriction)</td>
+      </tr>
+      <tr>
+        <th>Direct sub-types:</th>
+        <td>None</td>
+      </tr>
+    </tbody></table>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>longitudeType</td>
+      </tr>
+      <tr>
+        <th>Content</th>
+        <td>
+          <ul>
+            <li>Base XSD Type: decimal</li>
+          </ul>
+          <ul>
+            <li>-180.0 &lt;= <em>value</em> &lt; 180.0</li>
+          </ul>
+        </td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+		The longitude of the point.  Decimal degrees, WGS84 datum.
+	  </td>
+      </tr>
+    </tbody></table>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="type_longitudeType_scbox_button" class="control" onclick="switchState('type_longitudeType_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="type_longitudeType_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:simpleType</span> <span class="scTag">name</span>="<span class="scContent">longitudeType</span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:restriction</span> <span class="scTag">base</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span></span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:minInclusive</span> <span class="scTag">value</span>="<span class="scContent">-180.0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:maxExclusive</span> <span class="scTag">value</span>="<span class="scContent">180.0</span>"/&gt;</div>&lt;/<span class="scTag">xsd:restriction</span>&gt;</div>&lt;/<span class="scTag">xsd:simpleType</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_longitudeType_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h3>Simple Type: <a name="type_degreesType" class="name">degreesType</a></h3>
+    <table class="hierarchy">
+      <tbody><tr>
+        <th>Parent type:</th>
+        <td><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span> (derivation method: restriction)</td>
+      </tr>
+      <tr>
+        <th>Direct sub-types:</th>
+        <td>None</td>
+      </tr>
+    </tbody></table>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>degreesType</td>
+      </tr>
+      <tr>
+        <th>Content</th>
+        <td>
+          <ul>
+            <li>Base XSD Type: decimal</li>
+          </ul>
+          <ul>
+            <li>0.0 &lt;= <em>value</em> &lt; 360.0</li>
+          </ul>
+        </td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+		Used for bearing, heading, course.  Units are decimal degrees, true (not magnetic).
+	  </td>
+      </tr>
+    </tbody></table>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="type_degreesType_scbox_button" class="control" onclick="switchState('type_degreesType_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="type_degreesType_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:simpleType</span> <span class="scTag">name</span>="<span class="scContent">degreesType</span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:restriction</span> <span class="scTag">base</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:decimal</span></span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:minInclusive</span> <span class="scTag">value</span>="<span class="scContent">0.0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:maxExclusive</span> <span class="scTag">value</span>="<span class="scContent">360.0</span>"/&gt;</div>&lt;/<span class="scTag">xsd:restriction</span>&gt;</div>&lt;/<span class="scTag">xsd:simpleType</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_degreesType_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h3>Simple Type: <a name="type_fixType" class="name">fixType</a></h3>
+    <table class="hierarchy">
+      <tbody><tr>
+        <th>Parent type:</th>
+        <td><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span> (derivation method: restriction)</td>
+      </tr>
+      <tr>
+        <th>Direct sub-types:</th>
+        <td>None</td>
+      </tr>
+    </tbody></table>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>fixType</td>
+      </tr>
+      <tr>
+        <th>Content</th>
+        <td>
+          <ul>
+            <li>Base XSD Type: string</li>
+          </ul>
+          <ul>
+            <li><em>value</em> comes from list: {'none'|'2d'|'3d'|'dgps'|'pps'}</li>
+          </ul>
+        </td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+Type of GPS fix. none means GPS had no fix. To signify "the fix info is
+unknown, leave out fixType entirely. pps = military signal used </td>
+      </tr>
+    </tbody></table>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="type_fixType_scbox_button" class="control" onclick="switchState('type_fixType_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="type_fixType_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:simpleType</span> <span class="scTag">name</span>="<span class="scContent">fixType</span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:restriction</span> <span class="scTag">base</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:string</span></span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:enumeration</span> <span class="scTag">value</span>="<span class="scContent">none</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:enumeration</span> <span class="scTag">value</span>="<span class="scContent">2d</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:enumeration</span> <span class="scTag">value</span>="<span class="scContent">3d</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:enumeration</span> <span class="scTag">value</span>="<span class="scContent">dgps</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:enumeration</span> <span class="scTag">value</span>="<span class="scContent">pps</span>"/&gt;</div>&lt;/<span class="scTag">xsd:restriction</span>&gt;</div>&lt;/<span class="scTag">xsd:simpleType</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_fixType_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <h3>Simple Type: <a name="type_dgpsStationType" class="name">dgpsStationType</a></h3>
+    <table class="hierarchy">
+      <tbody><tr>
+        <th>Parent type:</th>
+        <td><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:integer</span> (derivation method: restriction)</td>
+      </tr>
+      <tr>
+        <th>Direct sub-types:</th>
+        <td>None</td>
+      </tr>
+    </tbody></table>
+    <table class="properties">
+      <tbody><tr>
+        <th>Name</th>
+        <td>dgpsStationType</td>
+      </tr>
+      <tr>
+        <th>Content</th>
+        <td>
+          <ul>
+            <li>Base XSD Type: integer</li>
+          </ul>
+          <ul>
+            <li>0 &lt;= <em>value</em> &lt;= 1023</li>
+          </ul>
+        </td>
+      </tr>
+      <tr>
+        <th>Documentation</th>
+        <td>
+	 Represents a differential GPS station.
+    </td>
+      </tr>
+    </tbody></table>
+    <div class="schemaComponent box">
+      <div><input value=" + " id="type_dgpsStationType_scbox_button" class="control" onclick="switchState('type_dgpsStationType_scbox'); return false;" style="display: inline;" type="button"> <span class="caption">Schema Component Representation</span></div>
+      <div style="display: none;" id="type_dgpsStationType_scbox" class="contents">
+        <div style="margin-left: 0em;">&lt;<span class="scTag">xsd:simpleType</span> <span class="scTag">name</span>="<span class="scContent">dgpsStationType</span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:restriction</span> <span class="scTag">base</span>="<span class="scContent"><span class="type"><a href="#ns_xsd" title="Find out namespace of 'xsd' prefix">xsd</a>:integer</span></span>"&gt;<div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:minInclusive</span> <span class="scTag">value</span>="<span class="scContent">0</span>"/&gt;</div><div style="margin-left: 1.5em;">&lt;<span class="scTag">xsd:maxInclusive</span> <span class="scTag">value</span>="<span class="scContent">1023</span>"/&gt;</div>&lt;/<span class="scTag">xsd:restriction</span>&gt;</div>&lt;/<span class="scTag">xsd:simpleType</span>&gt;</div>
+      </div>
+      <script type="text/javascript">
+<!--
+setState('type_dgpsStationType_scbox', false);
+// -->
+</script>
+    </div>
+    <div style="text-align: right; clear: both;">
+      <a href="#top">top</a>
+    </div>
+    <hr>
+    <p class="footer">Generated by <a href="http://titanium.dstc.edu.au/xml/xs3p">xs3p</a>. Last modified: <script type="text/javascript">
+<!--
+document.write(document.lastModified);
+// -->
+</script>07/28/2004 20:20:12</p>
+  
+</body></html>
Index: /bbtracker_common/tags/release_0_4_0/trunk/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/.settings/org.eclipse.jdt.core.prefs	(revision 4)
+++ /bbtracker_common/tags/release_0_4_0/trunk/.settings/org.eclipse.jdt.core.prefs	(revision 4)
@@ -0,0 +1,12 @@
+#Tue Jun 26 11:17:24 CEST 2007
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=disabled
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.1
+org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
+org.eclipse.jdt.core.compiler.compliance=1.3
+org.eclipse.jdt.core.compiler.debug.lineNumber=generate
+org.eclipse.jdt.core.compiler.debug.localVariable=generate
+org.eclipse.jdt.core.compiler.debug.sourceFile=generate
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=ignore
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=ignore
+org.eclipse.jdt.core.compiler.source=1.3
Index: /bbtracker_common/tags/release_0_4_0/trunk/.settings/org.eclipse.jdt.ui.prefs
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/.settings/org.eclipse.jdt.ui.prefs	(revision 61)
+++ /bbtracker_common/tags/release_0_4_0/trunk/.settings/org.eclipse.jdt.ui.prefs	(revision 61)
@@ -0,0 +1,3 @@
+#Wed Aug 08 02:53:40 CEST 2007
+eclipse.preferences.version=1
+org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates><template autoinsert\="true" context\="gettercomment_context" deleted\="false" description\="Comment for getter method" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.gettercomment" name\="gettercomment">/**\n * @return the ${bare_field_name}\n */</template><template autoinsert\="true" context\="settercomment_context" deleted\="false" description\="Comment for setter method" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.settercomment" name\="settercomment">/**\n * @param ${param} the ${bare_field_name} to set\n */</template><template autoinsert\="true" context\="constructorcomment_context" deleted\="false" description\="Comment for created constructors" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.constructorcomment" name\="constructorcomment">/**\n * ${tags}\n */</template><template autoinsert\="false" context\="filecomment_context" deleted\="false" description\="Comment for created Java files" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.filecomment" name\="filecomment">/*\n * Copyright ${year} Joachim Sauer\n * \n * This file is part of bbTracker.\n * \n * bbTracker is free software; you can redistribute it and/or modify\n * it under the terms of the GNU General Public License version 2 as\n * published by the Free Software Foundation.\n *\n * bbTracker is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see &lt;http\://www.gnu.org/licenses/&gt;.\n */\n</template><template autoinsert\="false" context\="typecomment_context" deleted\="false" description\="Comment for created types" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.typecomment" name\="typecomment">/**\n * ${tags}\n */</template><template autoinsert\="true" context\="fieldcomment_context" deleted\="false" description\="Comment for fields" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.fieldcomment" name\="fieldcomment">/**\n * \n */</template><template autoinsert\="true" context\="methodcomment_context" deleted\="false" description\="Comment for non-overriding methods" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.methodcomment" name\="methodcomment">/**\n * ${tags}\n */</template><template autoinsert\="true" context\="overridecomment_context" deleted\="false" description\="Comment for overriding methods" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.overridecomment" name\="overridecomment">/* (non-Javadoc)\n * ${see_to_overridden}\n */</template><template autoinsert\="true" context\="delegatecomment_context" deleted\="false" description\="Comment for delegate methods" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.delegatecomment" name\="delegatecomment">/**\n * ${tags}\n * ${see_to_target}\n */</template><template autoinsert\="true" context\="newtype_context" deleted\="false" description\="Newly created files" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.newtype" name\="newtype">${filecomment}\n${package_declaration}\n\n${typecomment}\n${type_declaration}</template><template autoinsert\="true" context\="classbody_context" deleted\="false" description\="Code in new class type bodies" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.classbody" name\="classbody">\n</template><template autoinsert\="true" context\="interfacebody_context" deleted\="false" description\="Code in new interface type bodies" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.interfacebody" name\="interfacebody">\n</template><template autoinsert\="true" context\="enumbody_context" deleted\="false" description\="Code in new enum type bodies" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.enumbody" name\="enumbody">\n</template><template autoinsert\="true" context\="annotationbody_context" deleted\="false" description\="Code in new annotation type bodies" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.annotationbody" name\="annotationbody">\n</template><template autoinsert\="true" context\="catchblock_context" deleted\="false" description\="Code in new catch blocks" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.catchblock" name\="catchblock">// ${todo} Auto-generated catch block\n${exception_var}.printStackTrace();</template><template autoinsert\="true" context\="methodbody_context" deleted\="false" description\="Code in created method stubs" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.methodbody" name\="methodbody">// ${todo} Auto-generated method stub\n${body_statement}</template><template autoinsert\="true" context\="constructorbody_context" deleted\="false" description\="Code in created constructor stubs" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.constructorbody" name\="constructorbody">${body_statement}\n// ${todo} Auto-generated constructor stub</template><template autoinsert\="true" context\="getterbody_context" deleted\="false" description\="Code in created getters" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.getterbody" name\="getterbody">return ${field};</template><template autoinsert\="true" context\="setterbody_context" deleted\="false" description\="Code in created setters" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.setterbody" name\="setterbody">${field} \= ${param};</template></templates>
Index: /bbtracker_common/tags/release_0_4_0/trunk/.settings/org.eclipse.core.resources.prefs
===================================================================
--- /bbtracker_common/tags/release_0_4_0/trunk/.settings/org.eclipse.core.resources.prefs	(revision 4)
+++ /bbtracker_common/tags/release_0_4_0/trunk/.settings/org.eclipse.core.resources.prefs	(revision 4)
@@ -0,0 +1,3 @@
+#Fri Jul 13 12:23:08 CEST 2007
+eclipse.preferences.version=1
+encoding/<project>=UTF-8
