view svg/21-Feb-CU-21-Feb.svg @ 0:fd3d8ada71ad

Inital Commit
author tschulz <>
date Wed, 17 Nov 2010 22:27:29 -0600
parents
children
line wrap: on
line source

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg height="700" onload="init(evt)" width="700" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">	<script type="text/ecmascript"><![CDATA[
		var SVGDoc; var SVGRoot;
		function init(evt) {
			SVGDoc = evt.getTarget().getOwnerDocument();
			SVGRoot = SVGDoc.getDocumentElement();
		}]]>
	</script>	<script type="text/ecmascript"><![CDATA[
	var svgns = "http://www.w3.org/2000/svg";
	var tracking;
	var x_offset = 0; var y_offset = 0; // how far off the mouse was from a group's coordinates
	var global_mouse_x; var global_mouse_y; // for seeing if the mouse moved
	
	function toggle_item_opacity(id,op1,op2) {
		if (SVGDoc.getElementById(id) != null) {
			var item = SVGDoc.getElementById(id);
			var new_op = (parseFloat(item.getAttributeNS(null, 'opacity')) == op1) ? op2 : op1;
			item.setAttributeNS(null, 'opacity',new_op.toString());
		}
	}
	function showSaver(op) {
		if (SVGDoc.getElementById('Saver') != null) {
			var theSaver = SVGDoc.getElementById('Saver');
			theSaver.setAttributeNS(null, 'opacity',op);
		}
	}
	function trackGroup(evt,id,onoff){
		tracking = onoff;
		if (onoff) {
			findGroupClickOffset(evt,id);
			showSaver(1);
		}
	}
	function findGroupClickOffset(evt,name_of_group) {
		var theClickedThing = SVGDoc.getElementById(name_of_group);
		var scale = SVGRoot.getCurrentScale();
		var pan = SVGRoot.getCurrentTranslate();
		var mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
		var mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
		var group_coords = findGroupCoordinates(name_of_group);
		x_offset = mouse_x - group_coords.x; // global variable
		y_offset = mouse_y - group_coords.y; // global variable
	}
	function findGroupCoordinates(name_of_group) {
		var theGroup = SVGDoc.getElementById(name_of_group);
		var old_transform = theGroup.getAttributeNS(null, 'transform'); 
		var regex = /([0-9e.-]+),([0-9e.-]+)/;
		var numbers = regex.exec(old_transform);
		var group_x = eval(numbers[1]) + parseFloat(theGroup.getAttributeNS(null, 'x'));
		var group_y = eval(numbers[2]) + parseFloat(theGroup.getAttributeNS(null, 'y'));
		return { x: group_x, y: group_y };
	}
	function moveGroup(evt,name_of_group) {
		if (tracking) {
			var theGroup = SVGDoc.getElementById(name_of_group);
			// Find out where the mouse is, and use x and y offset values
			var scale = SVGRoot.getCurrentScale();
			var pan = SVGRoot.getCurrentTranslate();
			var new_x = evt.getClientX()/scale + (( 0.0 - pan.x ) / scale) - x_offset;
			var new_y = evt.getClientY()/scale + (( 0.0 - pan.y ) / scale) - y_offset;
			// Calculate new translation based on difference between mouse position and origin
			var new_x_transform = new_x - parseFloat(theGroup.getAttributeNS(null, 'x'));
			var new_y_transform = new_y - parseFloat(theGroup.getAttributeNS(null, 'y'));
			// Plug new translation values into old transform attribute
			var old_transform = theGroup.getAttributeNS(null, 'transform');
			var regex = /([0-9e.-]+),([0-9e.-]+)/;
			var new_transform = old_transform.replace(regex,new_x_transform+','+new_y_transform);
			theGroup.setAttributeNS(null, 'transform',new_transform);
		}
	}
	var original_stroke_color = new Object;
	var original_stroke_width = new Object;
	function highlight(name_of_thing,onoff) {
		var highlight_color = '#0000FF';
		var highlight_width = '1';
		var theThing = SVGDoc.getElementById(name_of_thing);
		if (onoff) {
			original_stroke_color[name_of_thing] = theThing.getAttributeNS(null, 'stroke');
			original_stroke_width[name_of_thing] = theThing.getAttributeNS(null, 'stroke-width');
			theThing.setAttributeNS(null, 'stroke',highlight_color);
			theThing.setAttributeNS(null, 'stroke-width',highlight_width);
		} else {
			theThing.setAttributeNS(null, 'stroke',original_stroke_color[name_of_thing]);
			theThing.setAttributeNS(null, 'stroke-width',original_stroke_width[name_of_thing]);
		}
	}
	]]>
	</script>	<script type="text/ecmascript"><![CDATA[
	function toggle_track_opacity(id,track_op,label_op) {
		toggle_item_opacity(id+' track',track_op,1);
		toggle_item_opacity(id+' label',label_op,1);
	}
	function toggle_track_opacity_from_legend(id,legend_id,track_op,label_op) {
		toggle_item_opacity(id+' track',track_op,1);
		toggle_item_opacity(id+' label',label_op,1);
		toggle_item_opacity(legend_id,label_op,1);
	}
	function trackLabelMouseDown(evt,id) {
		tracking = 1;
		showSaver(1);
		findGroupClickOffset(evt,id+' label');
		var scale = SVGRoot.getCurrentScale();
		var pan = SVGRoot.getCurrentTranslate();
		global_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
		global_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
	}
	function trackLabelMouseUp(evt,id) {
		tracking = 0;
		var scale = SVGRoot.getCurrentScale();
		var pan = SVGRoot.getCurrentTranslate();
		var current_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
		var current_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
		if (current_mouse_x == global_mouse_x && current_mouse_y == global_mouse_y) {
			toggle_track_opacity(id,0,0.25);
		}
	}
	]]>
	</script>
	<g id="demis background" opacity="0.5" transform="translate(0,0)">
		<image height="700" id="background map 1" opacity="1" width="700" x="0" xlink:href="http://www2.demis.nl/wms/wms.asp?version=1.1.0&amp;wms=WorldMap&amp;request=GetMap&amp;srs=EPSG:4326&amp;bbox=-95.2086895,46.4483910,-95.1983865,46.4554960&amp;WIDTH=700&amp;HEIGHT=700&amp;format=PNG&amp;transparent=FALSE&amp;exceptions=INIMAGE&amp;wrapdateline=TRUE&amp;layers=Bathymetry,Countries,Topography,Builtup+areas,Coastlines,Waterbodies,Rivers,Streams,Highways,Roads,Railroads,Trails,Hillshading,Borders,Settlements,Cities,Airports" y="0" />
	</g>
	<g id="21-FEB-10 (t1) track" opacity="0.9">
		<line fill="none" id="t1 p1 dot" stroke="#00CC00" stroke-linecap="round" stroke-width="1.6" x1="613.5429" x2="613.5429" y1="206.6010" y2="206.6010" />
	</g>
	<g id="21-FEB-10 (t1) label" onmousedown="trackLabelMouseDown(evt,'21-FEB-10 (t1)')" onmousemove="moveGroup(evt,'21-FEB-10 (t1) label')" onmouseout="highlight('21-FEB-10 (t1) label',0)" onmouseover="highlight('21-FEB-10 (t1) label',1)" onmouseup="trackLabelMouseUp(evt,'21-FEB-10 (t1)')" opacity="1" transform="translate(0,0)" x="611.5429" y="206.601">		<text fill="#000000" font-family="Verdana" font-size="10" id="21-FEB-10 (t1) name" opacity="1" text-anchor="middle" x="611.5429" y="206.601">21-FEB-10
		</text>
	</g>
	<g id="21-Feb-CU-21-Feb 2 (t2) track" opacity="0.9">
		<line fill="none" id="t2 p1" stroke="#18CC00" stroke-width="2" x1="600.5662" x2="596.1500" y1="221.8719" y2="227.0936" />
		<line fill="none" id="t2 p2" stroke="#64CC00" stroke-width="2" x1="596.1500" x2="580.2519" y1="227.0936" y2="246.9951" />
		<line fill="none" id="t2 p3" stroke="#98CC00" stroke-width="2" x1="580.2519" x2="567.4790" y1="246.9951" y2="261.7734" />
		<line fill="none" id="t2 p4" stroke="#80CC00" stroke-width="2" x1="567.4790" x2="551.1052" y1="261.7734" y2="272.9064" />
		<line fill="none" id="t2 p5" stroke="#B4CC00" stroke-width="2" x1="551.1052" x2="535.7505" y1="272.9064" y2="291.1330" />
		<line fill="none" id="t2 p6" stroke="#B4CC00" stroke-width="2" x1="535.7505" x2="524.0647" y1="291.1330" y2="311.9212" />
		<line fill="none" id="t2 p7" stroke="#CCCC00" stroke-width="2" x1="524.0647" x2="525.4235" y1="311.9212" y2="327.6847" />
		<line fill="none" id="t2 p8" stroke="#CCCC00" stroke-width="2" x1="525.4235" x2="527.5976" y1="327.6847" y2="331.7241" />
		<line fill="none" id="t2 p9" stroke="#CC9800" stroke-width="2" x1="527.5976" x2="529.2962" y1="331.7241" y2="333.4975" />
		<line fill="none" id="t2 p10" stroke="#CC6400" stroke-width="2" x1="529.2962" x2="533.1008" y1="333.4975" y2="339.9015" />
		<line fill="none" id="t2 p11" stroke="#CC3400" stroke-width="2" x1="533.1008" x2="537.3132" y1="339.9015" y2="348.8670" />
		<line fill="none" id="t2 p12" stroke="#CC4C00" stroke-width="2" x1="537.3132" x2="535.0711" y1="348.8670" y2="363.3498" />
		<line fill="none" id="t2 p13" stroke="#CC9800" stroke-width="2" x1="535.0711" x2="533.9841" y1="363.3498" y2="378.6207" />
		<line fill="none" id="t2 p14" stroke="#CCB400" stroke-width="2" x1="533.9841" x2="534.7994" y1="378.6207" y2="392.8079" />
		<line fill="none" id="t2 p15" stroke="#CCCC00" stroke-width="2" x1="534.7994" x2="544.1752" y1="392.8079" y2="404.2365" />
		<line fill="none" id="t2 p16" stroke="#CCCC00" stroke-width="2" x1="544.1752" x2="557.9672" y1="404.2365" y2="409.9507" />
		<line fill="none" id="t2 p17" stroke="#CC9800" stroke-width="2" x1="557.9672" x2="572.8463" y1="409.9507" y2="416.2562" />
		<line fill="none" id="t2 p18" stroke="#CC8000" stroke-width="2" x1="572.8463" x2="586.0268" y1="416.2562" y2="424.3350" />
		<line fill="none" id="t2 p19" stroke="#CC6400" stroke-width="2" x1="586.0268" x2="593.9080" y1="424.3350" y2="437.2414" />
		<line fill="none" id="t2 p20" stroke="#CC4C00" stroke-width="2" x1="593.9080" x2="597.5768" y1="437.2414" y2="448.6700" />
		<line fill="none" id="t2 p21" stroke="#CC9800" stroke-width="2" x1="597.5768" x2="599.7509" y1="448.6700" y2="465.7143" />
		<line fill="none" id="t2 p22" stroke="#CC9800" stroke-width="2" x1="599.7509" x2="604.9824" y1="465.7143" y2="479.3103" />
		<line fill="none" id="t2 p23" stroke="#CC9800" stroke-width="2" x1="604.9824" x2="612.1841" y1="479.3103" y2="489.2611" />
		<line fill="none" id="t2 p24" stroke="#CC9800" stroke-width="2" x1="612.1841" x2="613.5429" y1="489.2611" y2="509.2611" />
		<line fill="none" id="t2 p25" stroke="#CC9800" stroke-width="2" x1="613.5429" x2="614.6300" y1="509.2611" y2="527.6847" />
		<line fill="none" id="t2 p26" stroke="#CC9800" stroke-width="2" x1="614.6300" x2="614.0865" y1="527.6847" y2="537.2414" />
		<line fill="none" id="t2 p27" stroke="#CC9800" stroke-width="2" x1="614.0865" x2="600.2944" y1="537.2414" y2="545.9113" />
		<line fill="none" id="t2 p28" stroke="#B4CC00" stroke-width="2" x1="600.2944" x2="587.9292" y1="545.9113" y2="553.3990" />
		<line fill="none" id="t2 p29" stroke="#CCB400" stroke-width="2" x1="587.9292" x2="576.5831" y1="553.3990" y2="561.2808" />
		<line fill="none" id="t2 p30" stroke="#CCB400" stroke-width="2" x1="576.5831" x2="564.2857" y1="561.2808" y2="569.6552" />
		<line fill="none" id="t2 p31" stroke="#CC9800" stroke-width="2" x1="564.2857" x2="552.5999" y1="569.6552" y2="580.4926" />
		<line fill="none" id="t2 p32" stroke="#CC9800" stroke-width="2" x1="552.5999" x2="541.7293" y1="580.4926" y2="590.9360" />
		<line fill="none" id="t2 p33" stroke="#CC9800" stroke-width="2" x1="541.7293" x2="529.9076" y1="590.9360" y2="601.1823" />
		<line fill="none" id="t2 p34" stroke="#CC8000" stroke-width="2" x1="529.9076" x2="517.2027" y1="601.1823" y2="610.7389" />
		<line fill="none" id="t2 p35" stroke="#CC6400" stroke-width="2" x1="517.2027" x2="505.7206" y1="610.7389" y2="619.1133" />
		<line fill="none" id="t2 p36" stroke="#CC4C00" stroke-width="2" x1="505.7206" x2="491.5210" y1="619.1133" y2="627.8818" />
		<line fill="none" id="t2 p37" stroke="#CC6400" stroke-width="2" x1="491.5210" x2="477.3893" y1="627.8818" y2="630.9360" />
		<line fill="none" id="t2 p38" stroke="#CC6400" stroke-width="2" x1="477.3893" x2="460.2002" y1="630.9360" y2="636.0591" />
		<line fill="none" id="t2 p39" stroke="#CC8000" stroke-width="2" x1="460.2002" x2="442.3997" y1="636.0591" y2="639.0148" />
		<line fill="none" id="t2 p40" stroke="#B4CC00" stroke-width="2" x1="442.3997" x2="428.9474" y1="639.0148" y2="633.1034" />
		<line fill="none" id="t2 p41" stroke="#64CC00" stroke-width="2" x1="428.9474" x2="422.4250" y1="633.1034" y2="623.1527" />
		<line fill="none" id="t2 p42" stroke="#00CC18" stroke-width="2" x1="422.4250" x2="406.4589" y1="623.1527" y2="623.2512" />
		<line fill="none" id="t2 p43" stroke="#00CC00" stroke-width="2" x1="406.4589" x2="393.6181" y1="623.2512" y2="626.7980" />
		<line fill="none" id="t2 p44" stroke="#00CC4C" stroke-width="2" x1="393.6181" x2="377.8558" y1="626.7980" y2="631.9212" />
		<line fill="none" id="t2 p45" stroke="#00CC00" stroke-width="2" x1="377.8558" x2="366.7135" y1="631.9212" y2="634.2857" />
		<line fill="none" id="t2 p46" stroke="#98CC00" stroke-width="2" x1="366.7135" x2="347.8259" y1="634.2857" y2="644.6305" />
		<line fill="none" id="t2 p47" stroke="#00CC34" stroke-width="2" x1="347.8259" x2="334.9171" y1="644.6305" y2="653.2020" />
		<line fill="none" id="t2 p48" stroke="#00CCB4" stroke-width="2" x1="334.9171" x2="322.8236" y1="653.2020" y2="660.0000" />
		<line fill="none" id="t2 p49" stroke="#0018CC" stroke-width="2" x1="322.8236" x2="305.5666" y1="660.0000" y2="657.7340" />
		<line fill="none" id="t2 p50" stroke="#3400CC" stroke-width="2" x1="305.5666" x2="287.5623" y1="657.7340" y2="654.1872" />
		<line fill="none" id="t2 p51" stroke="#8000CC" stroke-width="2" x1="287.5623" x2="269.6938" y1="654.1872" y2="654.5813" />
		<line fill="none" id="t2 p52" stroke="#CC00CC" stroke-width="2" x1="269.6938" x2="250.5345" y1="654.5813" y2="655.8621" />
		<line fill="none" id="t2 p53" stroke="#B400CC" stroke-width="2" x1="250.5345" x2="235.5195" y1="655.8621" y2="649.0640" />
		<line fill="none" id="t2 p54" stroke="#4C00CC" stroke-width="2" x1="235.5195" x2="220.8443" y1="649.0640" y2="641.8719" />
		<line fill="none" id="t2 p55" stroke="#4C00CC" stroke-width="2" x1="220.8443" x2="205.3537" y1="641.8719" y2="634.0887" />
		<line fill="none" id="t2 p56" stroke="#0000CC" stroke-width="2" x1="205.3537" x2="192.9885" y1="634.0887" y2="627.9803" />
		<line fill="none" id="t2 p57" stroke="#0018CC" stroke-width="2" x1="192.9885" x2="176.9544" y1="627.9803" y2="633.6946" />
		<line fill="none" id="t2 p58" stroke="#004CCC" stroke-width="2" x1="176.9544" x2="162.0753" y1="633.6946" y2="642.4631" />
		<line fill="none" id="t2 p59" stroke="#004CCC" stroke-width="2" x1="162.0753" x2="145.0222" y1="642.4631" y2="654.5813" />
		<line fill="none" id="t2 p60" stroke="#0098CC" stroke-width="2" x1="145.0222" x2="131.5699" y1="654.5813" y2="659.0148" />
		<line fill="none" id="t2 p61" stroke="#0000CC" stroke-width="2" x1="131.5699" x2="115.3999" y1="659.0148" y2="653.8916" />
		<line fill="none" id="t2 p62" stroke="#0018CC" stroke-width="2" x1="115.3999" x2="101.2003" y1="653.8916" y2="644.5320" />
		<line fill="none" id="t2 p63" stroke="#0018CC" stroke-width="2" x1="101.2003" x2="93.3870" y1="644.5320" y2="634.7783" />
		<line fill="none" id="t2 p64" stroke="#0068CC" stroke-width="2" x1="93.3870" x2="88.2235" y1="634.7783" y2="623.3498" />
		<line fill="none" id="t2 p65" stroke="#00B4CC" stroke-width="2" x1="88.2235" x2="93.0473" y1="623.3498" y2="606.5025" />
		<line fill="none" id="t2 p66" stroke="#00CCB4" stroke-width="2" x1="93.0473" x2="101.9476" y1="606.5025" y2="593.3005" />
		<line fill="none" id="t2 p67" stroke="#00CCB4" stroke-width="2" x1="101.9476" x2="114.0411" y1="593.3005" y2="580.9852" />
		<line fill="none" id="t2 p68" stroke="#00CC98" stroke-width="2" x1="114.0411" x2="123.6208" y1="580.9852" y2="568.5714" />
		<line fill="none" id="t2 p69" stroke="#00CC64" stroke-width="2" x1="123.6208" x2="125.4552" y1="568.5714" y2="557.1429" />
		<line fill="none" id="t2 p70" stroke="#00CC80" stroke-width="2" x1="125.4552" x2="118.3893" y1="557.1429" y2="537.5369" />
		<line fill="none" id="t2 p71" stroke="#00CC4C" stroke-width="2" x1="118.3893" x2="112.9540" y1="537.5369" y2="522.3645" />
		<line fill="none" id="t2 p72" stroke="#00CC4C" stroke-width="2" x1="112.9540" x2="108.0623" y1="522.3645" y2="508.2759" />
		<line fill="none" id="t2 p73" stroke="#00CC4C" stroke-width="2" x1="108.0623" x2="102.3553" y1="508.2759" y2="490.2463" />
		<line fill="none" id="t2 p74" stroke="#00CC00" stroke-width="2" x1="102.3553" x2="96.3085" y1="490.2463" y2="479.9015" />
		<line fill="none" id="t2 p75" stroke="#00CC34" stroke-width="2" x1="96.3085" x2="89.6503" y1="479.9015" y2="465.6158" />
		<line fill="none" id="t2 p76" stroke="#00CC18" stroke-width="2" x1="89.6503" x2="85.3700" y1="465.6158" y2="451.6256" />
		<line fill="none" id="t2 p77" stroke="#00CC18" stroke-width="2" x1="85.3700" x2="86.4571" y1="451.6256" y2="436.9458" />
		<line fill="none" id="t2 p78" stroke="#00CC64" stroke-width="2" x1="86.4571" x2="100.7926" y1="436.9458" y2="426.8966" />
		<line fill="none" id="t2 p79" stroke="#00B4CC" stroke-width="2" x1="100.7926" x2="113.4976" y1="426.8966" y2="417.8325" />
		<line fill="none" id="t2 p80" stroke="#0068CC" stroke-width="2" x1="113.4976" x2="129.2599" y1="417.8325" y2="407.4877" />
		<line fill="none" id="t2 p81" stroke="#0068CC" stroke-width="2" x1="129.2599" x2="143.1198" y1="407.4877" y2="399.7044" />
		<line fill="none" id="t2 p82" stroke="#0098CC" stroke-width="2" x1="143.1198" x2="156.0286" y1="399.7044" y2="387.6847" />
		<line fill="none" id="t2 p83" stroke="#00B4CC" stroke-width="2" x1="156.0286" x2="167.1030" y1="387.6847" y2="376.0591" />
		<line fill="none" id="t2 p84" stroke="#00CCB4" stroke-width="2" x1="167.1030" x2="178.8568" y1="376.0591" y2="366.6010" />
		<line fill="none" id="t2 p85" stroke="#00CCCC" stroke-width="2" x1="178.8568" x2="196.0458" y1="366.6010" y2="348.9655" />
		<line fill="none" id="t2 p86" stroke="#0098CC" stroke-width="2" x1="196.0458" x2="200.1223" y1="348.9655" y2="340.4926" />
		<line fill="none" id="t2 p87" stroke="#00B4CC" stroke-width="2" x1="200.1223" x2="202.7040" y1="340.4926" y2="326.3054" />
		<line fill="none" id="t2 p88" stroke="#00CC80" stroke-width="2" x1="202.7040" x2="200.3261" y1="326.3054" y2="310.3448" />
		<line fill="none" id="t2 p89" stroke="#00CC34" stroke-width="2" x1="200.3261" x2="196.3176" y1="310.3448" y2="295.8621" />
		<line fill="none" id="t2 p90" stroke="#34CC00" stroke-width="2" x1="196.3176" x2="193.7358" y1="295.8621" y2="281.9704" />
		<line fill="none" id="t2 p91" stroke="#64CC00" stroke-width="2" x1="193.7358" x2="188.3685" y1="281.9704" y2="266.6010" />
		<line fill="none" id="t2 p92" stroke="#98CC00" stroke-width="2" x1="188.3685" x2="179.2644" y1="266.6010" y2="254.4828" />
		<line fill="none" id="t2 p93" stroke="#80CC00" stroke-width="2" x1="179.2644" x2="172.6062" y1="254.4828" y2="241.6749" />
		<line fill="none" id="t2 p94" stroke="#B4CC00" stroke-width="2" x1="172.6062" x2="166.7633" y1="241.6749" y2="223.3498" />
		<line fill="none" id="t2 p95" stroke="#64CC00" stroke-width="2" x1="166.7633" x2="176.4109" y1="223.3498" y2="211.8227" />
		<line fill="none" id="t2 p96" stroke="#4CCC00" stroke-width="2" x1="176.4109" x2="182.8653" y1="211.8227" y2="195.2709" />
		<line fill="none" id="t2 p97" stroke="#00CC64" stroke-width="2" x1="182.8653" x2="188.4364" y1="195.2709" y2="181.9704" />
		<line fill="none" id="t2 p98" stroke="#00CC4C" stroke-width="2" x1="188.4364" x2="196.2496" y1="181.9704" y2="169.1626" />
		<line fill="none" id="t2 p99" stroke="#00CC18" stroke-width="2" x1="196.2496" x2="202.9758" y1="169.1626" y2="155.3695" />
		<line fill="none" id="t2 p100" stroke="#00CC00" stroke-width="2" x1="202.9758" x2="208.1393" y1="155.3695" y2="142.1675" />
		<line fill="none" id="t2 p101" stroke="#00CC00" stroke-width="2" x1="208.1393" x2="211.7402" y1="142.1675" y2="127.3892" />
		<line fill="none" id="t2 p102" stroke="#00CC18" stroke-width="2" x1="211.7402" x2="216.4281" y1="127.3892" y2="112.1182" />
		<line fill="none" id="t2 p103" stroke="#00CC64" stroke-width="2" x1="216.4281" x2="222.4748" y1="112.1182" y2="96.6502" />
		<line fill="none" id="t2 p104" stroke="#00CC4C" stroke-width="2" x1="222.4748" x2="226.5513" y1="96.6502" y2="80.2956" />
		<line fill="none" id="t2 p105" stroke="#00CC64" stroke-width="2" x1="226.5513" x2="229.4048" y1="80.2956" y2="68.3744" />
		<line fill="none" id="t2 p106" stroke="#00CC18" stroke-width="2" x1="229.4048" x2="248.6321" y1="68.3744" y2="69.7537" />
		<line fill="none" id="t2 p107" stroke="#00CC18" stroke-width="2" x1="248.6321" x2="263.9868" y1="69.7537" y2="68.4729" />
		<line fill="none" id="t2 p108" stroke="#18CC00" stroke-width="2" x1="263.9868" x2="279.4773" y1="68.4729" y2="62.7586" />
		<line fill="none" id="t2 p109" stroke="#80CC00" stroke-width="2" x1="279.4773" x2="295.9869" y1="62.7586" y2="58.5222" />
		<line fill="none" id="t2 p110" stroke="#CCCC00" stroke-width="2" x1="295.9869" x2="310.4584" y1="58.5222" y2="56.8473" />
		<line fill="none" id="t2 p111" stroke="#CC8000" stroke-width="2" x1="310.4584" x2="328.2589" y1="56.8473" y2="55.6650" />
		<line fill="none" id="t2 p112" stroke="#CC1800" stroke-width="2" x1="328.2589" x2="340.8280" y1="55.6650" y2="62.2660" />
		<line fill="none" id="t2 p113" stroke="#CC0000" stroke-width="2" x1="340.8280" x2="350.6115" y1="62.2660" y2="74.7783" />
		<line fill="none" id="t2 p114" stroke="#CC3400" stroke-width="2" x1="350.6115" x2="360.1232" y1="74.7783" y2="89.5567" />
		<line fill="none" id="t2 p115" stroke="#CC4C00" stroke-width="2" x1="360.1232" x2="368.6838" y1="89.5567" y2="104.7291" />
		<line fill="none" id="t2 p116" stroke="#CC1800" stroke-width="2" x1="368.6838" x2="375.0023" y1="104.7291" y2="117.2414" />
		<line fill="none" id="t2 p117" stroke="#CC3400" stroke-width="2" x1="375.0023" x2="378.1276" y1="117.2414" y2="131.3300" />
		<line fill="none" id="t2 p118" stroke="#CC3400" stroke-width="2" x1="378.1276" x2="375.2740" y1="131.3300" y2="146.3054" />
		<line fill="none" id="t2 p119" stroke="#CC4C00" stroke-width="2" x1="375.2740" x2="372.2846" y1="146.3054" y2="158.4236" />
		<line fill="none" id="t2 p120" stroke="#CC9800" stroke-width="2" x1="372.2846" x2="366.6455" y1="158.4236" y2="174.0887" />
		<line fill="none" id="t2 p121" stroke="#CC9800" stroke-width="2" x1="366.6455" x2="361.6858" y1="174.0887" y2="188.6700" />
		<line fill="none" id="t2 p122" stroke="#CC9800" stroke-width="2" x1="361.6858" x2="355.0276" y1="188.6700" y2="211.3300" />
		<line fill="none" id="t2 p123" stroke="#CCB400" stroke-width="2" x1="355.0276" x2="342.5265" y1="211.3300" y2="209.1626" />
		<line fill="none" id="t2 p124" stroke="#CCCC00" stroke-width="2" x1="342.5265" x2="328.6665" y1="209.1626" y2="208.3744" />
		<line fill="none" id="t2 p125" stroke="#98CC00" stroke-width="2" x1="328.6665" x2="314.6028" y1="208.3744" y2="208.6700" />
		<line fill="none" id="t2 p126" stroke="#80CC00" stroke-width="2" x1="314.6028" x2="300.1993" y1="208.6700" y2="211.8227" />
		<line fill="none" id="t2 p127" stroke="#00CC00" stroke-width="2" x1="300.1993" x2="285.8637" y1="211.8227" y2="214.2857" />
		<line fill="none" id="t2 p128" stroke="#00CC34" stroke-width="2" x1="285.8637" x2="283.8935" y1="214.2857" y2="227.4877" />
		<line fill="none" id="t2 p129" stroke="#00CC34" stroke-width="2" x1="283.8935" x2="284.9805" y1="227.4877" y2="241.8719" />
		<line fill="none" id="t2 p130" stroke="#00CC34" stroke-width="2" x1="284.9805" x2="287.9020" y1="241.8719" y2="256.1576" />
		<line fill="none" id="t2 p131" stroke="#00CC34" stroke-width="2" x1="287.9020" x2="300.2672" y1="256.1576" y2="267.3892" />
		<line fill="none" id="t2 p132" stroke="#18CC00" stroke-width="2" x1="300.2672" x2="308.3522" y1="267.3892" y2="279.3103" />
		<line fill="none" id="t2 p133" stroke="#80CC00" stroke-width="2" x1="308.3522" x2="304.2078" y1="279.3103" y2="291.6256" />
		<line fill="none" id="t2 p134" stroke="#80CC00" stroke-width="2" x1="304.2078" x2="290.0081" y1="291.6256" y2="290.0493" />
		<line fill="none" id="t2 p135" stroke="#34CC00" stroke-width="2" x1="290.0081" x2="277.5070" y1="290.0493" y2="284.8276" />
		<line fill="none" id="t2 p136" stroke="#00CC18" stroke-width="2" x1="277.5070" x2="264.3265" y1="284.8276" y2="280.4926" />
		<line fill="none" id="t2 p137" stroke="#00CC00" stroke-width="2" x1="264.3265" x2="249.1756" y1="280.4926" y2="280.7882" />
		<line fill="none" id="t2 p138" stroke="#00CC00" stroke-width="2" x1="249.1756" x2="233.0057" y1="280.7882" y2="279.6059" />
		<line fill="none" id="t2 p139" stroke="#34CC00" stroke-width="2" x1="233.0057" x2="220.5725" y1="279.6059" y2="286.2069" />
		<line fill="none" id="t2 p140" stroke="#18CC00" stroke-width="2" x1="220.5725" x2="209.5661" y1="286.2069" y2="295.2709" />
		<line fill="none" id="t2 p141" stroke="#00CC00" stroke-width="2" x1="209.5661" x2="199.6467" y1="295.2709" y2="305.4187" />
		<line fill="none" id="t2 p142" stroke="#00CC80" stroke-width="2" x1="199.6467" x2="194.7549" y1="305.4187" y2="284.5320" />
		<line fill="none" id="t2 p143" stroke="#00CC34" stroke-width="2" x1="194.7549" x2="189.5235" y1="284.5320" y2="266.8966" />
		<line fill="none" id="t2 p144" stroke="#4CCC00" stroke-width="2" x1="189.5235" x2="180.5553" y1="266.8966" y2="255.0739" />
		<line fill="none" id="t2 p145" stroke="#4CCC00" stroke-width="2" x1="180.5553" x2="173.8291" y1="255.0739" y2="241.5764" />
		<line fill="none" id="t2 p146" stroke="#80CC00" stroke-width="2" x1="173.8291" x2="168.3259" y1="241.5764" y2="228.6700" />
		<line fill="none" id="t2 p147" stroke="#64CC00" stroke-width="2" x1="168.3259" x2="162.6189" y1="228.6700" y2="214.0887" />
		<line fill="none" id="t2 p148" stroke="#4CCC00" stroke-width="2" x1="162.6189" x2="156.4362" y1="214.0887" y2="198.3251" />
		<line fill="none" id="t2 p149" stroke="#80CC00" stroke-width="2" x1="156.4362" x2="150.4574" y1="198.3251" y2="183.4483" />
		<line fill="none" id="t2 p150" stroke="#80CC00" stroke-width="2" x1="150.4574" x2="144.2069" y1="183.4483" y2="170.5419" />
		<line fill="none" id="t2 p151" stroke="#98CC00" stroke-width="2" x1="144.2069" x2="137.2090" y1="170.5419" y2="157.4384" />
		<line fill="none" id="t2 p152" stroke="#B4CC00" stroke-width="2" x1="137.2090" x2="130.4828" y1="157.4384" y2="144.2365" />
		<line fill="none" id="t2 p153" stroke="#98CC00" stroke-width="2" x1="130.4828" x2="123.8925" y1="144.2365" y2="130.9360" />
		<line fill="none" id="t2 p154" stroke="#4CCC00" stroke-width="2" x1="123.8925" x2="117.3702" y1="130.9360" y2="117.1429" />
		<line fill="none" id="t2 p155" stroke="#34CC00" stroke-width="2" x1="117.3702" x2="110.5761" y1="117.1429" y2="104.5320" />
		<line fill="none" id="t2 p156" stroke="#18CC00" stroke-width="2" x1="110.5761" x2="102.7629" y1="104.5320" y2="91.9212" />
		<line fill="none" id="t2 p157" stroke="#18CC00" stroke-width="2" x1="102.7629" x2="94.4062" y1="91.9212" y2="78.6207" />
		<line fill="none" id="t2 p158" stroke="#18CC00" stroke-width="2" x1="94.4062" x2="89.7182" y1="78.6207" y2="64.6305" />
		<line fill="none" id="t2 p159" stroke="#18CC00" stroke-width="2" x1="89.7182" x2="88.2235" y1="64.6305" y2="51.9212" />
		<line fill="none" id="t2 p160" stroke="#18CC00" stroke-width="2" x1="88.2235" x2="95.6970" y1="51.9212" y2="43.6453" />
		<line fill="none" id="t2 p161" stroke="#18CC00" stroke-width="2" x1="95.6970" x2="105.5485" y1="43.6453" y2="40.0000" />
		<line fill="none" id="t2 p162" stroke="#18CC00" stroke-width="2" x1="105.5485" x2="128.5125" y1="40.0000" y2="48.1773" />
		<line fill="none" id="t2 p163" stroke="#00CC00" stroke-width="2" x1="128.5125" x2="143.0519" y1="48.1773" y2="52.1182" />
		<line fill="none" id="t2 p164" stroke="#18CC00" stroke-width="2" x1="143.0519" x2="158.5424" y1="52.1182" y2="55.0739" />
		<line fill="none" id="t2 p165" stroke="#4CCC00" stroke-width="2" x1="158.5424" x2="174.4406" y1="55.0739" y2="58.0296" />
		<line fill="none" id="t2 p166" stroke="#64CC00" stroke-width="2" x1="174.4406" x2="190.4067" y1="58.0296" y2="61.4778" />
		<line fill="none" id="t2 p167" stroke="#80CC00" stroke-width="2" x1="190.4067" x2="205.0140" y1="61.4778" y2="64.4335" />
		<line fill="none" id="t2 p168" stroke="#98CC00" stroke-width="2" x1="205.0140" x2="219.0778" y1="64.4335" y2="67.2906" />
		<line fill="none" id="t2 p169" stroke="#B4CC00" stroke-width="2" x1="219.0778" x2="233.6851" y1="67.2906" y2="68.8670" />
		<line fill="none" id="t2 p170" stroke="#B4CC00" stroke-width="2" x1="233.6851" x2="250.1948" y1="68.8670" y2="69.5567" />
		<line fill="none" id="t2 p171" stroke="#4CCC00" stroke-width="2" x1="250.1948" x2="266.8403" y1="69.5567" y2="66.4039" />
		<line fill="none" id="t2 p172" stroke="#98CC00" stroke-width="2" x1="266.8403" x2="284.1652" y1="66.4039" y2="60.0985" />
		<line fill="none" id="t2 p173" stroke="#CCCC00" stroke-width="2" x1="284.1652" x2="299.5878" y1="60.0985" y2="57.1429" />
		<line fill="none" id="t2 p174" stroke="#CC8000" stroke-width="2" x1="299.5878" x2="314.3989" y1="57.1429" y2="56.4532" />
		<line fill="none" id="t2 p175" stroke="#CC4C00" stroke-width="2" x1="314.3989" x2="328.8024" y1="56.4532" y2="57.1429" />
		<line fill="none" id="t2 p176" stroke="#CC8000" stroke-width="2" x1="328.8024" x2="339.1294" y1="57.1429" y2="60.5911" />
		<line fill="none" id="t2 p177" stroke="#CC8000" stroke-width="2" x1="339.1294" x2="351.4947" y1="60.5911" y2="78.5222" />
		<line fill="none" id="t2 p178" stroke="#CC6400" stroke-width="2" x1="351.4947" x2="360.9385" y1="78.5222" y2="92.3153" />
		<line fill="none" id="t2 p179" stroke="#CC8000" stroke-width="2" x1="360.9385" x2="368.8876" y1="92.3153" y2="105.4187" />
		<line fill="none" id="t2 p180" stroke="#CC8000" stroke-width="2" x1="368.8876" x2="375.8176" y1="105.4187" y2="118.5222" />
		<line fill="none" id="t2 p181" stroke="#CC8000" stroke-width="2" x1="375.8176" x2="377.9917" y1="118.5222" y2="133.3005" />
		<line fill="none" id="t2 p182" stroke="#CC9800" stroke-width="2" x1="377.9917" x2="374.4587" y1="133.3005" y2="150.6404" />
		<line fill="none" id="t2 p183" stroke="#CC9800" stroke-width="2" x1="374.4587" x2="370.7220" y1="150.6404" y2="163.9409" />
		<line fill="none" id="t2 p184" stroke="#CC9800" stroke-width="2" x1="370.7220" x2="365.2188" y1="163.9409" y2="179.8030" />
		<line fill="none" id="t2 p185" stroke="#CC9800" stroke-width="2" x1="365.2188" x2="360.8706" y1="179.8030" y2="191.0345" />
		<line fill="none" id="t2 p186" stroke="#CCB400" stroke-width="2" x1="360.8706" x2="355.3673" y1="191.0345" y2="209.0640" />
		<line fill="none" id="t2 p187" stroke="#CCB400" stroke-width="2" x1="355.3673" x2="352.9215" y1="209.0640" y2="223.0542" />
		<line fill="none" id="t2 p188" stroke="#CCB400" stroke-width="2" x1="352.9215" x2="353.6688" y1="223.0542" y2="239.0148" />
		<line fill="none" id="t2 p189" stroke="#CC9800" stroke-width="2" x1="353.6688" x2="355.9109" y1="239.0148" y2="254.6798" />
		<line fill="none" id="t2 p190" stroke="#CCB400" stroke-width="2" x1="355.9109" x2="355.7750" y1="254.6798" y2="269.4581" />
		<line fill="none" id="t2 p191" stroke="#CCB400" stroke-width="2" x1="355.7750" x2="359.1041" y1="269.4581" y2="283.1527" />
		<line fill="none" id="t2 p192" stroke="#CCCC00" stroke-width="2" x1="359.1041" x2="366.9173" y1="283.1527" y2="293.8916" />
		<line fill="none" id="t2 p193" stroke="#34CC00" stroke-width="2" x1="366.9173" x2="378.6711" y1="293.8916" y2="304.5320" />
		<line fill="none" id="t2 p194" stroke="#00CC18" stroke-width="2" x1="378.6711" x2="388.8622" y1="304.5320" y2="316.2562" />
		<line fill="none" id="t2 p195" stroke="#00CC34" stroke-width="2" x1="388.8622" x2="400.4801" y1="316.2562" y2="327.8818" />
		<line fill="none" id="t2 p196" stroke="#00CC18" stroke-width="2" x1="400.4801" x2="407.3422" y1="327.8818" y2="342.1675" />
		<line fill="none" id="t2 p197" stroke="#00CC34" stroke-width="2" x1="407.3422" x2="413.3889" y1="342.1675" y2="356.7488" />
		<line fill="none" id="t2 p198" stroke="#00CC4C" stroke-width="2" x1="413.3889" x2="418.8242" y1="356.7488" y2="370.9360" />
		<line fill="none" id="t2 p199" stroke="#00CC64" stroke-width="2" x1="418.8242" x2="432.2085" y1="370.9360" y2="379.4089" />
		<line fill="none" id="t2 p200" stroke="#00CC64" stroke-width="2" x1="432.2085" x2="446.4761" y1="379.4089" y2="387.4877" />
		<line fill="none" id="t2 p201" stroke="#00CC4C" stroke-width="2" x1="446.4761" x2="460.8117" y1="387.4877" y2="395.8621" />
		<line fill="none" id="t2 p202" stroke="#00CCCC" stroke-width="2" x1="460.8117" x2="479.2237" y1="395.8621" y2="408.2759" />
		<line fill="none" id="t2 p203" stroke="#0098CC" stroke-width="2" x1="479.2237" x2="495.0539" y1="408.2759" y2="406.6995" />
		<line fill="none" id="t2 p204" stroke="#00CC64" stroke-width="2" x1="495.0539" x2="510.4765" y1="406.6995" y2="396.6502" />
		<line fill="none" id="t2 p205" stroke="#00CC34" stroke-width="2" x1="510.4765" x2="527.3938" y1="396.6502" y2="392.0197" />
		<line fill="none" id="t2 p206" stroke="#18CC00" stroke-width="2" x1="527.3938" x2="533.9161" y1="392.0197" y2="381.6749" />
		<line fill="none" id="t2 p207" stroke="#4CCC00" stroke-width="2" x1="533.9161" x2="536.5658" y1="381.6749" y2="353.2020" />
		<line fill="none" id="t2 p208" stroke="#B4CC00" stroke-width="2" x1="536.5658" x2="532.8291" y1="353.2020" y2="341.0837" />
		<line fill="none" id="t2 p209" stroke="#64CC00" stroke-width="2" x1="532.8291" x2="524.9479" y1="341.0837" y2="325.9113" />
		<line fill="none" id="t2 p210" stroke="#98CC00" stroke-width="2" x1="524.9479" x2="523.7929" y1="325.9113" y2="313.5961" />
		<line fill="none" id="t2 p211" stroke="#B4CC00" stroke-width="2" x1="523.7929" x2="529.1603" y1="313.5961" y2="300.1970" />
		<line fill="none" id="t2 p212" stroke="#CCB400" stroke-width="2" x1="529.1603" x2="537.5849" y1="300.1970" y2="287.7833" />
		<line fill="none" id="t2 p213" stroke="#CCCC00" stroke-width="2" x1="537.5849" x2="548.0479" y1="287.7833" y2="276.3547" />
		<line fill="none" id="t2 p214" stroke="#CC9800" stroke-width="2" x1="548.0479" x2="561.0925" y1="276.3547" y2="266.2069" />
		<line fill="none" id="t2 p215" stroke="#CCCC00" stroke-width="2" x1="561.0925" x2="572.0310" y1="266.2069" y2="256.7488" />
		<line fill="none" id="t2 p216" stroke="#CC8000" stroke-width="2" x1="572.0310" x2="582.5619" y1="256.7488" y2="244.2365" />
		<line fill="none" id="t2 p217" stroke="#CC8000" stroke-width="2" x1="582.5619" x2="591.4621" y1="244.2365" y2="232.3153" />
		<line fill="none" id="t2 p218" stroke="#80CC00" stroke-width="2" x1="591.4621" x2="599.9547" y1="232.3153" y2="221.1823" />
	</g>
	<g id="21-Feb-CU-21-Feb 2 (t2) label" onmousedown="trackLabelMouseDown(evt,'21-Feb-CU-21-Feb 2 (t2)')" onmousemove="moveGroup(evt,'21-Feb-CU-21-Feb 2 (t2) label')" onmouseout="highlight('21-Feb-CU-21-Feb 2 (t2) label',0)" onmouseover="highlight('21-Feb-CU-21-Feb 2 (t2) label',1)" onmouseup="trackLabelMouseUp(evt,'21-Feb-CU-21-Feb 2 (t2)')" opacity="1" transform="translate(0,0)" x="598.5662" y="221.8719">		<text fill="#000000" font-family="Verdana" font-size="10" id="21-Feb-CU-21-Feb 2 (t2) name" opacity="1" text-anchor="middle" x="598.5662" y="221.8719">21-Feb-CU-21-Feb 2
		</text>
	</g>
	<g id="21-Feb-CU-21-Feb 3 (t3) track" opacity="0.9">
		<line fill="none" id="t3 p1 dot" stroke="#18CC00" stroke-linecap="round" stroke-width="1.6" x1="610.0100" x2="610.0100" y1="210.0493" y2="210.0493" />
	</g>
	<g id="21-Feb-CU-21-Feb 3 (t3) label" onmousedown="trackLabelMouseDown(evt,'21-Feb-CU-21-Feb 3 (t3)')" onmousemove="moveGroup(evt,'21-Feb-CU-21-Feb 3 (t3) label')" onmouseout="highlight('21-Feb-CU-21-Feb 3 (t3) label',0)" onmouseover="highlight('21-Feb-CU-21-Feb 3 (t3) label',1)" onmouseup="trackLabelMouseUp(evt,'21-Feb-CU-21-Feb 3 (t3)')" opacity="1" transform="translate(0,0)" x="608.01" y="210.0493">		<text fill="#000000" font-family="Verdana" font-size="10" id="21-Feb-CU-21-Feb 3 (t3) name" opacity="1" text-anchor="middle" x="608.01" y="210.0493">21-Feb-CU-21-Feb 3
		</text>
	</g>
	<g id="21-Feb-CU-21-Feb 4 (t4) track" opacity="0.9">
		<line fill="none" id="t4 p1 dot" stroke="#00CC4C" stroke-linecap="round" stroke-width="1.6" x1="613.8147" x2="613.8147" y1="208.1773" y2="208.1773" />
	</g>
	<g id="21-Feb-CU-21-Feb 4 (t4) label" onmousedown="trackLabelMouseDown(evt,'21-Feb-CU-21-Feb 4 (t4)')" onmousemove="moveGroup(evt,'21-Feb-CU-21-Feb 4 (t4) label')" onmouseout="highlight('21-Feb-CU-21-Feb 4 (t4) label',0)" onmouseover="highlight('21-Feb-CU-21-Feb 4 (t4) label',1)" onmouseup="trackLabelMouseUp(evt,'21-Feb-CU-21-Feb 4 (t4)')" opacity="1" transform="translate(0,0)" x="611.8147" y="208.1773">		<text fill="#000000" font-family="Verdana" font-size="10" id="21-Feb-CU-21-Feb 4 (t4) name" opacity="1" text-anchor="middle" x="611.8147" y="208.1773">21-Feb-CU-21-Feb 4
		</text>
	</g>
	<g id="21-Feb-CU-21-Feb 5 (t5) track" opacity="0.9">
		<line fill="none" id="t5 p1 dot" stroke="#00CC18" stroke-linecap="round" stroke-width="1.6" x1="613.0673" x2="613.0673" y1="206.7980" y2="206.7980" />
	</g>
	<g id="21-Feb-CU-21-Feb 5 (t5) label" onmousedown="trackLabelMouseDown(evt,'21-Feb-CU-21-Feb 5 (t5)')" onmousemove="moveGroup(evt,'21-Feb-CU-21-Feb 5 (t5) label')" onmouseout="highlight('21-Feb-CU-21-Feb 5 (t5) label',0)" onmouseover="highlight('21-Feb-CU-21-Feb 5 (t5) label',1)" onmouseup="trackLabelMouseUp(evt,'21-Feb-CU-21-Feb 5 (t5)')" opacity="1" transform="translate(0,0)" x="611.0673" y="206.798">		<text fill="#000000" font-family="Verdana" font-size="10" id="21-Feb-CU-21-Feb 5 (t5) name" opacity="1" text-anchor="middle" x="611.0673" y="206.798">21-Feb-CU-21-Feb 5
		</text>
	</g>
	<g id="Waypoints" />
	<g id="Legend" onmousedown="trackGroup(evt,'Legend',1)" onmousemove="moveGroup(evt,'Legend')" onmouseup="trackGroup(evt,'Legend',0)" transform="translate(0,0)" x="6" y="686">		<text fill="#CC0000" font-family="Verdana" font-size="10" id="legend label 1" text-anchor="start" x="6" y="686">413.5
		</text>		<text fill="#98CC00" font-family="Verdana" font-size="10" id="legend label 2" text-anchor="start" x="6" y="676">418.3
		</text>		<text fill="#00CC68" font-family="Verdana" font-size="10" id="legend label 3" text-anchor="start" x="6" y="666">423.1
		</text>		<text fill="#0034CC" font-family="Verdana" font-size="10" id="legend label 4" text-anchor="start" x="6" y="656">427.9
		</text>		<text fill="#CC00CC" font-family="Verdana" font-size="10" id="legend label 5" text-anchor="start" x="6" y="646">432.7
		</text>		<text fill="#000000" font-family="Verdana" font-size="10" id="legend header" onmouseout="highlight('Legend',0)" onmouseover="highlight('Legend',1)" text-anchor="start" x="6" y="634">Elevation (m)
		</text>
	</g>
	<g id="Scale" onmousedown="trackGroup(evt,'Scale',1)" onmousemove="moveGroup(evt,'Scale')" onmouseout="highlight('Scale',0)" onmouseover="highlight('Scale',1)" onmouseup="trackGroup(evt,'Scale',0)" transform="translate(0,0)" x="350" y="350">
		<line fill="none" id="scale_line" stroke="#000000" stroke-width="1" x1="127.99572857625" x2="572.00427142375" y1="682" y2="682" />
		<line fill="none" id="scale_end1" stroke="#000000" stroke-width="1" x1="127.99572857625" x2="127.99572857625" y1="680" y2="684" />
		<line fill="none" id="scale_end2" stroke="#000000" stroke-width="1" x1="572.00427142375" x2="572.00427142375" y1="680" y2="684" />		<text fill="#000000" font-family="Verdana" font-size="10" id="scale_text" text-anchor="middle" x="350" y="680">500 m
		</text>
	</g>
	<g id="Logo" onmousedown="trackGroup(evt,'Logo',1)" onmousemove="moveGroup(evt,'Logo')" onmouseout="highlight('Logo',0)" onmouseover="highlight('Logo',1)" onmouseup="trackGroup(evt,'Logo',0)" transform="translate(0,0)" x="350" y="697">
		<rect fill="#FFFFFF" height="11" id="logo box" opacity="0.6" width="160" x="270" y="688" />
		<a target="_blank" xlink:href="http://www.gpsvisualizer.com/">			<text fill="#000000" font-family="Verdana" font-size="9" id="logo_text" text-anchor="middle" transform="translate(350,697) rotate(0) translate(-350,-697)" x="350" y="697">created by GPSVisualizer.com
			</text>
		</a>
	</g>
	<rect fill="none" height="699" id="image_boundary" opacity="0" stroke="#000000" stroke-width="1" width="699" x="0.5" y="0.5" />
	<a id="modified_source_link" target="_blank" xlink:href="http://www.gpsvisualizer.com/display/1289917649-14152-208.123.41.2-modified.svg" />
	<a id="localized_jpeg_link" target="_blank" xlink:href="http://www.gpsvisualizer.com/localize?localize_mode=rasterize_jpg&amp;local_input=/1289917649-14152-208.123.41.2-modified.svg" />
	<a id="localized_png_link" target="_blank" xlink:href="http://www.gpsvisualizer.com/localize?localize_mode=rasterize_png&amp;local_input=/1289917649-14152-208.123.41.2-modified.svg" />
	<a id="localized_svg_link" target="_blank" xlink:href="http://www.gpsvisualizer.com/localize?localize_mode=embed&amp;local_input=/1289917649-14152-208.123.41.2-modified.svg" />	<script type="text/ecmascript"><![CDATA[
	function saveModifiedSource() {
		var okay_to_continue;
		if (document.URL.substr(0,4) == 'http') {
			okay_to_continue = confirm('After you click "OK" or "Yes" in this box, please wait a few moments while your updated SVG file is sent to the server.')
		} else {
			alert('Sorry.  For security reasons, you can only save modifications to a file that resides on gpsvisualizer.com.');
			return;
		}
		if (SVGDoc.getElementById('modified_source_link text') != null) {
			var theThingToDelete = SVGDoc.getElementById('modified_source_link text');
			theThingToDelete.getParentNode().removeChild(theThingToDelete);
		}
		if (SVGDoc.getElementById('localized_jpeg_link text') != null) {
			var theThingToDelete2 = SVGDoc.getElementById('localized_jpeg_link text');
			theThingToDelete2.getParentNode().removeChild(theThingToDelete2);
		}
		if (SVGDoc.getElementById('localized_png_link text') != null) {
			var theThingToDelete3 = SVGDoc.getElementById('localized_png_link text');
			theThingToDelete3.getParentNode().removeChild(theThingToDelete3);
		}
		if (okay_to_continue) {
			showSaver(0);
			var theSource = printNode(document.rootElement);
			showSaver(1);
			postURL('http://www.gpsvisualizer.com/save_modified.cgi?/1289917649-14152-208.123.41.2.svg',theSource,postIsDone,"image/svg-xml");
		}
	}
	function postIsDone() {
		if (SVGDoc.getElementById('modified_source_link') != null) {
			
			var theExistingModifiedLink = SVGDoc.getElementById('modified_source_link');
			var newModLinkLabel = SVGDoc.createElementNS(svgns,'text');
			newModLinkLabel.setAttributeNS(null, 'id', 'modified_source_link text');
			newModLinkLabel.setAttributeNS(null, 'x', 3); newModLinkLabel.setAttributeNS(null, 'y', 14);
			newModLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newModLinkLabel.setAttributeNS(null, 'font-family', 'Verdana');  newModLinkLabel.setAttributeNS(null, 'font-size', '12');
			var newModLinkText = document.createTextNode('Retrieve modified SVG');
			newModLinkLabel.appendChild(newModLinkText);
			theExistingModifiedLink.appendChild(newModLinkLabel);

			var theExistingJPEGLink = SVGDoc.getElementById('localized_jpeg_link');
			var newJPEGLinkLabel = SVGDoc.createElementNS(svgns,'text');
			newJPEGLinkLabel.setAttributeNS(null, 'id', 'localized_jpeg_link text');
			newJPEGLinkLabel.setAttributeNS(null, 'x', 3); newJPEGLinkLabel.setAttributeNS(null, 'y', 28);
			newJPEGLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newJPEGLinkLabel.setAttributeNS(null, 'font-family', 'Verdana');  newJPEGLinkLabel.setAttributeNS(null, 'font-size', '12');
			var newJPEGLinkText = document.createTextNode('Convert modified SVG to JPEG');
			newJPEGLinkLabel.appendChild(newJPEGLinkText);
			theExistingJPEGLink.appendChild(newJPEGLinkLabel);

			var theExistingPNGLink = SVGDoc.getElementById('localized_png_link');
			var newPNGLinkLabel = SVGDoc.createElementNS(svgns,'text');
			newPNGLinkLabel.setAttributeNS(null, 'id', 'localized_png_link text');
			newPNGLinkLabel.setAttributeNS(null, 'x', 3); newPNGLinkLabel.setAttributeNS(null, 'y', 42);
			newPNGLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newPNGLinkLabel.setAttributeNS(null, 'font-family', 'Verdana');  newPNGLinkLabel.setAttributeNS(null, 'font-size', '12');
			var newPNGLinkText = document.createTextNode('Convert modified SVG to PNG');
			newPNGLinkLabel.appendChild(newPNGLinkText);
			theExistingPNGLink.appendChild(newPNGLinkLabel);

			var theExistingSVGLink = SVGDoc.getElementById('localized_svg_link');
			var newSVGLinkLabel = SVGDoc.createElementNS(svgns,'text');
			newSVGLinkLabel.setAttributeNS(null, 'id', 'localized_svg_link text');
			newSVGLinkLabel.setAttributeNS(null, 'x', 3); newSVGLinkLabel.setAttributeNS(null, 'y', 56);
			newSVGLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newSVGLinkLabel.setAttributeNS(null, 'font-family', 'Verdana');  newSVGLinkLabel.setAttributeNS(null, 'font-size', '12');
			var newSVGLinkText = document.createTextNode('Localize modified SVG (embed background)');
			newSVGLinkLabel.appendChild(newSVGLinkText);
			theExistingSVGLink.appendChild(newSVGLinkLabel);

			alert('The modified data has been recorded.  Click "Retrieve modified SVG" to open your new file, or click "Convert modified SVG to JPEG/PNG" or "Localize modified SVG" to create a flat graphic or simplified SVG of your drawing.')
		}
	}
	function saverMouseDown(evt,id) {
		var theSaver = SVGDoc.getElementById('Saver');
		if (theSaver.getAttributeNS(null, 'opacity') == 0) { return; }
		tracking = 1;
		findGroupClickOffset(evt,id);
		var scale = SVGRoot.getCurrentScale();
		var pan = SVGRoot.getCurrentTranslate();
		global_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
		global_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
	}
	function saverMouseUp(evt,id) {
		var theSaver = SVGDoc.getElementById('Saver');
		if (theSaver.getAttributeNS(null, 'opacity') == 0) { return; }
		// Any time the mouse is lifted off the saver, clear the blue highlights
		var theGroupTags = SVGDoc.getElementsByTagName('g');
		for(g=0; g < theGroupTags.length; g++){
			theGroupTags.item(g).setAttributeNS(null, 'stroke','none');
			theGroupTags.item(g).setAttributeNS(null, 'stroke-width',0);
		}
		tracking = 0;
		var scale = SVGRoot.getCurrentScale();
		var pan = SVGRoot.getCurrentTranslate();
		var current_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
		var current_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
		if (current_mouse_x == global_mouse_x && current_mouse_y == global_mouse_y) {
			saveModifiedSource();
		}
	}
	]]>
	</script>
	<g id="Saver" onmousedown="saverMouseDown(evt,'Saver')" onmousemove="moveGroup(evt,'Saver')" onmouseup="saverMouseUp(evt,'Saver')" opacity="0" transform="translate(682,2)" x="682" y="2">
		<rect fill="#CC0000" height="16" id="saver 1" rx="1.5" ry="1.5" width="16" x="0" y="0" />
		<rect fill="#FFFFFF" height="8.5" id="saver 2" width="12" x="2" y="0.5" />
		<rect fill="#999999" height="1" id="saver 3a" width="11" x="2.5" y="2" />
		<rect fill="#999999" height="1" id="saver 3b" width="11" x="2.5" y="4" />
		<rect fill="#999999" height="1" id="saver 3c" width="11" x="2.5" y="6" />
		<rect fill="#CCCCCC" height="5.5" id="saver 4" width="8" x="4" y="10.5" />
		<rect fill="#CC0000" height="4.5" id="saver 5" width="2" x="5.5" y="11" />
	</g><!-- debugging stuff:
 --><!-- key = 1289917649-14152
 --><!-- min. altitude = 413.504272
 --><!-- max. altitude = 432.730713
 --><!-- colorize min = 413.504272
 --><!-- colorize max = 432.730713
 --><!-- colorize range = 19.226441
 --><!-- upper left (data) = 46.455090,-95.207433
 --><!-- lower right (data) = 46.448797,-95.199643
 --><!-- upper left (drawing) = 46.455496,-95.2086895326863
 --><!-- lower right (drawing) = 46.448391,-95.1983864673137
 --><!-- center = 46.4519435,-95.203538
 --><!-- width,height (pixels) = 700,700
 --><!-- width,height (degrees) = 0.0103030653725682,0.0071049999999957
 --><!-- scale = 3203, resolution = 1.130 m/pixel
 --><!-- map = http://www2.demis.nl/wms/wms.asp?version=1.1.0&wms=WorldMap&request=GetMap&srs=EPSG:4326&bbox=-95.2086895,46.4483910,-95.1983865,46.4554960&WIDTH=700&HEIGHT=700&format=PNG&transparent=FALSE&exceptions=INIMAGE&wrapdateline=TRUE&layers=Bathymetry,Countries,Topography,Builtup+areas,Coastlines,Waterbodies,Rivers,Streams,Highways,Roads,Railroads,Trails,Hillshading,Borders,Settlements,Cities,Airports
 --><!-- backgrounds = http://www.gpsvisualizer.com/backgrounds?max_dimension=700&margin=0&mw=-95.2086895326863&me=-95.1983864673137&ms=46.448391&mn=46.455496&submitted=1
 --><!-- e-mail = 
 --><!-- 
	Generated using the Perl SVG Module V2.49
	by Ronan Oger
	Info: http://www.roitsystems.com/
 -->
</svg>