Greasy Fork镜像 还支持 简体中文。

WME IN Districts (beta)

Adds IN districts as a layer, and displays district info for selected road segments.

目前為 2016-08-18 提交的版本,檢視 最新版本

// ==UserScript==
// @name         WME IN Districts (beta)
// @namespace    https://gf.qytechs.cn/users/45389
// @version      0.1.b1
// @description  Adds IN districts as a layer, and displays district info for selected road segments.
// @author       MapOMatic
// @include      https://beta.waze.com/*editor/*
// @include      https://www.waze.com/*editor/*
// @exclude      https://www.waze.com/*user/editor/*
// @license      MIT/BSD/X11
// ==/UserScript==

(function() {
    'use strict';
    var _features;
    var _kml;
    var _colorLookup = {
        'SEYMOUR':{fillColor:'#f9c8c8'},
        'VINCENNES':{fillColor:'#b4e0ef'},
        'CRAWFORDSVILLE':{fillColor:'#e3edbf'},
        'GREENFIELD':{fillColor:'#e0c9e0'},
        'LA PORTE':{fillColor:'#fedcb8'},
        'FORT WAYNE':{fillColor:'#fff5f2'}
    };

    function GetFeaturesFromKMLString(strKML) {
        var format = new OpenLayers.Format.KML({
            'internalProjection': Waze.map.baseLayer.projection,
            'externalProjection': new OpenLayers.Projection("EPSG:4326")
        });
        return format.read(strKML);
    }

    function updateControls(){
        console.log('ok');
    }

    function init() {
        InstallKML();
        Waze.selectionManager.events.register("selectionchanged", null, updateControls);
        var layerid = 'wme_in_districts';
        var _features = GetFeaturesFromKMLString(_kml);
        console.log(_features);
        var WME_Geometry = new OL.Layer.Vector("IN Districts", {
            rendererOptions: { zIndexing: true },
            uniqueName: layerid,
            shortcutKey: "S+" + 0,
            layerGroup: 'indiana_districts'
        });
        var layerStyle = new OpenLayers.StyleMap({
            strokeDashstyle: 'solid',
            strokeColor: '#ff0000',
            strokeOpacity: 0.9,
            strokeWidth: 4,
            fillOpacity: 0.4,
        });
        layerStyle.addUniqueValueRules("default", "name", _colorLookup);
        WME_Geometry.setZIndex(-9999);
        WME_Geometry.displayInLayerSwitcher = true;

        // hack in translation:
        I18n.translations[I18n.locale].layers.name[layerid] = "IN Districts";

        // // check which attribute can be used for labels
        // if (features.length <= 100) {
        //     for (var i = 0; i < namelist.length; i++) {
        //         var name = namelist[i];
        //         if (typeof features[0].attributes[name] == 'string') {
        //             if (/^Style/.test(features[0].attributes[name]) == false) {
        //                 layerStyle.label = '${'+name+'}';
        //                 break;
        //             }
        //         }
        //     }
        // }
        WME_Geometry.styleMap = layerStyle;

        // add data to the map
        WME_Geometry.addFeatures(_features);
        Waze.map.addLayer(WME_Geometry);
    }

    function awaitLogin(e) {
        if (e && e.user == null) {
            return;
        }
        if (typeof Waze === 'undefined' ||
            typeof Waze.loginManager === 'undefined') {
            setTimeout(awaitLogin, 100);
            return;
        }
        if (!Waze.loginManager.hasUser()) {
            Waze.loginManager.events.register("login", null, awaitLogin);
            Waze.loginManager.events.register("loginStatus", null, awaitLogin);
            return;
        }
        // TODO: check whether this is actually useful to do
        if (typeof document.getElementById('WazeMap') === undefined) {
            setTimeout(awaitLogin, 100);
            return;
        }
        init();
    }

    awaitLogin();

    function InstallKML(){
        OpenLayers.Format.KML=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{kml:"http://www.opengis.net/kml/2.2",gx:"http://www.google.com/kml/ext/2.2"},kmlns:"http://earth.google.com/kml/2.0",placemarksDesc:"No description available",foldersName:"OpenLayers export",foldersDesc:"Exported on "+new Date,extractAttributes:!0,kvpAttributes:!1,extractStyles:!1,extractTracks:!1,trackAttributes:null,internalns:null,features:null,styles:null,styleBaseUrl:"",fetched:null,maxDepth:0,initialize:function(a){this.regExes=
            {trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g,kmlColor:/(\w{2})(\w{2})(\w{2})(\w{2})/,kmlIconPalette:/root:\/\/icons\/palette-(\d+)(\.\w+)/,straightBracket:/\$\[(.*?)\]/g};this.externalProjection=new OpenLayers.Projection("EPSG:4326");OpenLayers.Format.XML.prototype.initialize.apply(this,[a])},read:function(a){this.features=[];this.styles={};this.fetched={};return this.parseData(a,{depth:0,styleBaseUrl:this.styleBaseUrl})},parseData:function(a,b){"string"==typeof a&&
                (a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));for(var c=["Link","NetworkLink","Style","StyleMap","Placemark"],d=0,e=c.length;d<e;++d){var f=c[d],g=this.getElementsByTagNameNS(a,"*",f);if(0!=g.length)switch(f.toLowerCase()){case "link":case "networklink":this.parseLinks(g,b);break;case "style":this.extractStyles&&this.parseStyles(g,b);break;case "stylemap":this.extractStyles&&this.parseStyleMaps(g,b);break;case "placemark":this.parseFeatures(g,b)}}return this.features},parseLinks:function(a,
b){if(b.depth>=this.maxDepth)return!1;var c=OpenLayers.Util.extend({},b);c.depth++;for(var d=0,e=a.length;d<e;d++){var f=this.parseProperty(a[d],"*","href");f&&!this.fetched[f]&&(this.fetched[f]=!0,(f=this.fetchLink(f))&&this.parseData(f,c))}},fetchLink:function(a){if(a=OpenLayers.Request.GET({url:a,async:!1}))return a.responseText},parseStyles:function(a,b){for(var c=0,d=a.length;c<d;c++){var e=this.parseStyle(a[c]);e&&(this.styles[(b.styleBaseUrl||"")+"#"+e.id]=e)}},parseKmlColor:function(a){var b=
                null;a&&(a=a.match(this.regExes.kmlColor))&&(b={color:"#"+a[4]+a[3]+a[2],opacity:parseInt(a[1],16)/255});return b},parseStyle:function(a){for(var b={},c=["LineStyle","PolyStyle","IconStyle","BalloonStyle","LabelStyle"],d,e,f=0,g=c.length;f<g;++f)if(d=c[f],e=this.getElementsByTagNameNS(a,"*",d)[0])switch(d.toLowerCase()){case "linestyle":d=this.parseProperty(e,"*","color");if(d=this.parseKmlColor(d))b.strokeColor=d.color,b.strokeOpacity=d.opacity;(d=this.parseProperty(e,"*","width"))&&(b.strokeWidth=
d);break;case "polystyle":d=this.parseProperty(e,"*","color");if(d=this.parseKmlColor(d))b.fillOpacity=d.opacity,b.fillColor=d.color;"0"==this.parseProperty(e,"*","fill")&&(b.fillColor="none");"0"==this.parseProperty(e,"*","outline")&&(b.strokeWidth="0");break;case "iconstyle":var h=parseFloat(this.parseProperty(e,"*","scale")||1);d=32*h;var i=32*h,j=this.getElementsByTagNameNS(e,"*","Icon")[0];if(j){var k=this.parseProperty(j,"*","href");if(k){var l=this.parseProperty(j,"*","w"),m=this.parseProperty(j,
"*","h");OpenLayers.String.startsWith(k,"http://maps.google.com/mapfiles/kml")&&(!l&&!m)&&(m=l=64,h/=2);l=l||m;m=m||l;l&&(d=parseInt(l)*h);m&&(i=parseInt(m)*h);if(m=k.match(this.regExes.kmlIconPalette))l=m[1],m=m[2],k=this.parseProperty(j,"*","x"),j=this.parseProperty(j,"*","y"),k="http://maps.google.com/mapfiles/kml/pal"+l+"/icon"+(8*(j?7-j/32:7)+(k?k/32:0))+m;b.graphicOpacity=1;b.externalGraphic=k}}if(e=this.getElementsByTagNameNS(e,"*","hotSpot")[0])k=parseFloat(e.getAttribute("x")),j=parseFloat(e.getAttribute("y")),
                    l=e.getAttribute("xunits"),"pixels"==l?b.graphicXOffset=-k*h:"insetPixels"==l?b.graphicXOffset=-d+k*h:"fraction"==l&&(b.graphicXOffset=-d*k),e=e.getAttribute("yunits"),"pixels"==e?b.graphicYOffset=-i+j*h+1:"insetPixels"==e?b.graphicYOffset=-(j*h)+1:"fraction"==e&&(b.graphicYOffset=-i*(1-j)+1);b.graphicWidth=d;b.graphicHeight=i;break;case "balloonstyle":(e=OpenLayers.Util.getXmlNodeValue(e))&&(b.balloonStyle=e.replace(this.regExes.straightBracket,"${$1}"));break;case "labelstyle":if(d=this.parseProperty(e,
"*","color"),d=this.parseKmlColor(d))b.fontColor=d.color,b.fontOpacity=d.opacity}!b.strokeColor&&b.fillColor&&(b.strokeColor=b.fillColor);if((a=a.getAttribute("id"))&&b)b.id=a;return b},parseStyleMaps:function(a,b){for(var c=0,d=a.length;c<d;c++)for(var e=a[c],f=this.getElementsByTagNameNS(e,"*","Pair"),e=e.getAttribute("id"),g=0,h=f.length;g<h;g++){var i=f[g],j=this.parseProperty(i,"*","key");(i=this.parseProperty(i,"*","styleUrl"))&&"normal"==j&&(this.styles[(b.styleBaseUrl||"")+"#"+e]=this.styles[(b.styleBaseUrl||
"")+i])}},parseFeatures:function(a,b){for(var c=[],d=0,e=a.length;d<e;d++){var f=a[d],g=this.parseFeature.apply(this,[f]);if(g){this.extractStyles&&(g.attributes&&g.attributes.styleUrl)&&(g.style=this.getStyle(g.attributes.styleUrl,b));if(this.extractStyles){var h=this.getElementsByTagNameNS(f,"*","Style")[0];if(h&&(h=this.parseStyle(h)))g.style=OpenLayers.Util.extend(g.style,h)}if(this.extractTracks){if((f=this.getElementsByTagNameNS(f,this.namespaces.gx,"Track"))&&0<f.length)g={features:[],feature:g},
                    this.readNode(f[0],g),0<g.features.length&&c.push.apply(c,g.features)}else c.push(g)}else throw"Bad Placemark: "+d;}this.features=this.features.concat(c)},readers:{kml:{when:function(a,b){b.whens.push(OpenLayers.Date.parse(this.getChildValue(a)))},_trackPointAttribute:function(a,b){var c=a.nodeName.split(":").pop();b.attributes[c].push(this.getChildValue(a))}},gx:{Track:function(a,b){var c={whens:[],points:[],angles:[]};if(this.trackAttributes){var d;c.attributes={};for(var e=0,f=this.trackAttributes.length;e<
f;++e)d=this.trackAttributes[e],c.attributes[d]=[],d in this.readers.kml||(this.readers.kml[d]=this.readers.kml._trackPointAttribute)}this.readChildNodes(a,c);if(c.whens.length!==c.points.length)throw Error("gx:Track with unequal number of when ("+c.whens.length+") and gx:coord ("+c.points.length+") elements.");var g=0<c.angles.length;if(g&&c.whens.length!==c.angles.length)throw Error("gx:Track with unequal number of when ("+c.whens.length+") and gx:angles ("+c.angles.length+") elements.");for(var h,
i,e=0,f=c.whens.length;e<f;++e){h=b.feature.clone();h.fid=b.feature.fid||b.feature.id;i=c.points[e];h.geometry=i;"z"in i&&(h.attributes.altitude=i.z);this.internalProjection&&this.externalProjection&&h.geometry.transform(this.externalProjection,this.internalProjection);if(this.trackAttributes){i=0;for(var j=this.trackAttributes.length;i<j;++i)h.attributes[d]=c.attributes[this.trackAttributes[i]][e]}h.attributes.when=c.whens[e];h.attributes.trackId=b.feature.id;g&&(i=c.angles[e],h.attributes.heading=
parseFloat(i[0]),h.attributes.tilt=parseFloat(i[1]),h.attributes.roll=parseFloat(i[2]));b.features.push(h)}},coord:function(a,b){var c=this.getChildValue(a).replace(this.regExes.trimSpace,"").split(/\s+/),d=new OpenLayers.Geometry.Point(c[0],c[1]);2<c.length&&(d.z=parseFloat(c[2]));b.points.push(d)},angles:function(a,b){var c=this.getChildValue(a).replace(this.regExes.trimSpace,"").split(/\s+/);b.angles.push(c)}}},parseFeature:function(a){for(var b=["MultiGeometry","Polygon","LineString","Point"],
c,d,e,f=0,g=b.length;f<g;++f)if(c=b[f],this.internalns=a.namespaceURI?a.namespaceURI:this.kmlns,d=this.getElementsByTagNameNS(a,this.internalns,c),0<d.length){if(b=this.parseGeometry[c.toLowerCase()])e=b.apply(this,[d[0]]),this.internalProjection&&this.externalProjection&&e.transform(this.externalProjection,this.internalProjection);else throw new TypeError("Unsupported geometry type: "+c);break}var h;this.extractAttributes&&(h=this.parseAttributes(a));c=new OpenLayers.Feature.Vector(e,h);a=a.getAttribute("id")||
                    a.getAttribute("name");null!=a&&(c.fid=a);return c},getStyle:function(a,b){var c=OpenLayers.Util.removeTail(a),d=OpenLayers.Util.extend({},b);d.depth++;d.styleBaseUrl=c;!this.styles[a]&&!OpenLayers.String.startsWith(a,"#")&&d.depth<=this.maxDepth&&!this.fetched[c]&&(c=this.fetchLink(c))&&this.parseData(c,d);return OpenLayers.Util.extend({},this.styles[a])},parseGeometry:{point:function(a){var b=this.getElementsByTagNameNS(a,this.internalns,"coordinates"),a=[];if(0<b.length)var c=b[0].firstChild.nodeValue,
                    c=c.replace(this.regExes.removeSpace,""),a=c.split(",");b=null;if(1<a.length)2==a.length&&(a[2]=null),b=new OpenLayers.Geometry.Point(a[0],a[1],a[2]);else throw"Bad coordinate string: "+c;return b},linestring:function(a,b){var c=this.getElementsByTagNameNS(a,this.internalns,"coordinates"),d=null;if(0<c.length){for(var c=this.getChildValue(c[0]),c=c.replace(this.regExes.trimSpace,""),c=c.replace(this.regExes.trimComma,","),d=c.split(this.regExes.splitSpace),e=d.length,f=Array(e),g,h,i=0;i<e;++i)if(g=
d[i].split(","),h=g.length,1<h)2==g.length&&(g[2]=null),f[i]=new OpenLayers.Geometry.Point(g[0],g[1],g[2]);else throw"Bad LineString point coordinates: "+d[i];if(e)d=b?new OpenLayers.Geometry.LinearRing(f):new OpenLayers.Geometry.LineString(f);else throw"Bad LineString coordinates: "+c;}return d},polygon:function(a){var a=this.getElementsByTagNameNS(a,this.internalns,"LinearRing"),b=a.length,c=Array(b);if(0<b)for(var d=0,e=a.length;d<e;++d)if(b=this.parseGeometry.linestring.apply(this,[a[d],!0]))c[d]=
                        b;else throw"Bad LinearRing geometry: "+d;return new OpenLayers.Geometry.Polygon(c)},multigeometry:function(a){for(var b,c=[],d=a.childNodes,e=0,f=d.length;e<f;++e)a=d[e],1==a.nodeType&&(b=this.parseGeometry[(a.prefix?a.nodeName.split(":")[1]:a.nodeName).toLowerCase()])&&c.push(b.apply(this,[a]));return new OpenLayers.Geometry.Collection(c)}},parseAttributes:function(a){var b={},c=a.getElementsByTagName("ExtendedData");c.length&&(b=this.parseExtendedData(c[0]));for(var d,e,f,a=a.childNodes,c=0,g=
a.length;c<g;++c)if(d=a[c],1==d.nodeType&&(e=d.childNodes,1<=e.length&&3>=e.length)){switch(e.length){case 1:f=e[0];break;case 2:f=e[0];e=e[1];f=3==f.nodeType||4==f.nodeType?f:e;break;default:f=e[1]}if(3==f.nodeType||4==f.nodeType)if(d=d.prefix?d.nodeName.split(":")[1]:d.nodeName,f=OpenLayers.Util.getXmlNodeValue(f))f=f.replace(this.regExes.trimSpace,""),b[d]=f}return b},parseExtendedData:function(a){var b={},c,d,e,f,g=a.getElementsByTagName("Data");c=0;for(d=g.length;c<d;c++){e=g[c];f=e.getAttribute("name");
var h={},i=e.getElementsByTagName("value");i.length&&(h.value=this.getChildValue(i[0]));this.kvpAttributes?b[f]=h.value:(e=e.getElementsByTagName("displayName"),e.length&&(h.displayName=this.getChildValue(e[0])),b[f]=h)}a=a.getElementsByTagName("SimpleData");c=0;for(d=a.length;c<d;c++)h={},e=a[c],f=e.getAttribute("name"),h.value=this.getChildValue(e),this.kvpAttributes?b[f]=h.value:(h.displayName=f,b[f]=h);return b},parseProperty:function(a,b,c){var d,a=this.getElementsByTagNameNS(a,b,c);try{d=OpenLayers.Util.getXmlNodeValue(a[0])}catch(e){d=
    null}return d},write:function(a){OpenLayers.Util.isArray(a)||(a=[a]);for(var b=this.createElementNS(this.kmlns,"kml"),c=this.createFolderXML(),d=0,e=a.length;d<e;++d)c.appendChild(this.createPlacemarkXML(a[d]));b.appendChild(c);return OpenLayers.Format.XML.prototype.write.apply(this,[b])},createFolderXML:function(){var a=this.createElementNS(this.kmlns,"Folder");if(this.foldersName){var b=this.createElementNS(this.kmlns,"name"),c=this.createTextNode(this.foldersName);b.appendChild(c);a.appendChild(b)}this.foldersDesc&&
        (b=this.createElementNS(this.kmlns,"description"),c=this.createTextNode(this.foldersDesc),b.appendChild(c),a.appendChild(b));return a},createPlacemarkXML:function(a){var b=this.createElementNS(this.kmlns,"name");b.appendChild(this.createTextNode(a.style&&a.style.label?a.style.label:a.attributes.name||a.id));var c=this.createElementNS(this.kmlns,"description");c.appendChild(this.createTextNode(a.attributes.description||this.placemarksDesc));var d=this.createElementNS(this.kmlns,"Placemark");null!=
        a.fid&&d.setAttribute("id",a.fid);d.appendChild(b);d.appendChild(c);b=this.buildGeometryNode(a.geometry);d.appendChild(b);a.attributes&&(a=this.buildExtendedData(a.attributes))&&d.appendChild(a);return d},buildGeometryNode:function(a){var b=a.CLASS_NAME,b=this.buildGeometry[b.substring(b.lastIndexOf(".")+1).toLowerCase()],c=null;b&&(c=b.apply(this,[a]));return c},buildGeometry:{point:function(a){var b=this.createElementNS(this.kmlns,"Point");b.appendChild(this.buildCoordinatesNode(a));return b},multipoint:function(a){return this.buildGeometry.collection.apply(this,
[a])},linestring:function(a){var b=this.createElementNS(this.kmlns,"LineString");b.appendChild(this.buildCoordinatesNode(a));return b},multilinestring:function(a){return this.buildGeometry.collection.apply(this,[a])},linearring:function(a){var b=this.createElementNS(this.kmlns,"LinearRing");b.appendChild(this.buildCoordinatesNode(a));return b},polygon:function(a){for(var b=this.createElementNS(this.kmlns,"Polygon"),a=a.components,c,d,e=0,f=a.length;e<f;++e)c=0==e?"outerBoundaryIs":"innerBoundaryIs",
        c=this.createElementNS(this.kmlns,c),d=this.buildGeometry.linearring.apply(this,[a[e]]),c.appendChild(d),b.appendChild(c);return b},multipolygon:function(a){return this.buildGeometry.collection.apply(this,[a])},collection:function(a){for(var b=this.createElementNS(this.kmlns,"MultiGeometry"),c,d=0,e=a.components.length;d<e;++d)(c=this.buildGeometryNode.apply(this,[a.components[d]]))&&b.appendChild(c);return b}},buildCoordinatesNode:function(a){var b=this.createElementNS(this.kmlns,"coordinates"),
        c;if(c=a.components){for(var d=c.length,e=Array(d),f=0;f<d;++f)a=c[f],e[f]=this.buildCoordinates(a);c=e.join(" ")}else c=this.buildCoordinates(a);c=this.createTextNode(c);b.appendChild(c);return b},buildCoordinates:function(a){this.internalProjection&&this.externalProjection&&(a=a.clone(),a.transform(this.internalProjection,this.externalProjection));return a.x+","+a.y},buildExtendedData:function(a){var b=this.createElementNS(this.kmlns,"ExtendedData"),c;for(c in a)if(a[c]&&"name"!=c&&"description"!=
c&&"styleUrl"!=c){var d=this.createElementNS(this.kmlns,"Data");d.setAttribute("name",c);var e=this.createElementNS(this.kmlns,"value");if("object"==typeof a[c]){if(a[c].value&&e.appendChild(this.createTextNode(a[c].value)),a[c].displayName){var f=this.createElementNS(this.kmlns,"displayName");f.appendChild(this.getXMLDoc().createCDATASection(a[c].displayName));d.appendChild(f)}}else e.appendChild(this.createTextNode(a[c]));d.appendChild(e);b.appendChild(d)}return this.isSimpleContent(b)?null:b},
                                                                      CLASS_NAME:"OpenLayers.Format.KML"});

        _kml = `<?xml version='1.0' encoding='UTF-8'?>
<kml xmlns='http://www.opengis.net/kml/2.2'>
<Document>
<name>DistrictPoly</name>
<Placemark>
<name>LA PORTE</name>
<description><![CDATA[LA PORTE    <br>       <br>   DISTRICT   4    <br>   DISTNAME   LA PORTE    <br>   Created By   DOTRAH    <br>   Date Created   7/30/2014 4:02:07 PM    <br>   Edited By   DOTRAH    <br>   Date Edited   7/30/2014 4:02:07 PM    <br>   SHAPE   Polygon    <br>   GLOBALID   {3472FF09-1899-480C-B229-FBC1CE6D0E1C}    <br>   SHAPE_Length   588361.328283    <br>   SHAPE_Area   15364049135.760864]]></description>
<styleUrl>#poly-000000-3-0</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<tessellate>1</tessellate>
<coordinates>-87.5264920156119,41.25437983662252,0.0 -87.526536,41.230414,0.0 -87.526672,41.152468,0.0 -87.526232,41.013991999999995,0.0 -87.525986,40.880551,0.0 -87.525832,40.851761,0.0 -87.526059,40.770430999999995,0.0 -87.526084,40.736884,0.0 -87.512983,40.736944,0.0 -87.491484,40.769408000000006,0.0 -87.475234,40.736785000000005,0.0 -87.458191,40.736789,0.0 -87.438061,40.767844,0.0 -87.420047,40.736638,0.0 -87.346636,40.736517000000006,0.0 -87.324785,40.765619,0.0 -87.305461,40.736641,0.0 -87.144607,40.736791999999994,0.0 -87.119485,40.765726,0.0 -87.06427,40.72927800000001,0.0 -87.040846,40.667775,0.0 -87.02018800000002,40.677221,0.0 -86.89304100000001,40.628434000000006,0.0 -86.86862,40.605322,0.0 -86.870473,40.603775,0.0 -86.868607,40.602705,0.0 -86.85061,40.587590000000006,0.0 -86.849207,40.562306,0.0 -86.717131,40.562397,0.0 -86.679193,40.58418999999999,0.0 -86.674214,40.570973,0.0 -86.694264,40.538001,0.0 -86.694148,40.43247900000001,0.0 -86.617874,40.43201499999999,0.0 -86.594811,40.416966,0.0 -86.584199,40.431772,0.0 -86.538404,40.431578,0.0 -86.525251,40.41674600000001,0.0 -86.511393,40.431354999999996,0.0 -86.41174,40.431557,0.0 -86.392882,40.415704,0.0 -86.375535,40.431728,0.0 -86.375326,40.47472900000001,0.0 -86.394985,40.480228,0.0 -86.375664,40.513949,0.0 -86.374184,40.561346,0.0 -86.2564910087331,40.562085598144996,0.0 -86.20549,40.562369,0.0 -86.18984400000001,40.578853,0.0 -86.164973,40.562578,0.0 -86.12733,40.584824000000005,0.0 -86.16544500000002,40.5969,0.0 -86.166432,40.667838999999994,0.0 -86.127956,40.677129,0.0 -86.137276,40.682271,0.0 -86.166716,40.686251999999996,0.0 -86.165825,40.742779,0.0 -86.149044,40.770302,0.0 -86.168287,40.791351000000006,0.0 -86.167633,40.85828,0.0 -86.136614,40.865704,0.0 -86.167821,40.876394000000005,0.0 -86.168593,40.90958,0.0 -86.173235,40.914438,0.0 -86.173228,40.99607100000001,0.0 -86.167679,40.996106,0.0 -86.130003,40.99610700000001,0.0 -86.114865,40.996334,0.0 -86.057269,40.99757,0.0 -86.051072,40.997749,0.0 -86.051354,41.022763,0.0 -86.028359,41.038885,0.0 -86.051694,41.047503,0.0 -86.052252,41.085345,0.0 -86.075798,41.085238,0.0 -86.077198,41.161007,0.0 -86.039157,41.17333200000001,0.0 -86.054227,41.17652400000001,0.0 -86.05507799127506,41.21348241694345,0.0 -86.055755,41.242855000000006,0.0 -86.050653,41.245661000000005,0.0 -86.055902,41.249477,0.0 -86.05631200000002,41.271253,0.0 -86.056555,41.279611,0.0 -86.046931,41.282116,0.0 -86.056923,41.291372,0.0 -86.05895,41.43577500000001,0.0 -86.030346,41.443279000000004,0.0 -86.059335,41.457442,0.0 -86.059503,41.478994,0.0 -86.059722,41.507161,0.0 -86.06057,41.61610000000001,0.0 -86.061036,41.66411600000001,0.0 -86.069474,41.66640199999999,0.0 -86.069944,41.684153,0.0 -86.061517,41.688411,0.0 -86.062237,41.731196999999995,0.0 -86.062599,41.76053499999999,0.0 -86.088428,41.760689,0.0 -86.250858,41.760458,0.0 -86.2564910087331,41.76044376602626,0.0 -86.331188,41.76022900000001,0.0 -86.524203,41.75916099999999,0.0 -86.722309,41.759962,0.0 -86.750777,41.760045000000005,0.0 -86.800547,41.760174,0.0 -87.185058,41.76027400000001,0.0 -87.220804,41.760243,0.0 -87.372333,41.759986999999995,0.0 -87.524231,41.759529,0.0 -87.524578,41.708034,0.0 -87.524471,41.702703,0.0 -87.525134,41.663789,0.0 -87.525138,41.633109,0.0 -87.525327,41.576927,0.0 -87.525327,41.576924,0.0 -87.52553400000001,41.494647,0.0 -87.525674,41.472209,0.0 -87.52626500000001,41.37779499999999,0.0 -87.5264920156119,41.25437983662252,0.0</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark>
<name>CRAWFORDSVILLE</name>
<description><![CDATA[CRAWFORDSVILLE    <br>       <br>   DISTRICT   1    <br>   DISTNAME   CRAWFORDSVILLE    <br>   Created By   DOTRAH    <br>   Date Created   7/30/2014 4:02:07 PM    <br>   Edited By   DOTRAH    <br>   Date Edited   7/30/2014 4:02:07 PM    <br>   SHAPE   Polygon    <br>   GLOBALID   {D55E6969-99CB-4C2F-BCC8-781F21C24693}    <br>   SHAPE_Length   599638.668544    <br>   SHAPE_Area   15186136914.355242]]></description>
<styleUrl>#poly-000000-3-0</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<tessellate>1</tessellate>
<coordinates>-86.228285,39.923635,0.0 -86.224463,39.926263999999996,0.0 -86.226044,39.929961000000006,0.0 -86.241035,39.96563499999999,0.0 -86.24122600000001,40.019371,0.0 -86.2564910087331,40.02684644017323,0.0 -86.285309,40.040949,0.0 -86.2564910087331,40.05784252136363,0.0 -86.241393,40.06668700000001,0.0 -86.241579,40.11938,0.0 -86.21077,40.129962,0.0 -86.241629,40.180393,0.0 -86.242592,40.273638,0.0 -86.243116,40.373825,0.0 -86.2564910087331,40.37383066476869,0.0 -86.280702,40.373837,0.0 -86.280756,40.388093,0.0 -86.309181,40.388146,0.0 -86.309239,40.417302,0.0 -86.30976,40.431343,0.0 -86.375535,40.431728,0.0 -86.392882,40.415704,0.0 -86.41174,40.431557,0.0 -86.511393,40.431354999999996,0.0 -86.525251,40.41674600000001,0.0 -86.538404,40.431578,0.0 -86.584199,40.431772,0.0 -86.594811,40.416966,0.0 -86.617874,40.43201499999999,0.0 -86.694148,40.43247900000001,0.0 -86.694264,40.538001,0.0 -86.674214,40.570973,0.0 -86.679193,40.58418999999999,0.0 -86.717131,40.562397,0.0 -86.849207,40.562306,0.0 -86.85061,40.587590000000006,0.0 -86.868607,40.602705,0.0 -86.870473,40.603775,0.0 -86.86862,40.605322,0.0 -86.89304100000001,40.628434000000006,0.0 -87.02018800000002,40.677221,0.0 -87.040846,40.667775,0.0 -87.06427,40.72927800000001,0.0 -87.119485,40.765726,0.0 -87.144607,40.736791999999994,0.0 -87.305461,40.736641,0.0 -87.324785,40.765619,0.0 -87.346636,40.736517000000006,0.0 -87.420047,40.736638,0.0 -87.438061,40.767844,0.0 -87.458191,40.736789,0.0 -87.475234,40.736785000000005,0.0 -87.491484,40.769408000000006,0.0 -87.512983,40.736944,0.0 -87.526084,40.736884,0.0 -87.526402,40.62254999999999,0.0 -87.52630000000002,40.535413000000005,0.0 -87.526616,40.475527,0.0 -87.526792,40.461945,0.0 -87.526958,40.440199,0.0 -87.52963900000002,40.282019000000005,0.0 -87.5316,40.132957,0.0 -87.531705,40.117686,0.0 -87.531858,40.066342000000006,0.0 -87.5327638191046,39.95507457510973,0.0 -87.532829,39.94705400000001,0.0 -87.533213,39.796269,0.0 -87.532574,39.664948,0.0 -87.532448,39.646969,0.0 -87.531409,39.436517,0.0 -87.531647,39.347949,0.0 -87.538277,39.352494,0.0 -87.53917700000001,39.35282,0.0 -87.53958546140831,39.35283649978387,0.0 -87.542743,39.352964,0.0 -87.543448,39.352721,0.0 -87.548368,39.349278,0.0 -87.54964,39.346773,0.0 -87.550635,39.343939,0.0 -87.551914,39.34224999999999,0.0 -87.554784,39.340609,0.0 -87.559835,39.339111,0.0 -87.564693,39.339734,0.0 -87.569428,39.341044,0.0 -87.571173,39.341388,0.0 -87.57500200000001,39.341508,0.0 -87.579477,39.339948,0.0 -87.581382,39.339079,0.0 -87.586938,39.336104,0.0 -87.592131,39.330138,0.0 -87.594875,39.325955,0.0 -87.599292,39.319971,0.0 -87.605374,39.31251,0.0 -87.607463,39.310964,0.0 -87.609143,39.310162000000005,0.0 -87.61767900000001,39.30855,0.0 -87.61959,39.30783099999999,0.0 -87.620761,39.30537199999999,0.0 -87.620785,39.30485,0.0 -87.619766,39.302533,0.0 -87.616288,39.30101700000001,0.0 -87.615666,39.300948,0.0 -87.611614,39.302007,0.0 -87.606679,39.302986,0.0 -87.605925,39.30293,0.0 -87.601472,39.301673,0.0 -87.598586,39.299323,0.0 -87.59809300000002,39.298227,0.0 -87.59999500000002,39.293498,0.0 -87.605569,39.289262,0.0 -87.608781,39.285316,0.0 -87.609389,39.283927,0.0 -87.609683,39.279768,0.0 -87.60882,39.27765300000001,0.0 -87.602378,39.27490400000001,0.0 -87.60181,39.271237,0.0 -87.605581,39.262405,0.0 -87.60554900000001,39.261125,0.0 -87.604087,39.259407,0.0 -87.53958546140831,39.25923733569534,0.0 -87.517479,39.25917100000001,0.0 -87.51729600000002,39.259313999999996,0.0 -87.497867,39.27421,0.0 -87.492408,39.259280000000004,0.0 -87.403633,39.259084,0.0 -87.388586,39.273761,0.0 -87.37546,39.259179,0.0 -87.281037,39.25909,0.0 -87.24067500000001,39.240679,0.0 -87.24097200000001,39.194481,0.0 -87.232432,39.18566700000001,0.0 -87.184788,39.162806,0.0 -87.175192,39.16947700000001,0.0 -87.173907,39.170051,0.0 -87.032843,39.168173,0.0 -87.030913,39.16753,0.0 -86.998688,39.146939,0.0 -86.868453,39.200445,0.0 -86.882193,39.214402,0.0 -86.86616,39.312525,0.0 -86.839809,39.321687000000004,0.0 -86.739856,39.356005,0.0 -86.631022,39.41358699999999,0.0 -86.456842,39.508137,0.0 -86.379483,39.605818,0.0 -86.36493,39.607393,0.0 -86.359041,39.631328,0.0 -86.350109,39.660998,0.0 -86.35012,39.682852999999994,0.0 -86.326435,39.717351,0.0 -86.264656,39.748358,0.0 -86.284279,39.756304,0.0 -86.266626,39.76476300000001,0.0 -86.28162,39.779365,0.0 -86.275155,39.801054,0.0 -86.279214,39.804601,0.0 -86.275245,39.80525,0.0 -86.279121,39.815545,0.0 -86.327697,39.844417,0.0 -86.328276,39.866161,0.0 -86.325395,39.86626100000001,0.0 -86.326118,39.903522,0.0 -86.326586,39.904836,0.0 -86.34415721944627,39.923781868951124,0.0 -86.34463700000002,39.924299,0.0 -86.357638,39.938376999999996,0.0 -86.353628,39.947316,0.0 -86.26288400000001,39.939715,0.0 -86.261454,39.93932800000001,0.0 -86.2564910087331,39.93698095617993,0.0 -86.228285,39.923635,0.0</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark>
<name>VINCENNES</name>
<description><![CDATA[VINCENNES    <br>       <br>   DISTRICT   6    <br>   DISTNAME   VINCENNES    <br>   Created By   DOTRAH    <br>   Date Created   7/30/2014 4:02:07 PM    <br>   Edited By   DOTRAH    <br>   Date Edited   7/30/2014 4:02:07 PM    <br>   SHAPE   Polygon    <br>   GLOBALID   {6F2FDF43-0983-4C70-87F1-0018DEA8048D}    <br>   SHAPE_Length   830203.34565    <br>   SHAPE_Area   16872367875.357487]]></description>
<styleUrl>#poly-000000-3-2</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<tessellate>1</tessellate>
<coordinates>-87.492408,39.259280000000004,0.0 -87.497867,39.27421,0.0 -87.51729600000002,39.259313999999996,0.0 -87.517479,39.25917100000001,0.0 -87.53958546140831,39.259237335695325,0.0 -87.604087,39.259407,0.0 -87.600542,39.256092,0.0 -87.598141,39.254099,0.0 -87.596054,39.25116299999999,0.0 -87.592815,39.24683,0.0 -87.588169,39.24857,0.0 -87.58544300000001,39.25305900000001,0.0 -87.582492,39.25437,0.0 -87.581051,39.254773,0.0 -87.577202,39.25522,0.0 -87.572786,39.254018,0.0 -87.57186,39.251214,0.0 -87.572988,39.248294,0.0 -87.57517800000001,39.246193000000005,0.0 -87.57769200000001,39.24409099999999,0.0 -87.578806,39.241995,0.0 -87.57539,39.228421,0.0 -87.57488,39.217977,0.0 -87.577157,39.211934,0.0 -87.578659,39.210111,0.0 -87.585502,39.204718,0.0 -87.586384,39.200058,0.0 -87.590483,39.196967,0.0 -87.592808,39.195784,0.0 -87.595241,39.195029,0.0 -87.597763,39.194032,0.0 -87.603325,39.191068,0.0 -87.605597,39.185381,0.0 -87.609817,39.184003000000004,0.0 -87.611844,39.183992,0.0 -87.613112,39.184293,0.0 -87.615359,39.18537,0.0 -87.616984,39.18587,0.0 -87.618054,39.186016,0.0 -87.620398,39.18536999999999,0.0 -87.621386,39.18159,0.0 -87.621159,39.175577,0.0 -87.620891,39.174764,0.0 -87.61945800000001,39.172436,0.0 -87.62038,39.171166,0.0 -87.623133,39.16958399999999,0.0 -87.628801,39.168826,0.0 -87.634996,39.168769000000005,0.0 -87.636304,39.168429,0.0 -87.640917,39.166051,0.0 -87.642444,39.160726,0.0 -87.635926,39.158799,0.0 -87.631808,39.158206,0.0 -87.62737900000002,39.156182,0.0 -87.631203,39.15114100000001,0.0 -87.635842,39.154257,0.0 -87.637968,39.15518,0.0 -87.64254300000002,39.15607700000001,0.0 -87.643706,39.155786,0.0 -87.651124,39.150597,0.0 -87.653344,39.14643300000001,0.0 -87.654696,39.142229,0.0 -87.655743,39.140656,0.0 -87.658821,39.137603,0.0 -87.658479,39.135949999999994,0.0 -87.657104,39.13356600000001,0.0 -87.649965,39.130721,0.0 -87.645643,39.1295,0.0 -87.643249,39.126816,0.0 -87.642404,39.125411,0.0 -87.641676,39.123076,0.0 -87.637079,39.122654,0.0 -87.633198,39.121212,0.0 -87.632945,39.118066,0.0 -87.63406,39.116192,0.0 -87.636515,39.115247000000004,0.0 -87.650516,39.11549,0.0 -87.655484,39.113967,0.0 -87.654558,39.108949,0.0 -87.652591,39.106296,0.0 -87.64781,39.104878,0.0 -87.647161,39.104804,0.0 -87.642221,39.105153,0.0 -87.637037,39.105712,0.0 -87.632162,39.104833,0.0 -87.626267,39.10437300000001,0.0 -87.62008,39.104228,0.0 -87.619115,39.104061,0.0 -87.61521,39.10280499999999,0.0 -87.614051,39.09993599999999,0.0 -87.615491,39.09605100000001,0.0 -87.619461,39.09200899999999,0.0 -87.620498,39.090696,0.0 -87.620819,39.089796,0.0 -87.620642,39.08755500000001,0.0 -87.620048,39.086375,0.0 -87.61827700000002,39.084469,0.0 -87.615553,39.082943,0.0 -87.613616,39.082205,0.0 -87.610791,39.081691,0.0 -87.606314,39.081548,0.0 -87.6027,39.081723,0.0 -87.601643,39.08151599999999,0.0 -87.595806,39.078686999999995,0.0 -87.593054,39.074885,0.0 -87.587025,39.070205,0.0 -87.582555,39.06635,0.0 -87.580782,39.064411,0.0 -87.578802,39.061098,0.0 -87.57348700000001,39.057125,0.0 -87.572536,39.052668,0.0 -87.573069,39.050194,0.0 -87.573615,39.04901799999999,0.0 -87.574527,39.047735,0.0 -87.579372,39.042668,0.0 -87.580702,39.040796,0.0 -87.580181,39.038956999999996,0.0 -87.579439,39.03762999999999,0.0 -87.574244,39.031939,0.0 -87.573194,39.030384999999995,0.0 -87.570577,39.023883,0.0 -87.570199,39.01841100000001,0.0 -87.57157700000002,39.01377800000001,0.0 -87.572085,39.01263599999999,0.0 -87.574887,39.007773,0.0 -87.577829,39.004088,0.0 -87.578374,39.00292700000001,0.0 -87.578507,39.001066,0.0 -87.578207,39.00021600000001,0.0 -87.576451,38.99796500000001,0.0 -87.573421,38.99615,0.0 -87.571184,38.995126,0.0 -87.56876400000002,38.994362,0.0 -87.568018,38.994263,0.0 -87.564669,38.994433,0.0 -87.56153,38.993944,0.0 -87.560718,38.992023,0.0 -87.561363,38.989898,0.0 -87.564124,38.98896700000001,0.0 -87.566165,38.988844,0.0 -87.56686,38.988929,0.0 -87.573907,38.99105600000001,0.0 -87.57501,38.990967000000005,0.0 -87.57846,38.98880799999999,0.0 -87.575546,38.986116,0.0 -87.570479,38.984456,0.0 -87.54983,38.978772,0.0 -87.548009,38.97813599999999,0.0 -87.540541,38.97497499999999,0.0 -87.53958546140831,38.974676361769696,0.0 -87.53889,38.97445900000001,0.0 -87.531904,38.97305,0.0 -87.529959,38.971318,0.0 -87.528326,38.969435000000004,0.0 -87.523559,38.961717,0.0 -87.518984,38.958955,0.0 -87.514588,38.956605,0.0 -87.513163,38.954256,0.0 -87.512977,38.953577,0.0 -87.51314,38.95071600000001,0.0 -87.51335900000001,38.94995300000001,0.0 -87.51427,38.948199,0.0 -87.51575,38.946367,0.0 -87.51985,38.942184,0.0 -87.520549,38.940875999999996,0.0 -87.520874,38.93902,0.0 -87.517371,38.933645,0.0 -87.517186,38.93296900000001,0.0 -87.517346,38.930476,0.0 -87.517579,38.92969,0.0 -87.51918,38.926673,0.0 -87.51824600000002,38.92435,0.0 -87.519602,38.921778,0.0 -87.522966,38.921029,0.0 -87.52658,38.920856,0.0 -87.528063,38.918883,0.0 -87.527099,38.916076,0.0 -87.526878,38.913694,0.0 -87.52708400000002,38.910643,0.0 -87.5268,38.907219,0.0 -87.523857,38.906130999999995,0.0 -87.52164,38.906017000000006,0.0 -87.518728,38.906359,0.0 -87.517217,38.905265,0.0 -87.519665,38.902422,0.0 -87.520409,38.901558,0.0 -87.53297800000001,38.902022,0.0 -87.536335,38.897419,0.0 -87.53958546140831,38.896491072495394,0.0 -87.539957,38.89638500000001,0.0 -87.543513,38.89567300000001,0.0 -87.545736,38.892413000000005,0.0 -87.54475600000002,38.890283,0.0 -87.54324500000001,38.888471,0.0 -87.53958546140831,38.885443097115825,0.0 -87.53757200000001,38.883777,0.0 -87.535793,38.880284,0.0 -87.536918,38.87759299999999,0.0 -87.53958546140831,38.87714552585954,0.0 -87.54208000000001,38.876727,0.0 -87.547216,38.876291,0.0 -87.549029,38.873776,0.0 -87.546405,38.870671,0.0 -87.543087,38.867242,0.0 -87.544236,38.864986,0.0 -87.546921,38.864321000000004,0.0 -87.55244,38.86482600000001,0.0 -87.554169,38.862365,0.0 -87.550365,38.858909,0.0 -87.542509,38.856144,0.0 -87.53958546140831,38.855190077923844,0.0 -87.528322,38.851514,0.0 -87.52646,38.847702,0.0 -87.527241,38.844301,0.0 -87.52688,38.839011000000006,0.0 -87.525175,38.835085,0.0 -87.522768,38.830359,0.0 -87.522594,38.829699,0.0 -87.522572,38.826615,0.0 -87.522825,38.82580300000001,0.0 -87.523561,38.824634999999994,0.0 -87.525118,38.822755,0.0 -87.527107,38.820818,0.0 -87.527083,38.817595,0.0 -87.522789,38.813408,0.0 -87.520998,38.811443,0.0 -87.517602,38.806757,0.0 -87.512264,38.800557,0.0 -87.507664,38.795894000000004,0.0 -87.505096,38.79364,0.0 -87.501682,38.790997,0.0 -87.499592,38.788918,0.0 -87.497367,38.785509,0.0 -87.496422,38.782259,0.0 -87.496585,38.779751,0.0 -87.497611,38.77645699999999,0.0 -87.501083,38.774873,0.0 -87.502885,38.774394,0.0 -87.509311,38.77336999999999,0.0 -87.512422,38.773123,0.0 -87.514343,38.77191,0.0 -87.515452,38.769955,0.0 -87.513087,38.767752,0.0 -87.510461,38.767237,0.0 -87.502061,38.768875,0.0 -87.498371,38.768102,0.0 -87.497914,38.76626300000001,0.0 -87.498081,38.764128,0.0 -87.499288,38.759537,0.0 -87.504406,38.750012,0.0 -87.50384,38.748599,0.0 -87.502225,38.746688,0.0 -87.49788200000002,38.743782,0.0 -87.497104,38.742135,0.0 -87.497463,38.740018,0.0 -87.499065,38.738217,0.0 -87.502712,38.736969,0.0 -87.506807,38.733886,0.0 -87.50757,38.72985,0.0 -87.50880200000002,38.725899,0.0 -87.509702,38.724423,0.0 -87.51651400000002,38.71677300000001,0.0 -87.517518,38.715217,0.0 -87.51859600000002,38.712636,0.0 -87.519616,38.70785,0.0 -87.519848,38.702211,0.0 -87.520222,38.698606,0.0 -87.520479,38.697781000000006,0.0 -87.522554,38.693788000000005,0.0 -87.523614,38.692189,0.0 -87.52574,38.689552,0.0 -87.527818,38.687439,0.0 -87.531813,38.683996,0.0 -87.535553,38.681434,0.0 -87.538076,38.680004,0.0 -87.53958546140831,38.67932607157144,0.0 -87.541182,38.678609,0.0 -87.542918,38.67800600000001,0.0 -87.549227,38.676515,0.0 -87.567979,38.674029,0.0 -87.579979,38.672230000000006,0.0 -87.581381,38.671846,0.0 -87.590902,38.668054000000005,0.0 -87.593223,38.666886999999996,0.0 -87.59979,38.662896,0.0 -87.602385,38.65886700000001,0.0 -87.602805,38.657824,0.0 -87.603536,38.6533,0.0 -87.604702,38.649532,0.0 -87.605467,38.648153,0.0 -87.608313,38.644528,0.0 -87.612961,38.643591,0.0 -87.61460400000001,38.643052,0.0 -87.618559,38.64125099999999,0.0 -87.61992700000002,38.639553,0.0 -87.62058000000002,38.638276,0.0 -87.621075,38.635982,0.0 -87.619814,38.632994,0.0 -87.61736866662329,38.62881457050724,0.0 -87.615226,38.625152,0.0 -87.61591,38.622942,0.0 -87.622776,38.618429,0.0 -87.622754,38.615848,0.0 -87.621816,38.612942,0.0 -87.622515,38.611637,0.0 -87.62508,38.60967,0.0 -87.627304,38.607706,0.0 -87.627695,38.606705,0.0 -87.627664,38.60318999999999,0.0 -87.62638,38.60021,0.0 -87.623957,38.596636,0.0 -87.61948,38.59549,0.0 -87.611973,38.594117,0.0 -87.611559,38.592301,0.0 -87.61169,38.59119900000001,0.0 -87.61271,38.588817,0.0 -87.617057,38.58740100000001,0.0 -87.62166,38.586472,0.0 -87.625302,38.58671,0.0 -87.627007,38.58729,0.0 -87.632357,38.590638,0.0 -87.634627,38.591719,0.0 -87.636413,38.592233,0.0 -87.639276,38.591719,0.0 -87.641303,38.588664,0.0 -87.63873,38.57645,0.0 -87.639805,38.574108,0.0 -87.64449000000002,38.571894,0.0 -87.649077,38.57013400000001,0.0 -87.652733,38.566148,0.0 -87.652327,38.562778,0.0 -87.65038400000002,38.558471,0.0 -87.650942,38.55712599999999,0.0 -87.652861,38.554296,0.0 -87.663149,38.551108,0.0 -87.668053,38.546617000000005,0.0 -87.669109,38.545052,0.0 -87.66957,38.54251099999999,0.0 -87.669455,38.54198400000001,0.0 -87.667817,38.539332,0.0 -87.664241,38.534801,0.0 -87.663264,38.533286,0.0 -87.660205,38.526679,0.0 -87.657377,38.522123,0.0 -87.64748900000001,38.515332,0.0 -87.645635,38.511881,0.0 -87.648587,38.505414,0.0 -87.65377000000001,38.50276,0.0 -87.65944,38.501239,0.0 -87.663655,38.502591,0.0 -87.66620100000002,38.504039,0.0 -87.668132,38.505614,0.0 -87.670436,38.506774,0.0 -87.671355,38.506949,0.0 -87.673317,38.50635799999999,0.0 -87.676231,38.503187,0.0 -87.677824,38.500685,0.0 -87.679789,38.498069,0.0 -87.681936,38.495927,0.0 -87.689637,38.48978399999999,0.0 -87.706644,38.48204799999999,0.0 -87.708469,38.481368,0.0 -87.714624,38.479773,0.0 -87.71995,38.479576,0.0 -87.725838,38.47988200000001,0.0 -87.731042,38.480396,0.0 -87.736865,38.479496,0.0 -87.739812,38.478664,0.0 -87.741899,38.477734,0.0 -87.747015,38.47441799999999,0.0 -87.749454,38.472584000000005,0.0 -87.753744,38.466903,0.0 -87.755956,38.462806,0.0 -87.757063,38.459766,0.0 -87.75566200000002,38.45618999999999,0.0 -87.75304,38.455034,0.0 -87.751878,38.454781,0.0 -87.745915,38.454798999999994,0.0 -87.740734,38.454206,0.0 -87.734444,38.452385,0.0 -87.732036,38.449807,0.0 -87.731364,38.44855,0.0 -87.730991,38.445834,0.0 -87.73107,38.445369,0.0 -87.732838,38.441628,0.0 -87.73626,38.439667,0.0 -87.738347,38.438774,0.0 -87.742095,38.43510500000001,0.0 -87.74301600000001,38.433629,0.0 -87.743542,38.429935,0.0 -87.743035,38.42400399999999,0.0 -87.743628,38.41832500000001,0.0 -87.745279,38.41191700000001,0.0 -87.747463,38.407058,0.0 -87.748646,38.405378000000006,0.0 -87.754519,38.39911,0.0 -87.769247,38.38144700000001,0.0 -87.771208,38.379368,0.0 -87.780171,38.370851,0.0 -87.790974,38.366704000000006,0.0 -87.792472,38.366257000000004,0.0 -87.80216,38.364197,0.0 -87.802927,38.363719,0.0 -87.80293100000002,38.36371599999999,0.0 -87.808259,38.360394,0.0 -87.812972,38.355405,0.0 -87.81637,38.35103300000001,0.0 -87.821057,38.347934,0.0 -87.824609,38.342905,0.0 -87.82541800000001,38.341478,0.0 -87.830799,38.328942,0.0 -87.832016,38.324802999999996,0.0 -87.833023,38.318558,0.0 -87.832977,38.31455900000001,0.0 -87.831543,38.309109,0.0 -87.83126500000002,38.303802,0.0 -87.832026,38.2956,0.0 -87.83230900000001,38.294729000000004,0.0 -87.834496,38.29045299999999,0.0 -87.83581200000002,38.286604,0.0 -87.836477,38.285452,0.0 -87.839029,38.28222999999999,0.0 -87.843235,38.277954,0.0 -87.846793,38.276147,0.0 -87.848262,38.275706,0.0 -87.851718,38.275388,0.0 -87.857323,38.2757,0.0 -87.865056,38.283975,0.0 -87.86572,38.285221,0.0 -87.86616,38.28926,0.0 -87.865604,38.29464000000001,0.0 -87.865184,38.29568600000001,0.0 -87.863346,38.29831999999999,0.0 -87.862615,38.299682999999995,0.0 -87.861354,38.303262,0.0 -87.862151,38.307245,0.0 -87.863037,38.30867,0.0 -87.866201,38.311691999999994,0.0 -87.870683,38.311994,0.0 -87.871271,38.31192500000001,0.0 -87.873435,38.311267,0.0 -87.875761,38.310044,0.0 -87.877979,38.308381,0.0 -87.880171,38.30529,0.0 -87.88092,38.303912000000004,0.0 -87.883809,38.295991,0.0 -87.88628500000002,38.287997,0.0 -87.887611,38.286249,0.0 -87.890181,38.284054,0.0 -87.893991,38.281789,0.0 -87.897847,38.279223,0.0 -87.905054,38.271204000000004,0.0 -87.907522,38.269715,0.0 -87.910198,38.268484,0.0 -87.91112,38.268314000000004,0.0 -87.915397,38.268281,0.0 -87.918268,38.271539,0.0 -87.919233,38.273232,0.0 -87.919309,38.273656,0.0 -87.918823,38.275957,0.0 -87.918388,38.27703,0.0 -87.914357,38.283596,0.0 -87.908678,38.291788,0.0 -87.909441,38.29464900000001,0.0 -87.911213,38.297515,0.0 -87.916075,38.299004,0.0 -87.91691600000001,38.29912999999999,0.0 -87.91982300000001,38.299091,0.0 -87.924159,38.298598,0.0 -87.925329,38.298327,0.0 -87.929172,38.296987,0.0 -87.936044,38.293726,0.0 -87.938069,38.291553,0.0 -87.938891,38.29013,0.0 -87.940026,38.28552799999999,0.0 -87.941318,38.28277200000001,0.0 -87.942656,38.279248,0.0 -87.947114,38.27753799999999,0.0 -87.950344,38.275772,0.0 -87.951627,38.272226,0.0 -87.950938,38.26861999999999,0.0 -87.946908,38.266357,0.0 -87.943833,38.263579,0.0 -87.943566,38.25994,0.0 -87.944202,38.256951,0.0 -87.94766,38.254862,0.0 -87.949761,38.253907,0.0 -87.954137,38.252573,0.0 -87.95750900000002,38.248893,0.0 -87.958066,38.248098999999996,0.0 -87.958381,38.24719,0.0 -87.958494,38.240539,0.0 -87.958754,38.239702,0.0 -87.960134,38.237275999999994,0.0 -87.963261,38.23668,0.0 -87.967354,38.236658,0.0 -87.970533,38.238786,0.0 -87.970655,38.24204399999999,0.0 -87.971804,38.24520499999999,0.0 -87.972669,38.246630999999994,0.0 -87.976016,38.250562,0.0 -87.978138,38.252654,0.0 -87.981588,38.25557500000001,0.0 -87.984127,38.257254,0.0 -87.987649,38.257022,0.0 -87.988512,38.255072,0.0 -87.982586,38.247916,0.0 -87.98188,38.246618999999995,0.0 -87.980599,38.242161,0.0 -87.979937,38.238022,0.0 -87.981121,38.235242,0.0 -87.983667,38.230524,0.0 -87.984409,38.228469,0.0 -87.985062,38.22666,0.0 -87.985819,38.222439,0.0 -87.984931,38.212952,0.0 -87.983337,38.208358999999994,0.0 -87.981198,38.20413200000001,0.0 -87.980137,38.202564,0.0 -87.977772,38.199774,0.0 -87.975634,38.197675999999994,0.0 -87.960284,38.184773,0.0 -87.952262,38.180996,0.0 -87.94019,38.174728,0.0 -87.937675,38.171437,0.0 -87.935801,38.168036,0.0 -87.935497,38.16716799999999,0.0 -87.934831,38.162686,0.0 -87.934779,38.15954500000001,0.0 -87.933089,38.15694299999999,0.0 -87.928642,38.157844,0.0 -87.925529,38.160522,0.0 -87.926222,38.164652,0.0 -87.925681,38.169061,0.0 -87.925132,38.170244000000004,0.0 -87.923152,38.17271499999999,0.0 -87.918436,38.172913,0.0 -87.917435,38.172728000000006,0.0 -87.913335,38.171043,0.0 -87.911985,38.16859099999999,0.0 -87.911947,38.16549200000001,0.0 -87.913935,38.158844,0.0 -87.916812,38.156484,0.0 -87.926964,38.151375,0.0 -87.92735500000002,38.148871,0.0 -87.926285,38.14633,0.0 -87.926861,38.143257,0.0 -87.930358,38.140708,0.0 -87.933562,38.139449,0.0 -87.937503,38.136684,0.0 -87.939066,38.13507,0.0 -87.944641,38.127618,0.0 -87.946279,38.127203,0.0 -87.947716,38.127434,0.0 -87.95057,38.128864,0.0 -87.953433,38.130947,0.0 -87.955395,38.131657000000004,0.0 -87.956527,38.131892,0.0 -87.961624,38.132160000000006,0.0 -87.965457,38.131288,0.0 -87.969931,38.129556,0.0 -87.972315,38.126754,0.0 -87.973248,38.125234,0.0 -87.974617,38.121581,0.0 -87.974664,38.117539,0.0 -87.974401,38.113654999999994,0.0 -87.975923,38.10997,0.0 -87.980028,38.10822799999999,0.0 -87.981287,38.10790699999999,0.0 -87.987681,38.107366,0.0 -87.99427,38.107845,0.0 -88.000321,38.10717199999999,0.0 -88.005741,38.10598,0.0 -88.010604,38.104018,0.0 -88.013866,38.10036600000001,0.0 -88.014771,38.098869,0.0 -88.015792,38.095632,0.0 -88.015381,38.091794,0.0 -88.015093,38.09095,0.0 -88.01254,38.086381,0.0 -88.008818,38.084262,0.0 -88.00759,38.083966,0.0 -88.001146,38.084653,0.0 -87.992262,38.087366,0.0 -87.970738,38.094917,0.0 -87.968338,38.096244,0.0 -87.96727,38.097053,0.0 -87.963865,38.099125,0.0 -87.961801,38.099038,0.0 -87.960212,38.09740500000001,0.0 -87.959445,38.094011,0.0 -87.956809,38.08533,0.0 -87.96029300000001,38.079261,0.0 -87.965278,38.071323,0.0 -87.969371,38.065793,0.0 -87.976928,38.06187,0.0 -87.98984,38.05480300000001,0.0 -87.99178200000001,38.054001,0.0 -87.999665,38.051797,0.0 -88.006837,38.051451,0.0 -88.021778,38.051858,0.0 -88.031127,38.051604999999995,0.0 -88.031945,38.051472,0.0 -88.038302,38.049565,0.0 -88.041171,38.047007,0.0 -88.041978,38.045618,0.0 -88.042112,38.041721,0.0 -88.041493,38.037907,0.0 -88.040565,38.036462,0.0 -88.037397,38.03363499999999,0.0 -88.03266,38.032413,0.0 -88.025749,38.032313,0.0 -88.025011,38.032423,0.0 -88.017938,38.03463299999999,0.0 -88.014608,38.034319999999994,0.0 -88.012649,38.03352400000001,0.0 -88.009518,38.03137099999999,0.0 -88.008728,38.027433,0.0 -88.013653,38.025205,0.0 -88.017578,38.02389500000001,0.0 -88.023976,38.015187,0.0 -88.02465,38.01387,0.0 -88.026372,38.008154,0.0 -88.02531800000001,38.002732,0.0 -88.01820600000002,37.980891,0.0 -88.015207,37.966529,0.0 -88.01600300000001,37.96387,0.0 -88.01748366280816,37.961819419990135,0.0 -88.017793,37.961391000000006,0.0 -88.02055000000001,37.96001400000001,0.0 -88.022306,37.959369,0.0 -88.025858,37.958532000000005,0.0 -88.031439,37.958414999999995,0.0 -88.035631,37.957294,0.0 -88.037056,37.954665999999996,0.0 -88.037378,37.95207700000001,0.0 -88.036135,37.943703,0.0 -88.035965,37.942556,0.0 -88.032118,37.934585,0.0 -88.031282,37.931153,0.0 -88.031233,37.927607,0.0 -88.035688,37.925436,0.0 -88.040678,37.924069,0.0 -88.045772,37.925661,0.0 -88.04785,37.926535,0.0 -88.050992,37.928198,0.0 -88.056517,37.933599,0.0 -88.060207,37.933565,0.0 -88.061209,37.93336200000001,0.0 -88.065109,37.931804,0.0 -88.06744,37.928684000000004,0.0 -88.068122,37.926959,0.0 -88.066931,37.923663000000005,0.0 -88.065346,37.920625,0.0 -88.060271,37.91809500000001,0.0 -88.058432,37.917428,0.0 -88.050542,37.915712,0.0 -88.032329,37.914484,0.0 -88.022879,37.91418500000001,0.0 -88.020193,37.911412,0.0 -88.019494,37.910334,0.0 -88.019227,37.909525,0.0 -88.019176,37.905813,0.0 -88.018968,37.905097,0.0 -88.014251,37.89679300000001,0.0 -88.014094,37.896174,0.0 -88.014231,37.893910000000005,0.0 -88.014566,37.892964,0.0 -88.016472,37.89001699999999,0.0 -88.020743,37.888368,0.0 -88.026448,37.890027,0.0 -88.032715,37.89235899999999,0.0 -88.033741,37.892553,0.0 -88.040587,37.892492,0.0 -88.050519,37.891695,0.0 -88.05639,37.891727,0.0 -88.064812,37.89385,0.0 -88.073279,37.896974,0.0 -88.075732,37.89827700000001,0.0 -88.0807,37.90165700000001,0.0 -88.083368,37.903251000000004,0.0 -88.087523,37.905391,0.0 -88.08884,37.905726,0.0 -88.093922,37.905679,0.0 -88.095098,37.905393000000004,0.0 -88.098327,37.903847,0.0 -88.098056,37.899444,0.0 -88.097756,37.898587,0.0 -88.096066,37.895948000000004,0.0 -88.094577,37.894133,0.0 -88.081504,37.88106200000001,0.0 -88.079931,37.879203,0.0 -88.07673900000002,37.874428,0.0 -88.066033,37.854662,0.0 -88.064332,37.852758,0.0 -88.061551,37.85051899999999,0.0 -88.057086,37.847927,0.0 -88.055089,37.847116,0.0 -88.045651,37.844909,0.0 -88.038541,37.842903,0.0 -88.032055,37.840753,0.0 -88.030016,37.838806999999996,0.0 -88.02857,37.837016000000006,0.0 -88.027682,37.835454,0.0 -88.027433,37.834669000000005,0.0 -88.027202,37.831194,0.0 -88.02744,37.83046,0.0 -88.029861,37.82699,0.0 -88.033636,37.825112,0.0 -88.039272,37.82302,0.0 -88.040593,37.822668,0.0 -88.046783,37.82166,0.0 -88.053583,37.822006,0.0 -88.062017,37.82365,0.0 -88.06614,37.82477,0.0 -88.068125,37.825563,0.0 -88.073978,37.828551,0.0 -88.07643400000002,37.829649,0.0 -88.077834,37.830021,0.0 -88.081042,37.830276,0.0 -88.083818,37.829861,0.0 -88.087289,37.828325,0.0 -88.090199,37.824473000000005,0.0 -88.091302,37.82244099999999,0.0 -88.09144,37.821821,0.0 -88.091133,37.819202,0.0 -88.090502,37.817069,0.0 -88.089233,37.815402,0.0 -88.077002,37.80525000000001,0.0 -88.065877,37.800695,0.0 -88.058793,37.801875,0.0 -88.057055,37.802519,0.0 -88.053589,37.804514,0.0 -88.051505,37.805462999999996,0.0 -88.048253,37.806552,0.0 -88.039586,37.808258,0.0 -88.033173,37.807613,0.0 -88.030973,37.80578299999999,0.0 -88.029716,37.804119,0.0 -88.028961,37.801691000000005,0.0 -88.026495,37.800718,0.0 -88.023695,37.800482,0.0 -88.016225,37.80178,0.0 -88.003894,37.799326,0.0 -88.00218,37.798753000000005,0.0 -87.996735,37.796248,0.0 -87.986999,37.792219,0.0 -87.976128,37.787362,0.0 -87.968703,37.780513000000006,0.0 -87.961337,37.774075,0.0 -87.955211,37.772287,0.0 -87.954329,37.772147,0.0 -87.949967,37.772038,0.0 -87.948743,37.772352,0.0 -87.944648,37.774568,0.0 -87.942137,37.77777,0.0 -87.94121,37.779292999999996,0.0 -87.937006,37.789005,0.0 -87.931632,37.798131,0.0 -87.923122,37.800677,0.0 -87.917087,37.802785,0.0 -87.915008,37.803722,0.0 -87.91111400000001,37.805873,0.0 -87.905952,37.810261,0.0 -87.905424,37.82018,0.0 -87.906609,37.828034,0.0 -87.908723,37.836048,0.0 -87.912196,37.844354,0.0 -87.913088,37.845808,0.0 -87.917546,37.851311,0.0 -87.923243,37.855385,0.0 -87.930751,37.86204000000001,0.0 -87.932816,37.86411700000001,0.0 -87.93515900000001,37.866844,0.0 -87.93753800000002,37.87024100000001,0.0 -87.940857,37.877219,0.0 -87.940995,37.877804,0.0 -87.940946,37.88243500000001,0.0 -87.939134,37.887096,0.0 -87.938364,37.888495999999996,0.0 -87.935331,37.89277,0.0 -87.933705,37.894709000000006,0.0 -87.926664,37.902013,0.0 -87.921246,37.907793,0.0 -87.918212,37.911027,0.0 -87.907354,37.922605,0.0 -87.903552,37.924655,0.0 -87.901719,37.925364,0.0 -87.897451,37.926314,0.0 -87.89312900000002,37.92682899999999,0.0 -87.886584,37.92622099999999,0.0 -87.882506,37.925177999999995,0.0 -87.880712,37.924548,0.0 -87.876997,37.92288700000001,0.0 -87.874401,37.921381,0.0 -87.870229,37.91840799999999,0.0 -87.86751,37.915634000000004,0.0 -87.863386,37.910591,0.0 -87.860393,37.90503,0.0 -87.857189,37.900926,0.0 -87.855112,37.898847,0.0 -87.847549,37.892688,0.0 -87.84523,37.890613,0.0 -87.843935,37.888911,0.0 -87.842244,37.884756,0.0 -87.841413,37.883346,0.0 -87.838059,37.879004,0.0 -87.83157000000001,37.876485,0.0 -87.830306,37.876185,0.0 -87.814833,37.874966,0.0 -87.80591800000002,37.874873,0.0 -87.794662,37.875139,0.0 -87.78731,37.876599999999996,0.0 -87.785706,37.877126,0.0 -87.779544,37.879905,0.0 -87.777098,37.881275,0.0 -87.770979,37.885246,0.0 -87.762277,37.889997,0.0 -87.760287,37.890838,0.0 -87.754847,37.892646000000006,0.0 -87.753957,37.892802,0.0 -87.745324,37.89298500000001,0.0 -87.735281,37.893466,0.0 -87.728661,37.89247600000001,0.0 -87.72366,37.892103,0.0 -87.71655,37.892597,0.0 -87.708511,37.894342,0.0 -87.702774,37.896051,0.0 -87.692776,37.900221,0.0 -87.688442,37.901650000000004,0.0 -87.685367,37.902164,0.0 -87.675712,37.900378,0.0 -87.673864,37.899688,0.0 -87.670939,37.898051,0.0 -87.668523,37.896057000000006,0.0 -87.666917,37.894188,0.0 -87.665476,37.891160000000006,0.0 -87.664588,37.888385,0.0 -87.663895,37.882674,0.0 -87.664935,37.879102,0.0 -87.665508,37.877884,0.0 -87.667265,37.875185,0.0 -87.668642,37.873382,0.0 -87.6775,37.86332,0.0 -87.678732,37.861602,0.0 -87.68074,37.85796599999999,0.0 -87.68112,37.856962,0.0 -87.682182,37.85160599999999,0.0 -87.681909,37.847584,0.0 -87.679604,37.838246,0.0 -87.679213,37.837254,0.0 -87.676404,37.832066,0.0 -87.671654,37.82901400000001,0.0 -87.669557,37.82809,0.0 -87.66266,37.826509,0.0 -87.653961,37.82544000000001,0.0 -87.646309,37.82578,0.0 -87.63526700000001,37.826857,0.0 -87.627195,37.828395,0.0 -87.619355,37.830472,0.0 -87.61221500000002,37.833236,0.0 -87.603601,37.841121,0.0 -87.600937,37.843875,0.0 -87.594846,37.85109,0.0 -87.590212,37.857533,0.0 -87.589522,37.858856,0.0 -87.588271,37.862953,0.0 -87.588342,37.868318,0.0 -87.58865,37.873801,0.0 -87.591172,37.884168,0.0 -87.591459,37.887125,0.0 -87.592174,37.888418,0.0 -87.594527,37.890726,0.0 -87.60394600000001,37.897078,0.0 -87.612196,37.901961,0.0 -87.61499500000001,37.903801,0.0 -87.618748,37.906574,0.0 -87.622991,37.912328,0.0 -87.626778,37.919579,0.0 -87.626976,37.920288,0.0 -87.627595,37.927388,0.0 -87.62738900000001,37.928125,0.0 -87.625425,37.931174,0.0 -87.623912,37.93304500000001,0.0 -87.619897,37.93717300000001,0.0 -87.61004900000002,37.945029,0.0 -87.608029,37.947125,0.0 -87.606714,37.94897499999999,0.0 -87.606189,37.950136,0.0 -87.60541954817903,37.95418235721226,0.0 -87.603997,37.961662,0.0 -87.603806,37.965894,0.0 -87.603491,37.96680400000001,0.0 -87.599516,37.972941999999996,0.0 -87.59510800000001,37.974335,0.0 -87.58977,37.975021000000005,0.0 -87.586518,37.974591,0.0 -87.585113,37.974214,0.0 -87.582245,37.973055,0.0 -87.579517,37.97139,0.0 -87.577843,37.969455,0.0 -87.575367,37.964336,0.0 -87.574336,37.96041100000001,0.0 -87.574625,37.955631000000004,0.0 -87.5741434105432,37.953543943319275,0.0 -87.5734,37.950322,0.0 -87.571299,37.944967000000005,0.0 -87.570467,37.943552,0.0 -87.566358,37.93821200000001,0.0 -87.561584,37.932459,0.0 -87.55383,37.92686200000001,0.0 -87.54982900000002,37.92425000000001,0.0 -87.54731900000002,37.922857,0.0 -87.53958546140831,37.919389797223644,0.0 -87.539548,37.919373,0.0 -87.523637,37.913088,0.0 -87.521377,37.91201,0.0 -87.513186,37.907450000000004,0.0 -87.511134,37.90658,0.0 -87.509382,37.906078,0.0 -87.505517,37.907158,0.0 -87.503556,37.907969,0.0 -87.499132,37.910391999999995,0.0 -87.496509,37.912003000000006,0.0 -87.473839,37.92719499999999,0.0 -87.464251,37.933179,0.0 -87.452462,37.939552,0.0 -87.450372,37.940481,0.0 -87.446148,37.94199299999999,0.0 -87.444914,37.942292,0.0 -87.434871,37.94355600000001,0.0 -87.425187,37.944027,0.0 -87.413549,37.943536,0.0 -87.405926,37.941476,0.0 -87.395835,37.938102,0.0 -87.384488,37.93520300000001,0.0 -87.382656,37.93453,0.0 -87.379491,37.933041,0.0 -87.371809,37.92889,0.0 -87.364019,37.922027,0.0 -87.360453,37.920238000000005,0.0 -87.357558,37.919008,0.0 -87.355135,37.91772100000001,0.0 -87.353189,37.916459,0.0 -87.347028,37.912534,0.0 -87.343833,37.910498,0.0 -87.341618,37.90945399999999,0.0 -87.337401,37.90818800000001,0.0 -87.3316,37.907368000000005,0.0 -87.31995300000001,37.904605,0.0 -87.318344,37.904099,0.0 -87.31263000000001,37.901785999999994,0.0 -87.297434,37.894647000000006,0.0 -87.285425,37.888206,0.0 -87.282735,37.88653,0.0 -87.253707,37.866295,0.0 -87.25106,37.864683,0.0 -87.231273,37.854172000000005,0.0 -87.219994,37.848668,0.0 -87.218042,37.847888,0.0 -87.208733,37.84494,0.0 -87.20757,37.844684,0.0 -87.183371,37.841699,0.0 -87.166473,37.841041,0.0 -87.164909,37.840537000000005,0.0 -87.160578,37.83788899999999,0.0 -87.145049,37.818708,0.0 -87.143972,37.817104,0.0 -87.138853,37.807520999999994,0.0 -87.135689,37.798515,0.0 -87.131416,37.788409,0.0 -87.124055,37.784122,0.0 -87.122272,37.783465,0.0 -87.113006,37.782044,0.0 -87.10056100000001,37.784156,0.0 -87.099125,37.784562,0.0 -87.088149,37.788909,0.0 -87.085746,37.7902,0.0 -87.076473,37.796491,0.0 -87.06984,37.804056,0.0 -87.068475,37.805838,0.0 -87.064196,37.812375,0.0 -87.063505,37.813692,0.0 -87.059075,37.824915999999995,0.0 -87.055029,37.835817,0.0 -87.049827,37.85437900000001,0.0 -87.045723,37.865346,0.0 -87.04306,37.874269,0.0 -87.044041,37.885135,0.0 -87.045381,37.89088499999999,0.0 -87.045242,37.891478000000006,0.0 -87.04138300000001,37.896917,0.0 -87.037755,37.900991999999995,0.0 -87.026328,37.909562,0.0 -87.023569,37.911375,0.0 -87.013965,37.916672,0.0 -87.003663,37.921386,0.0 -87.001763,37.922121999999995,0.0 -86.973788,37.930943,0.0 -86.972742,37.93115000000001,0.0 -86.960709,37.93217,0.0 -86.946367,37.932907,0.0 -86.926302,37.934942,0.0 -86.925106,37.935216,0.0 -86.914545,37.939063,0.0 -86.912428,37.940003,0.0 -86.905461,37.943646,0.0 -86.897122,37.950798,0.0 -86.891036,37.9567,0.0 -86.885307,37.962635,0.0 -86.88285000000002,37.964876,0.0 -86.873228,37.972584,0.0 -86.864485,37.98051600000001,0.0 -86.859323,37.983893,0.0 -86.857134,37.985143,0.0 -86.850435,37.988373,0.0 -86.84849,37.989145,0.0 -86.84579,37.989987000000006,0.0 -86.840986,37.99148399999999,0.0 -86.837562,37.992552,0.0 -86.826761,37.99616100000001,0.0 -86.825554,37.996438,0.0 -86.81761200000001,37.997412000000004,0.0 -86.816982,37.99733499999999,0.0 -86.809493,37.994571,0.0 -86.807367,37.993615000000005,0.0 -86.799894,37.989655,0.0 -86.793876,37.983934,0.0 -86.792578,37.982201,0.0 -86.785438,37.966367,0.0 -86.775259,37.948469,0.0 -86.76793,37.936134,0.0 -86.760134,37.924938,0.0 -86.751778,37.913585,0.0 -86.750139,37.911658,0.0 -86.737968,37.899043,0.0 -86.730899,37.894275,0.0 -86.729032,37.893528,0.0 -86.722071,37.892677,0.0 -86.714164,37.894132,0.0 -86.712396,37.894763,0.0 -86.705633,37.898353,0.0 -86.696493,37.90380400000001,0.0 -86.688521,37.907839,0.0 -86.685983,37.910554000000005,0.0 -86.683449,37.91245,0.0 -86.678381,37.913827999999995,0.0 -86.658861,37.91165300000001,0.0 -86.650423,37.909662000000004,0.0 -86.645556,37.903785,0.0 -86.646409,37.894016,0.0 -86.646619,37.893280999999995,0.0 -86.652379,37.881407,0.0 -86.660327,37.866060999999995,0.0 -86.662632,37.85884,0.0 -86.662243,37.850759999999994,0.0 -86.661934,37.84986299999999,0.0 -86.658274,37.844151999999994,0.0 -86.652172,37.841774,0.0 -86.651317,37.841629,0.0 -86.639467,37.842242,0.0 -86.63843,37.842445,0.0 -86.628951,37.845763,0.0 -86.619266,37.850135,0.0 -86.613281,37.853016999999994,0.0 -86.60597,37.857374,0.0 -86.601417,37.86198400000001,0.0 -86.599973,37.863793,0.0 -86.5974,37.868012,0.0 -86.597238,37.86865,0.0 -86.597941,37.875593,0.0 -86.598955,37.891304,0.0 -86.59931,37.901655000000005,0.0 -86.596185,37.911958,0.0 -86.595305,37.91328099999999,0.0 -86.589931,37.91858,0.0 -86.583932,37.921634,0.0 -86.58269,37.921938,0.0 -86.575221,37.921781,0.0 -86.566429,37.921277,0.0 -86.546372,37.917336000000006,0.0 -86.534878,37.917022,0.0 -86.523314,37.920038,0.0 -86.521523,37.920675,0.0 -86.515496,37.923390999999995,0.0 -86.512978,37.924799,0.0 -86.507385,37.928537,0.0 -86.506454,37.935808,0.0 -86.509034,37.942645,0.0 -86.510178,37.94429100000001,0.0 -86.51403,37.948099,0.0 -86.515796,37.95009,0.0 -86.519533,37.954993,0.0 -86.520524,37.956552,0.0 -86.524008,37.963397,0.0 -86.524184,37.964084,0.0 -86.524297,38.022068,0.0 -86.522651,38.029973,0.0 -86.522401,38.031178,0.0 -86.52057,38.036125,0.0 -86.519868,38.03747800000001,0.0 -86.51940500000002,38.038201,0.0 -86.516784,38.040980000000005,0.0 -86.513437,38.042319,0.0 -86.51222100000001,38.042652,0.0 -86.49692800000001,38.045061,0.0 -86.483186,38.045228,0.0 -86.470093,38.046049000000004,0.0 -86.458126,38.048309,0.0 -86.456334,38.048950000000005,0.0 -86.443749,38.055533,0.0 -86.440574,38.058144999999996,0.0 -86.438287,38.060312,0.0 -86.434144,38.064937,0.0 -86.43322,38.066414,0.0 -86.43002,38.075610000000005,0.0 -86.43089,38.08372500000001,0.0 -86.43782600000002,38.089444,0.0 -86.44765,38.09250899999999,0.0 -86.449531,38.09323800000001,0.0 -86.457411,38.096897,0.0 -86.462167,38.101819000000006,0.0 -86.463167,38.10337,0.0 -86.465032,38.109364,0.0 -86.464705,38.114914,0.0 -86.464282,38.115931,0.0 -86.460547,38.120761,0.0 -86.452728,38.125077,0.0 -86.45095700000002,38.125705999999994,0.0 -86.443958,38.126775,0.0 -86.437597,38.12635499999999,0.0 -86.436642,38.126179,0.0 -86.430325,38.124257,0.0 -86.428179,38.123261,0.0 -86.42141,38.118933,0.0 -86.416587,38.11555899999999,0.0 -86.406168,38.105872,0.0 -86.398288,38.10573800000001,0.0 -86.394808,38.109197,0.0 -86.393666,38.110789000000004,0.0 -86.391209,38.116277,0.0 -86.38623100000001,38.12429,0.0 -86.37648000000002,38.12911999999999,0.0 -86.375248,38.12941399999999,0.0 -86.368232,38.129266,0.0 -86.3574,38.128330999999996,0.0 -86.340827,38.128003,0.0 -86.333911,38.12950200000001,0.0 -86.33174,38.130503,0.0 -86.32596200000002,38.134576,0.0 -86.323113,38.138511,0.0 -86.322528,38.139707,0.0 -86.321072,38.145453,0.0 -86.321907,38.15000499999999,0.0 -86.322939,38.151559,0.0 -86.32775,38.155772,0.0 -86.339607,38.159064,0.0 -86.349896,38.160628,0.0 -86.358555,38.16165000000001,0.0 -86.36733900000002,38.163945,0.0 -86.373434,38.16631300000001,0.0 -86.374769,38.168948,0.0 -86.377467,38.177597,0.0 -86.377278,38.18342700000001,0.0 -86.375041,38.189521000000006,0.0 -86.37384,38.19117000000001,0.0 -86.369701,38.195019,0.0 -86.363201,38.197496,0.0 -86.357464,38.198449,0.0 -86.357453,38.19863300000001,0.0 -86.356902,38.207458,0.0 -86.340938,38.221609,0.0 -86.359791,38.242411,0.0 -86.31582600000002,38.282360000000004,0.0 -86.314667,38.28414200000001,0.0 -86.282635,38.355641,0.0 -86.230874,38.396858,0.0 -86.230644,38.397548,0.0 -86.262009,38.451185,0.0 -86.283742,38.557035,0.0 -86.283724,38.557105,0.0 -86.28406900000002,38.611458000000006,0.0 -86.307549,38.637041,0.0 -86.309824,38.732109,0.0 -86.310123,38.733097,0.0 -86.328327,38.761098,0.0 -86.338411,38.776944,0.0 -86.339592,38.874669,0.0 -86.362752,38.895371000000004,0.0 -86.363099,38.931301000000005,0.0 -86.424435,38.991292,0.0 -86.424457,38.991291999999994,0.0 -86.48083,38.991564,0.0 -86.537236,38.991808,0.0 -86.537237,38.991808,0.0 -86.682261,38.992478,0.0 -86.694131,39.015311,0.0 -86.701261,39.029569,0.0 -86.710211,39.036229,0.0 -86.710233,39.036259,0.0 -86.714758,39.042137,0.0 -86.719185,39.045258,0.0 -86.724637,39.05952799999999,0.0 -86.683211,39.114796,0.0 -86.682659,39.115997,0.0 -86.681272,39.17082700000001,0.0 -86.681307,39.170928,0.0 -86.71191,39.171687,0.0 -86.868453,39.200445,0.0 -86.998688,39.146939,0.0 -87.030913,39.16753,0.0 -87.032843,39.168173,0.0 -87.173907,39.170051,0.0 -87.175192,39.16947700000001,0.0 -87.184788,39.162806,0.0 -87.232432,39.18566700000001,0.0 -87.24097200000001,39.194481,0.0 -87.24067500000001,39.240679,0.0 -87.281037,39.25909,0.0 -87.37546,39.259179,0.0 -87.388586,39.273761,0.0 -87.403633,39.259084,0.0 -87.492408,39.259280000000004,0.0</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark>
<name>GREENFIELD</name>
<description><![CDATA[GREENFIELD    <br>       <br>   DISTRICT   3    <br>   DISTNAME   GREENFIELD    <br>   Created By   DOTRAH    <br>   Date Created   7/30/2014 4:02:07 PM    <br>   Edited By   DOTRAH    <br>   Date Edited   7/30/2014 4:02:07 PM    <br>   SHAPE   Polygon    <br>   GLOBALID   {FB5CB017-67D7-4660-93DF-E4C2B4501A13}    <br>   SHAPE_Length   627637.28897    <br>   SHAPE_Area   14099126700.370043]]></description>
<styleUrl>#poly-000000-3-0</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<tessellate>1</tessellate>
<coordinates>-84.81327771704376,39.865532313392976,0.0 -84.81063,40.004965,0.0 -84.810075,40.027539,0.0 -84.806037,40.191149,0.0 -84.803782,40.309903,0.0 -84.804001,40.351310000000005,0.0 -84.80434,40.415855,0.0 -84.802686,40.531091999999994,0.0 -84.802686,40.531093,0.0 -84.94013115373588,40.53212492670477,0.0 -84.951795,40.532205,0.0 -84.964225,40.541008,0.0 -84.97622,40.532551,0.0 -85.133234,40.533892,0.0 -85.149756,40.552687,0.0 -85.169505,40.53404,0.0 -85.295658,40.534206,0.0 -85.341489,40.534232,0.0 -85.341374,40.43523299999999,0.0 -85.370224,40.435923,0.0 -85.473006,40.43716499999999,0.0 -85.473324,40.406959,0.0 -85.539981,40.407399,0.0 -85.549324,40.422944,0.0 -85.559754,40.436812999999994,0.0 -85.657641,40.436799,0.0 -85.671982,40.42258,0.0 -85.689529,40.436657,0.0 -85.70798600000002,40.43632900000001,0.0 -85.735586,40.42212200000001,0.0 -85.744717,40.43547699999999,0.0 -85.811522,40.43501599999999,0.0 -85.824517,40.421642,0.0 -85.837644,40.434439,0.0 -85.862312,40.434698,0.0 -85.862842,40.464273,0.0 -85.825049,40.479164,0.0 -85.863142,40.494423,0.0 -85.863776,40.565493,0.0 -86.091572,40.563157,0.0 -86.12733,40.584824000000005,0.0 -86.164973,40.562578,0.0 -86.18984400000001,40.578853,0.0 -86.20549,40.562369,0.0 -86.374184,40.561346,0.0 -86.375664,40.513949,0.0 -86.394985,40.480228,0.0 -86.375326,40.47472900000001,0.0 -86.375535,40.431728,0.0 -86.30976,40.431343,0.0 -86.309239,40.417302,0.0 -86.309181,40.388146,0.0 -86.280756,40.388093,0.0 -86.280702,40.373837,0.0 -86.243116,40.373825,0.0 -86.242592,40.273638,0.0 -86.241629,40.180393,0.0 -86.21077,40.129962,0.0 -86.241579,40.11938,0.0 -86.241393,40.06668700000001,0.0 -86.285309,40.040949,0.0 -86.24122600000001,40.019371,0.0 -86.241035,39.96563499999999,0.0 -86.226044,39.929961000000006,0.0 -86.224463,39.926263999999996,0.0 -86.228285,39.923635,0.0 -86.261454,39.93932800000001,0.0 -86.26288400000001,39.939715,0.0 -86.353628,39.947316,0.0 -86.357638,39.938376999999996,0.0 -86.34463700000002,39.924299,0.0 -86.34415721944627,39.92378186895113,0.0 -86.326586,39.904836,0.0 -86.326118,39.903522,0.0 -86.325395,39.86626100000001,0.0 -86.328276,39.866161,0.0 -86.327697,39.844417,0.0 -86.279121,39.815545,0.0 -86.275245,39.80525,0.0 -86.279214,39.804601,0.0 -86.275155,39.801054,0.0 -86.28162,39.779365,0.0 -86.266626,39.76476300000001,0.0 -86.284279,39.756304,0.0 -86.264656,39.748358,0.0 -86.326435,39.717351,0.0 -86.35012,39.682852999999994,0.0 -86.350109,39.660998,0.0 -86.359041,39.631328,0.0 -86.36493,39.607393,0.0 -86.353901,39.607565,0.0 -86.319442,39.63233399999999,0.0 -86.20549,39.634299,0.0 -86.205489,39.634299,0.0 -86.190178,39.634513999999996,0.0 -86.15829,39.635106,0.0 -86.126647,39.635512,0.0 -86.074087,39.636565,0.0 -85.952272,39.638525,0.0 -85.95225,39.63852500000001,0.0 -85.952799,39.60948700000001,0.0 -85.952567,39.60948900000001,0.0 -85.952545,39.60948900000001,0.0 -85.951723,39.523051,0.0 -85.951354,39.523057,0.0 -85.950851,39.495251,0.0 -85.770689,39.35047900000001,0.0 -85.77059500000001,39.350402,0.0 -85.77039,39.350237,0.0 -85.631282,39.350021000000005,0.0 -85.630765,39.35002,0.0 -85.630764,39.35002,0.0 -85.630048,39.438398,0.0 -85.629268,39.438388999999994,0.0 -85.62956800000002,39.444008,0.0 -85.629527,39.447275,0.0 -85.629491,39.450082,0.0 -85.633567,39.454911,0.0 -85.629406,39.456979,0.0 -85.60795700000001,39.453237,0.0 -85.573193,39.453104,0.0 -85.573183,39.45227,0.0 -85.478787,39.452907,0.0 -85.297605,39.453352,0.0 -85.298202,39.498003,0.0 -85.298257,39.502251,0.0 -85.298595,39.525444,0.0 -85.252316,39.525690999999995,0.0 -85.252219,39.52569199999999,0.0 -85.19211,39.453894,0.0 -85.191935,39.453685,0.0 -85.18178,39.45099,0.0 -85.1636,39.526334000000006,0.0 -85.084206,39.52649000000001,0.0 -85.022968,39.526065,0.0 -85.022619,39.526062,0.0 -85.022907,39.524607,0.0 -85.022955,39.524365,0.0 -85.02295000000001,39.524365,0.0 -84.946976,39.52397899999999,0.0 -84.94013115373588,39.523903855973735,0.0 -84.815632,39.522467000000006,0.0 -84.815328,39.522463,0.0 -84.81477300000002,39.624846,0.0 -84.814577,39.68054599999999,0.0 -84.814063,39.726867,0.0 -84.813743,39.830566,0.0 -84.813699,39.833425,0.0 -84.813568,39.850211,0.0 -84.81327771704376,39.865532313392976,0.0</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark>
<name>SEYMOUR</name>
<description><![CDATA[SEYMOUR    <br>       <br>   DISTRICT   5    <br>   DISTNAME   SEYMOUR    <br>   Created By   DOTRAH    <br>   Date Created   7/30/2014 4:02:07 PM    <br>   Edited By   DOTRAH    <br>   Date Edited   7/30/2014 4:02:07 PM    <br>   SHAPE   Polygon    <br>   GLOBALID   {FB09AAD2-B4A2-4DF9-B788-EB37313D330A}    <br>   SHAPE_Length   736228.571801    <br>   SHAPE_Area   17582866814.992554]]></description>
<styleUrl>#poly-000000-3-0</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<tessellate>1</tessellate>
<coordinates>-84.81994380380785,39.205726248774745,0.0 -84.819605,39.276346,0.0 -84.819222,39.305161,0.0 -84.817726,39.391845,0.0 -84.815328,39.522463,0.0 -84.815632,39.522467000000006,0.0 -84.94013115373588,39.52390385597373,0.0 -84.946976,39.52397899999999,0.0 -85.02295000000001,39.524365,0.0 -85.022955,39.524365,0.0 -85.022907,39.524607,0.0 -85.022619,39.526062,0.0 -85.022968,39.526065,0.0 -85.084206,39.52649000000001,0.0 -85.1636,39.526334000000006,0.0 -85.18178,39.45099,0.0 -85.191935,39.453685,0.0 -85.19211,39.453894,0.0 -85.252219,39.52569199999999,0.0 -85.252316,39.525690999999995,0.0 -85.298595,39.525444,0.0 -85.298257,39.502251,0.0 -85.298202,39.498003,0.0 -85.297605,39.453352,0.0 -85.478787,39.452907,0.0 -85.573183,39.45227,0.0 -85.573193,39.453104,0.0 -85.60795700000001,39.453237,0.0 -85.629406,39.456979,0.0 -85.633567,39.454911,0.0 -85.629491,39.450082,0.0 -85.629527,39.447275,0.0 -85.62956800000002,39.444008,0.0 -85.629268,39.438388999999994,0.0 -85.630048,39.438398,0.0 -85.630764,39.35002,0.0 -85.630765,39.35002,0.0 -85.631282,39.350021000000005,0.0 -85.77039,39.350237,0.0 -85.77059500000001,39.350402,0.0 -85.770689,39.35047900000001,0.0 -85.950851,39.495251,0.0 -85.951354,39.523057,0.0 -85.951723,39.523051,0.0 -85.952545,39.60948900000001,0.0 -85.952567,39.60948900000001,0.0 -85.952799,39.60948700000001,0.0 -85.95225,39.63852500000001,0.0 -85.952272,39.638525,0.0 -86.074087,39.636565,0.0 -86.126647,39.635512,0.0 -86.15829,39.635106,0.0 -86.190178,39.634513999999996,0.0 -86.205489,39.634299,0.0 -86.20549,39.634299,0.0 -86.319442,39.63233399999999,0.0 -86.353901,39.607565,0.0 -86.36493,39.607393,0.0 -86.379483,39.605818,0.0 -86.456842,39.508137,0.0 -86.631022,39.41358699999999,0.0 -86.739856,39.356005,0.0 -86.839809,39.321687000000004,0.0 -86.86616,39.312525,0.0 -86.882193,39.214402,0.0 -86.868453,39.200445,0.0 -86.71191,39.171687,0.0 -86.681307,39.170928,0.0 -86.681272,39.17082700000001,0.0 -86.682659,39.115997,0.0 -86.683211,39.114796,0.0 -86.724637,39.05952799999999,0.0 -86.719185,39.045258,0.0 -86.714758,39.042137,0.0 -86.710233,39.036259,0.0 -86.710211,39.036229,0.0 -86.701261,39.029569,0.0 -86.694131,39.015311,0.0 -86.682261,38.992478,0.0 -86.537237,38.991808,0.0 -86.537236,38.991808,0.0 -86.48083,38.991564,0.0 -86.424457,38.991291999999994,0.0 -86.424435,38.991292,0.0 -86.363099,38.931301000000005,0.0 -86.362752,38.895371000000004,0.0 -86.339592,38.874669,0.0 -86.338411,38.776944,0.0 -86.328327,38.761098,0.0 -86.310123,38.733097,0.0 -86.309824,38.732109,0.0 -86.307549,38.637041,0.0 -86.28406900000002,38.611458000000006,0.0 -86.283724,38.557105,0.0 -86.283742,38.557035,0.0 -86.262009,38.451185,0.0 -86.230644,38.397548,0.0 -86.230874,38.396858,0.0 -86.282635,38.355641,0.0 -86.314667,38.28414200000001,0.0 -86.31582600000002,38.282360000000004,0.0 -86.359791,38.242411,0.0 -86.340938,38.221609,0.0 -86.356902,38.207458,0.0 -86.357453,38.19863300000001,0.0 -86.357464,38.198449,0.0 -86.35607,38.198378,0.0 -86.344687,38.19311100000001,0.0 -86.344445,38.192911,0.0 -86.344419,38.19288900000001,0.0 -86.336204,38.18609099999999,0.0 -86.336075,38.18599799999999,0.0 -86.335912,38.18588,0.0 -86.330213,38.181766999999994,0.0 -86.330148,38.181712000000005,0.0 -86.330026,38.181609,0.0 -86.32714,38.179168,0.0 -86.327042,38.179099,0.0 -86.326919,38.179012,0.0 -86.319743,38.173969,0.0 -86.317233,38.172664,0.0 -86.306583,38.16851199999999,0.0 -86.304285,38.167475,0.0 -86.296519,38.163438,0.0 -86.294077,38.161942,0.0 -86.286077,38.156155,0.0 -86.286071,38.156147,0.0 -86.286046,38.156114,0.0 -86.274643,38.140823,0.0 -86.273794,38.13918199999999,0.0 -86.271787,38.13176099999999,0.0 -86.273916,38.122298,0.0 -86.277695,38.10860600000001,0.0 -86.279874,38.093429,0.0 -86.278084,38.080172,0.0 -86.27302800000001,38.064529,0.0 -86.272386,38.063447,0.0 -86.26415,38.053943,0.0 -86.263976,38.053854,0.0 -86.263939,38.05383500000001,0.0 -86.242905,38.043112,0.0 -86.228986,38.035212,0.0 -86.228872,38.035092,0.0 -86.228847,38.035066,0.0 -86.222847,38.028789,0.0 -86.222722,38.028737,0.0 -86.222687,38.02872200000001,0.0 -86.199016,38.01889,0.0 -86.184256,38.01296200000001,0.0 -86.17930900000002,38.011554,0.0 -86.172511,38.010164,0.0 -86.167636,38.010125,0.0 -86.156146,38.012307,0.0 -86.156146,38.012308,0.0 -86.143772,38.015491,0.0 -86.143771,38.015491,0.0 -86.125545,38.01634599999999,0.0 -86.109742,38.013367,0.0 -86.108016,38.01287,0.0 -86.086611,38.00455,0.0 -86.086412,38.004358999999994,0.0 -86.086398,38.004345,0.0 -86.077578,37.995894,0.0 -86.076188,37.994218,0.0 -86.06918100000001,37.983173,0.0 -86.057646,37.967611000000005,0.0 -86.055302,37.965249,0.0 -86.047886,37.959271,0.0 -86.047879,37.959271,0.0 -86.047855,37.95926800000001,0.0 -86.039264,37.958329,0.0 -86.039263,37.958331,0.0 -86.03446,37.965636,0.0 -86.034106,37.96672300000001,0.0 -86.034215,37.974174000000005,0.0 -86.035671,37.980291,0.0 -86.035662,37.980821,0.0 -86.033592,37.988919,0.0 -86.025704,37.994435,0.0 -86.0257,37.994435,0.0 -86.025699,37.994435,0.0 -86.025399,37.99446600000001,0.0 -86.010042,37.99603,0.0 -85.992253,37.998222,0.0 -85.97049,38.001661,0.0 -85.97048700000002,38.001662,0.0 -85.970485,38.00166200000001,0.0 -85.953732,38.004976000000006,0.0 -85.952397,38.005452000000005,0.0 -85.935831,38.013958,0.0 -85.927152,38.022876,0.0 -85.925732,38.024798,0.0 -85.917908,38.040332,0.0 -85.916901,38.05601999999999,0.0 -85.91368,38.065137,0.0 -85.909616,38.074868,0.0 -85.90704,38.085498,0.0 -85.905437,38.096729,0.0 -85.904715,38.120729,0.0 -85.907436,38.131786000000005,0.0 -85.907227,38.13909000000001,0.0 -85.905407,38.164696,0.0 -85.90277800000001,38.171735999999996,0.0 -85.901795,38.173389,0.0 -85.8973,38.17888000000001,0.0 -85.890282,38.18847,0.0 -85.888576,38.190473,0.0 -85.881524,38.197661,0.0 -85.87920400000002,38.199779,0.0 -85.869218,38.207899000000005,0.0 -85.858097,38.21645999999999,0.0 -85.855607,38.218769,0.0 -85.847471,38.228437,0.0 -85.840839,38.237657999999996,0.0 -85.840179,38.239117,0.0 -85.837997,38.251091,0.0 -85.833828,38.265532,0.0 -85.833411,38.26639200000001,0.0 -85.828359,38.273791,0.0 -85.82668,38.275628999999995,0.0 -85.820874,38.280147,0.0 -85.807293,38.284566999999996,0.0 -85.796203,38.287279,0.0 -85.796201,38.287279,0.0 -85.79620000000001,38.28728,0.0 -85.79504,38.287428999999996,0.0 -85.780435,38.28781,0.0 -85.77830900000001,38.287211,0.0 -85.777996,38.287029,0.0 -85.769013,38.281818,0.0 -85.768955,38.281732000000005,0.0 -85.768942,38.281712,0.0 -85.764677,38.275391,0.0 -85.764422,38.275222,0.0 -85.764384,38.275197,0.0 -85.760507,38.272638,0.0 -85.757955,38.27127200000001,0.0 -85.751288,38.268118,0.0 -85.750998,38.26804400000001,0.0 -85.750088,38.267817,0.0 -85.745187,38.267418,0.0 -85.741587,38.26851500000001,0.0 -85.731713,38.272211,0.0 -85.728619,38.273572,0.0 -85.714958,38.28090099999999,0.0 -85.685414,38.294976,0.0 -85.68298,38.296321,0.0 -85.674352,38.30181499999999,0.0 -85.665251,38.313345000000005,0.0 -85.655484,38.325101000000004,0.0 -85.654587,38.326436,0.0 -85.648911,38.337612,0.0 -85.64161400000002,38.35515399999999,0.0 -85.638965,38.364864000000004,0.0 -85.638628,38.37632099999999,0.0 -85.635824,38.385555,0.0 -85.631053,38.400455,0.0 -85.630538,38.40165100000001,0.0 -85.621319,38.418784,0.0 -85.614015,38.431200000000004,0.0 -85.612561,38.433093,0.0 -85.60359,38.442607,0.0 -85.58314,38.451696000000005,0.0 -85.58233,38.451917,0.0 -85.582328,38.451917,0.0 -85.582327,38.451917,0.0 -85.563017,38.453664999999994,0.0 -85.536509,38.455758,0.0 -85.536504,38.455759,0.0 -85.535032,38.456044000000006,0.0 -85.513615,38.462725000000006,0.0 -85.511833,38.463433,0.0 -85.499192,38.468489,0.0 -85.496497,38.470347,0.0 -85.488043,38.479615,0.0 -85.486687,38.48144500000001,0.0 -85.477571,38.497318,0.0 -85.476396,38.499029,0.0 -85.469815,38.50724099999999,0.0 -85.463573,38.511492,0.0 -85.461268,38.512699,0.0 -85.44744,38.517718,0.0 -85.437497,38.522196,0.0 -85.431282,38.52533,0.0 -85.425931,38.528918,0.0 -85.418171,38.539867,0.0 -85.417897,38.540485,0.0 -85.415925,38.546588,0.0 -85.415598,38.553503000000006,0.0 -85.415824,38.56151,0.0 -85.416533,38.565272,0.0 -85.418209,38.569404000000006,0.0 -85.420208,38.573806,0.0 -85.428138,38.586362,0.0 -85.428138,38.586363000000006,0.0 -85.434221,38.59493,0.0 -85.43495,38.596389,0.0 -85.438614,38.605564,0.0 -85.439223,38.645275,0.0 -85.440087,38.656601,0.0 -85.442933,38.664712,0.0 -85.453877,38.681507,0.0 -85.45448,38.68270799999999,0.0 -85.456359,38.688509,0.0 -85.454258,38.702476,0.0 -85.45138,38.712188,0.0 -85.450332,38.713794,0.0 -85.442081,38.722482,0.0 -85.435206,38.728927,0.0 -85.42624700000002,38.732924,0.0 -85.424118,38.733607,0.0 -85.410155,38.736652,0.0 -85.410152,38.736652,0.0 -85.395265,38.734663000000005,0.0 -85.369602,38.728802,0.0 -85.369598,38.728801999999995,0.0 -85.369597,38.728802,0.0 -85.355369,38.729427,0.0 -85.331169,38.733657,0.0 -85.31471,38.737405,0.0 -85.30092,38.73923,0.0 -85.291605,38.739708,0.0 -85.291602,38.739708,0.0 -85.279422,38.738721,0.0 -85.266396,38.736836,0.0 -85.265267,38.736574000000005,0.0 -85.258225,38.734207,0.0 -85.256297,38.733378,0.0 -85.245561,38.727939,0.0 -85.245464,38.727811,0.0 -85.245452,38.727794,0.0 -85.229161,38.70626300000001,0.0 -85.218347,38.697421000000006,0.0 -85.218318,38.697402,0.0 -85.218223,38.697341,0.0 -85.214789,38.695148,0.0 -85.205223,38.690802,0.0 -85.195904,38.688542000000005,0.0 -85.191625,38.687754,0.0 -85.179157,38.686189,0.0 -85.179155,38.68619,0.0 -85.166669,38.688029,0.0 -85.164768,38.688442,0.0 -85.149502,38.693157,0.0 -85.137504,38.698156,0.0 -85.13429,38.69970500000001,0.0 -85.122911,38.706079,0.0 -85.11982400000001,38.708028999999996,0.0 -85.110766,38.71456,0.0 -85.103109,38.721061,0.0 -85.09499300000002,38.726948,0.0 -85.09039,38.729828,0.0 -85.086696,38.731745,0.0 -85.08429400000001,38.732814,0.0 -85.084209,38.73285200000001,0.0 -85.084205,38.732853,0.0 -85.084205,38.732853999999996,0.0 -85.084128,38.732889,0.0 -85.084113,38.732897,0.0 -85.034564,38.756119000000005,0.0 -85.03268900000002,38.756862,0.0 -85.018755,38.761349,0.0 -85.011734,38.76411199999999,0.0 -85.008687,38.765725,0.0 -85.001473,38.77024900000001,0.0 -84.998758,38.771599,0.0 -84.992274,38.77401600000001,0.0 -84.984343,38.775882,0.0 -84.9824,38.776199,0.0 -84.97052200000002,38.777404000000004,0.0 -84.97052,38.777404,0.0 -84.952119,38.774691999999995,0.0 -84.94404900000002,38.77285,0.0 -84.943273,38.772818,0.0 -84.943272,38.772818,0.0 -84.94013115373588,38.77331527766932,0.0 -84.933853,38.77430900000001,0.0 -84.932806,38.774624,0.0 -84.921825,38.779278,0.0 -84.906074,38.784119000000004,0.0 -84.89024100000002,38.789761,0.0 -84.888994,38.79006100000001,0.0 -84.880745,38.791038,0.0 -84.880741,38.791038,0.0 -84.868696,38.790254,0.0 -84.832066,38.783522000000005,0.0 -84.832061,38.783522,0.0 -84.83206000000001,38.783522,0.0 -84.817296,38.783327,0.0 -84.816344,38.783472,0.0 -84.81412800000001,38.78437,0.0 -84.810882,38.792169,0.0 -84.812679,38.80038,0.0 -84.81324,38.801857,0.0 -84.82378,38.82168000000001,0.0 -84.826521,38.829068,0.0 -84.822654,38.835978,0.0 -84.81373,38.84255,0.0 -84.810971,38.844199,0.0 -84.804382,38.847275999999994,0.0 -84.797509,38.85402700000001,0.0 -84.790122,38.860141,0.0 -84.785335,38.86929099999999,0.0 -84.78522555731938,38.87151189456155,0.0 -84.784815,38.879842,0.0 -84.78523,38.880691,0.0 -84.793505,38.888484,0.0 -84.793522,38.8885,0.0 -84.793728,38.888693999999994,0.0 -84.809672,38.89552200000001,0.0 -84.825325,38.899257,0.0 -84.838271,38.89972099999999,0.0 -84.838276,38.89972099999999,0.0 -84.84805300000001,38.8985,0.0 -84.860678,38.89851300000001,0.0 -84.860683,38.898513,0.0 -84.861722,38.898734000000005,0.0 -84.870066,38.901988,0.0 -84.87009600000002,38.902,0.0 -84.870264,38.902065,0.0 -84.870265,38.902067,0.0 -84.874189,38.907247000000005,0.0 -84.874607,38.908046,0.0 -84.877529,38.918525,0.0 -84.877417,38.91904100000001,0.0 -84.871989,38.926675,0.0 -84.870611,38.928203,0.0 -84.862931,38.935338,0.0 -84.85272700000002,38.94334599999999,0.0 -84.850635,38.945229,0.0 -84.846198,38.94970099999999,0.0 -84.84596700000002,38.949934,0.0 -84.837243,38.955967,0.0 -84.832346,38.961708,0.0 -84.831792,38.962696,0.0 -84.82952,38.970783,0.0 -84.83184,38.97972500000001,0.0 -84.83236300000002,38.980972,0.0 -84.837257,38.989508,0.0 -84.838943,38.991387,0.0 -84.84657,38.997663,0.0 -84.849006,39.002569,0.0 -84.8498,39.003774,0.0 -84.871349,39.029183,0.0 -84.871382,39.029223,0.0 -84.871399,39.029243,0.0 -84.877517,39.033697,0.0 -84.879511,39.034933,0.0 -84.885247,39.03802100000001,0.0 -84.885277,39.038037,0.0 -84.885519,39.038168,0.0 -84.888952,39.044522,0.0 -84.890218,39.04645800000001,0.0 -84.89544300000001,39.052884,0.0 -84.89567,39.053430999999996,0.0 -84.895601,39.058295,0.0 -84.894924,39.05950299999999,0.0 -84.887152,39.06662200000001,0.0 -84.87361100000001,39.071707,0.0 -84.860694,39.078145,0.0 -84.855289,39.083452,0.0 -84.849222,39.088457,0.0 -84.846339,39.090193,0.0 -84.846083,39.09042999999999,0.0 -84.84429,39.092092,0.0 -84.839822,39.09508600000001,0.0 -84.834011,39.099632,0.0 -84.828355,39.103176,0.0 -84.825178,39.103486,0.0 -84.820058,39.105552,0.0 -84.82015,39.145454,0.0 -84.820215,39.149096,0.0 -84.81994380380785,39.205726248774745,0.0</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark>
<name>FORT WAYNE</name>
<description><![CDATA[FORT WAYNE    <br>       <br>   DISTRICT   2    <br>   DISTNAME   FORT WAYNE    <br>   Created By   DOTRAH    <br>   Date Created   7/30/2014 4:02:07 PM    <br>   Edited By   DOTRAH    <br>   Date Edited   7/30/2014 4:02:07 PM    <br>   SHAPE   Polygon    <br>   GLOBALID   {8E07D826-6D17-4581-AAB5-9BEC05B0F0A6}    <br>   SHAPE_Length   560312.698283    <br>   SHAPE_Area   15204712268.641708]]></description>
<styleUrl>#poly-000000-3-0</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<tessellate>1</tessellate>
<coordinates>-84.80353538697248,41.163896284756085,0.0 -84.803601,41.271022,0.0 -84.803997,41.329216,0.0 -84.804073,41.438743,0.0 -84.804744,41.530372,0.0 -84.805002,41.556419,0.0 -84.805828,41.631464,0.0 -84.805927,41.70750700000001,0.0 -84.80586,41.759931,0.0 -84.94013115373588,41.7596609072425,0.0 -84.989597,41.759522,0.0 -85.174858,41.759623000000005,0.0 -85.196705,41.759739999999994,0.0 -85.367074,41.75974099999999,0.0 -85.660018,41.759153,0.0 -85.677328,41.759075,0.0 -85.775024,41.759076,0.0 -85.974861,41.760029,0.0 -86.062599,41.76053499999999,0.0 -86.062237,41.731196999999995,0.0 -86.061517,41.688411,0.0 -86.069944,41.684153,0.0 -86.069474,41.66640199999999,0.0 -86.061036,41.66411600000001,0.0 -86.06057,41.61610000000001,0.0 -86.059722,41.507161,0.0 -86.059503,41.478994,0.0 -86.059335,41.457442,0.0 -86.030346,41.443279000000004,0.0 -86.05895,41.43577500000001,0.0 -86.056923,41.291372,0.0 -86.046931,41.282116,0.0 -86.056555,41.279611,0.0 -86.05631200000002,41.271253,0.0 -86.055902,41.249477,0.0 -86.050653,41.245661000000005,0.0 -86.055755,41.242855000000006,0.0 -86.05507799127506,41.21348241694345,0.0 -86.054227,41.17652400000001,0.0 -86.039157,41.17333200000001,0.0 -86.077198,41.161007,0.0 -86.075798,41.085238,0.0 -86.052252,41.085345,0.0 -86.051694,41.047503,0.0 -86.028359,41.038885,0.0 -86.051354,41.022763,0.0 -86.051072,40.997749,0.0 -86.057269,40.99757,0.0 -86.114865,40.996334,0.0 -86.130003,40.99610700000001,0.0 -86.167679,40.996106,0.0 -86.173228,40.99607100000001,0.0 -86.173235,40.914438,0.0 -86.168593,40.90958,0.0 -86.167821,40.876394000000005,0.0 -86.136614,40.865704,0.0 -86.167633,40.85828,0.0 -86.168287,40.791351000000006,0.0 -86.149044,40.770302,0.0 -86.165825,40.742779,0.0 -86.166716,40.686251999999996,0.0 -86.137276,40.682271,0.0 -86.127956,40.677129,0.0 -86.166432,40.667838999999994,0.0 -86.16544500000002,40.5969,0.0 -86.12733,40.584824000000005,0.0 -86.091572,40.563157,0.0 -85.863776,40.565493,0.0 -85.863142,40.494423,0.0 -85.825049,40.479164,0.0 -85.862842,40.464273,0.0 -85.862312,40.434698,0.0 -85.837644,40.434439,0.0 -85.824517,40.421642,0.0 -85.811522,40.43501599999999,0.0 -85.744717,40.43547699999999,0.0 -85.735586,40.42212200000001,0.0 -85.70798600000002,40.43632900000001,0.0 -85.689529,40.436657,0.0 -85.671982,40.42258,0.0 -85.657641,40.436799,0.0 -85.559754,40.436812999999994,0.0 -85.549324,40.422944,0.0 -85.539981,40.407399,0.0 -85.473324,40.406959,0.0 -85.473006,40.43716499999999,0.0 -85.370224,40.435923,0.0 -85.341374,40.43523299999999,0.0 -85.341489,40.534232,0.0 -85.295658,40.534206,0.0 -85.169505,40.53404,0.0 -85.149756,40.552687,0.0 -85.133234,40.533892,0.0 -84.97622,40.532551,0.0 -84.964225,40.541008,0.0 -84.951795,40.532205,0.0 -84.94013115373588,40.53212492670477,0.0 -84.802686,40.531093,0.0 -84.802662,40.54587,0.0 -84.802457,40.572199,0.0 -84.802278,40.657695,0.0 -84.80237700000002,40.747211,0.0 -84.802486,40.752794,0.0 -84.802376,40.843097,0.0 -84.802816,40.922259,0.0 -84.803325,40.997994000000006,0.0 -84.803302,41.074964,0.0 -84.803534,41.161628,0.0 -84.80353538697248,41.163896284756085,0.0</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Style id='poly-000000-3-0-normal'>
<LineStyle>
<color>ff000000</color>
<width>3</width>
</LineStyle>
<PolyStyle>
<color> 0000000</color>
<fill>1</fill>
<outline>1</outline>
</PolyStyle>
</Style>
<Style id='poly-000000-3-0-highlight'>
<LineStyle>
<color>ff000000</color>
<width>5.0</width>
</LineStyle>
<PolyStyle>
<color> 0000000</color>
<fill>1</fill>
<outline>1</outline>
</PolyStyle>
</Style>
<StyleMap id='poly-000000-3-0'>
<Pair>
<key>normal</key>
<styleUrl>#poly-000000-3-0-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#poly-000000-3-0-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id='poly-000000-3-2-normal'>
<LineStyle>
<color>ff000000</color>
<width>3</width>
</LineStyle>
<PolyStyle>
<color> 2000000</color>
<fill>1</fill>
<outline>1</outline>
</PolyStyle>
</Style>
<Style id='poly-000000-3-2-highlight'>
<LineStyle>
<color>ff000000</color>
<width>5.0</width>
</LineStyle>
<PolyStyle>
<color> 2000000</color>
<fill>1</fill>
<outline>1</outline>
</PolyStyle>
</Style>
<StyleMap id='poly-000000-3-2'>
<Pair>
<key>normal</key>
<styleUrl>#poly-000000-3-2-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#poly-000000-3-2-highlight</styleUrl>
</Pair>
</StyleMap>
</Document>
</kml>`;
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址