From f2b3230b5b7b22417e90d9e2b063c9b84bc5abc4 Mon Sep 17 00:00:00 2001 From: Funcate Date: Thu, 10 Jan 2013 11:22:15 -0200 Subject: [PATCH 01/39] Update readme.md Add informations to initialize the repository --- readme.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 7aeb56a7..3eb45e0e 100644 --- a/readme.md +++ b/readme.md @@ -1,7 +1,23 @@ -# gxp +gxp +---------- High level components for GeoExt based applications. The gxp components are used by OpenGeo in their applications, such as GeoExplorer and GeoEditor. See the [tutorial](http://workshops.opengeo.org/gxp/), [API docs](http://gxp.opengeo.org/master/doc/) and [examples](http://gxp.opengeo.org/master/examples/) for more detail. + + +Quickstart +---------- + +#. Clone the repository:: + + git clone https://github.com/FuncateMobile/gxp.git + cd suite + +#. Initialize submodule dependencies:: + + git submodule update --init --recursive + +good codes! From 4a13fa2b1f4746d567d7cfff99e9a54639b521cb Mon Sep 17 00:00:00 2001 From: Funcate Date: Thu, 10 Jan 2013 11:23:15 -0200 Subject: [PATCH 02/39] Update readme.md --- readme.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 3eb45e0e..285251f4 100644 --- a/readme.md +++ b/readme.md @@ -19,5 +19,6 @@ Quickstart #. Initialize submodule dependencies:: git submodule update --init --recursive - -good codes! + + +# good codes! From 4f1dfcc44e376c48932c9e49371a0071a2d8d04f Mon Sep 17 00:00:00 2001 From: Funcate Date: Thu, 10 Jan 2013 11:24:19 -0200 Subject: [PATCH 03/39] Update readme.md --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 285251f4..6d810268 100644 --- a/readme.md +++ b/readme.md @@ -14,11 +14,11 @@ Quickstart #. Clone the repository:: git clone https://github.com/FuncateMobile/gxp.git - cd suite + cd gxp #. Initialize submodule dependencies:: - git submodule update --init --recursive + git submodule init --init --recursive # good codes! From 375da432e7e10d50519e96663fd3df4cabcd5492 Mon Sep 17 00:00:00 2001 From: Funcate Date: Thu, 10 Jan 2013 11:25:37 -0200 Subject: [PATCH 04/39] Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 6d810268..eea80a52 100644 --- a/readme.md +++ b/readme.md @@ -18,7 +18,7 @@ Quickstart #. Initialize submodule dependencies:: - git submodule init --init --recursive + git submodule update --init --recursive # good codes! From 5161247e0f55071defa53fb71805e88993890491 Mon Sep 17 00:00:00 2001 From: Funcate Date: Thu, 10 Jan 2013 14:04:17 -0200 Subject: [PATCH 05/39] Update readme.md --- readme.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/readme.md b/readme.md index eea80a52..8508cde2 100644 --- a/readme.md +++ b/readme.md @@ -11,14 +11,13 @@ See the [tutorial](http://workshops.opengeo.org/gxp/), [API docs](http://gxp.ope Quickstart ---------- -#. Clone the repository:: +1. Clone the repository:: git clone https://github.com/FuncateMobile/gxp.git cd gxp -#. Initialize submodule dependencies:: +2. Initialize submodule dependencies:: git submodule update --init --recursive - -# good codes! + From 82084b471186d4112a32189dbc9a5181e2dcbed1 Mon Sep 17 00:00:00 2001 From: Funcate Date: Thu, 10 Jan 2013 14:05:57 -0200 Subject: [PATCH 06/39] Update readme.md --- readme.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/readme.md b/readme.md index 8508cde2..da599bdd 100644 --- a/readme.md +++ b/readme.md @@ -11,13 +11,13 @@ See the [tutorial](http://workshops.opengeo.org/gxp/), [API docs](http://gxp.ope Quickstart ---------- -1. Clone the repository:: +. Clone the repository: - git clone https://github.com/FuncateMobile/gxp.git - cd gxp + $ git clone https://github.com/FuncateMobile/gxp.git + $ cd gxp -2. Initialize submodule dependencies:: +. Initialize submodule dependencies: - git submodule update --init --recursive + $ git submodule update --init --recursive From 03e0a40896ec0e46413d1dba508336eaa68d48d5 Mon Sep 17 00:00:00 2001 From: Funcate Date: Fri, 11 Jan 2013 11:22:14 -0200 Subject: [PATCH 07/39] Update .gitmodules change url from PrintPreview submodule. --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 22532b95..efa1d0a8 100644 --- a/.gitmodules +++ b/.gitmodules @@ -12,7 +12,7 @@ url = git://github.com/opengeo/buildkit.git [submodule "externals/PrintPreview"] path = externals/PrintPreview - url = git://github.com/GeoNode/PrintPreview.git + url = git://github.com/opengeo/PrintPreview.git [submodule "externals/DimensionManager"] path = externals/DimensionManager url = git://github.com/opengeo/openlayers.git From f8b38adfd1f9e8882942c03edee4b9b022220e96 Mon Sep 17 00:00:00 2001 From: Paulo Luan Date: Fri, 11 Jan 2013 14:35:52 -0200 Subject: [PATCH 08/39] update url from PrintPreview into gitmodules file and add resources to gitignore --- .gitignore | 19 ++++++++++++++++++- .gitmodules | 2 +- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b1fd6583..e9994ac4 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,21 @@ src/doc/lib/menu src/doc/lib/plugins src/doc/lib/widgets src/doc/lib/util.rst -build/ \ No newline at end of file +build/ + +# Logs and databases # +###################### +*.log +*.sql +*.sqlite + +# OS generated files # +###################### +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +Icon? +ehthumbs.db +Thumbs.db \ No newline at end of file diff --git a/.gitmodules b/.gitmodules index 22532b95..efa1d0a8 100644 --- a/.gitmodules +++ b/.gitmodules @@ -12,7 +12,7 @@ url = git://github.com/opengeo/buildkit.git [submodule "externals/PrintPreview"] path = externals/PrintPreview - url = git://github.com/GeoNode/PrintPreview.git + url = git://github.com/opengeo/PrintPreview.git [submodule "externals/DimensionManager"] path = externals/DimensionManager url = git://github.com/opengeo/openlayers.git From 1ff61338a9be19993f425f8d65c6b6a32bfcf7ef Mon Sep 17 00:00:00 2001 From: Paulo Luan Date: Mon, 14 Jan 2013 12:49:29 -0200 Subject: [PATCH 09/39] add pt-br language to i18n --- examples/data/describe_feature_type.xml | 65 +- examples/data/getfeature.xml | 6228 ++++++++++++++++++++++- examples/data/getstyles.xml | 16 +- examples/histogram.js | 58 +- src/script/locale/pt-br.js | 411 ++ 5 files changed, 6742 insertions(+), 36 deletions(-) create mode 100644 src/script/locale/pt-br.js diff --git a/examples/data/describe_feature_type.xml b/examples/data/describe_feature_type.xml index 4909f3f6..a1316a9c 100644 --- a/examples/data/describe_feature_type.xml +++ b/examples/data/describe_feature_type.xml @@ -1 +1,64 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/examples/data/getfeature.xml b/examples/data/getfeature.xml index 1755f6df..3d20a4c8 100644 --- a/examples/data/getfeature.xml +++ b/examples/data/getfeature.xml @@ -1 +1,6227 @@ --124.731422,24.955967 -66.969849,49.371735-88.071564,37.51099 -88.087883,37.476273 -88.311707,37.442852 -88.359177,37.409309 -88.419853,37.420292 -88.467644,37.400757 -88.511322,37.296852 -88.501427,37.257782 -88.450699,37.205669 -88.422516,37.15691 -88.45047,37.098671 -88.476799,37.072144 -88.4907,37.06818 -88.517273,37.06477 -88.559273,37.072815 -88.61422,37.109047 -88.68837,37.13541 -88.739113,37.141182 -88.746506,37.152107 -88.863289,37.202194 -88.932503,37.218407 -88.993172,37.220036 -89.065033,37.18586 -89.116821,37.112137 -89.146347,37.093185 -89.169548,37.064236 -89.174332,37.025711 -89.150246,36.99844 -89.12986,36.988113 -89.193512,36.986771 -89.210052,37.028973 -89.237679,37.041733 -89.264053,37.087124 -89.284233,37.091244 -89.303291,37.085384 -89.3097,37.060909 -89.264244,37.027733 -89.262001,37.008686 -89.282768,36.999207 -89.310982,37.009682 -89.38295,37.049213 -89.37999,37.099083 -89.423798,37.137203 -89.440521,37.165318 -89.468216,37.224266 -89.465309,37.253731 -89.489594,37.256001 -89.513885,37.276402 -89.513885,37.304962 -89.50058,37.329441 -89.468742,37.339409 -89.435738,37.355717 -89.427574,37.411018 -89.453621,37.453186 -89.494781,37.491726 -89.524971,37.571957 -89.513367,37.615929 -89.51918,37.650375 -89.513374,37.67984 -89.521523,37.694798 -89.581436,37.706104 -89.666458,37.745453 -89.675858,37.78397 -89.691055,37.804794 -89.728447,37.840992 -89.851715,37.905064 -89.861046,37.905487 -89.866814,37.891876 -89.900551,37.875904 -89.937874,37.878044 -89.978912,37.911884 -89.958229,37.963634 -90.010811,37.969318 -90.041924,37.993206 -90.119339,38.032272 -90.134712,38.053951 -90.207527,38.088905 -90.254059,38.122169 -90.289635,38.166817 -90.336716,38.188713 -90.364769,38.234299 -90.369347,38.323559 -90.358688,38.36533 -90.339607,38.390846 -90.301842,38.427357 -90.265785,38.518688 -90.26123,38.532768 -90.240944,38.562805 -90.183708,38.610271 -90.183578,38.658772 -90.20224,38.700363 -90.196571,38.723965 -90.163399,38.773098 -90.135178,38.785484 -90.121727,38.80051 -90.113121,38.830467 -90.132812,38.853031 -90.243927,38.914509 -90.278931,38.924717 -90.31974,38.924908 -90.413071,38.96233 -90.469841,38.959179 -90.530426,38.891609 -90.570328,38.871326 -90.627213,38.880795 -90.668877,38.935253 -90.70607,39.037792 -90.707588,39.058178 -90.690399,39.0937 -90.716736,39.144211 -90.718193,39.195873 -90.732338,39.224747 -90.738083,39.24781 -90.779343,39.296803 -90.850494,39.350452 -90.947891,39.400585 -91.036339,39.444412 -91.064384,39.473984 -91.093613,39.528927 -91.156189,39.552593 -91.203247,39.600021 -91.317665,39.685917 -91.367088,39.72464 -91.373421,39.761272 -91.381714,39.803772 -91.449188,39.863049 -91.450989,39.885242 -91.434052,39.901829 -91.430389,39.921837 -91.447243,39.946064 -91.487289,40.005753 -91.504005,40.066711 -91.516129,40.134544 -91.506546,40.200459 -91.498932,40.251377 -91.486694,40.309624 -91.448593,40.371902 -91.418816,40.386875 -91.385757,40.392361 -91.372757,40.402988 -91.385399,40.44725 -91.374794,40.503654 -91.382103,40.528496 -91.412872,40.547993 -91.411118,40.572971 -91.37561,40.603439 -91.262062,40.639545 -91.214912,40.643818 -91.162498,40.656311 -91.129158,40.682148 -91.119987,40.705402 -91.092751,40.761547 -91.088905,40.833729 -91.04921,40.879585 -90.983276,40.923927 -90.960709,40.950504 -90.954651,41.070362 -90.957787,41.104359 -90.990341,41.144371 -91.018257,41.165825 -91.05632,41.176258 -91.101524,41.231522 -91.102348,41.267818 -91.07328,41.334896 -91.055786,41.401379 -91.027489,41.423508 -91.000694,41.431084 -90.949654,41.421234 -90.844139,41.444622 -90.7799,41.449821 -90.708214,41.450062 -90.658791,41.462318 -90.6007,41.509586 -90.54084,41.52597 -90.454994,41.527546 -90.434967,41.543579 -90.423004,41.567272 -90.348366,41.586849 -90.339348,41.602798 -90.341133,41.64909 -90.326027,41.722736 -90.304886,41.756466 -90.25531,41.781738 -90.195839,41.806137 -90.154518,41.930775 -90.14267,41.983963 -90.150536,42.033428 -90.168098,42.061043 -90.166649,42.103745 -90.176086,42.120502 -90.191574,42.122688 -90.230934,42.159721 -90.323601,42.197319 -90.367729,42.210209 -90.407173,42.242645 -90.417984,42.263924 -90.427681,42.340633 -90.441597,42.360073 -90.491043,42.388783 -90.563583,42.421837 -90.605827,42.46056 -90.648346,42.475643 -90.651772,42.494698 -90.638329,42.509361 -90.419975,42.508362 -89.923569,42.504108 -89.834618,42.50346 -89.400497,42.49749 -89.359444,42.497906 -88.939079,42.490864 -88.764954,42.490906 -88.70652,42.489655 -88.297897,42.49197 -88.194702,42.489613 -87.79731,42.489132 -87.836945,42.314213 -87.760239,42.156456 -87.670547,42.059822 -87.612625,41.847332 -87.529861,41.723591 -87.532646,41.469715 -87.532448,41.301304 -87.531731,41.173756 -87.532021,41.00993 -87.532669,40.745411 -87.53717,40.49461 -87.535675,40.483246 -87.535339,40.166195 -87.535774,39.887302 -87.535576,39.609341 -87.538567,39.477448 -87.540215,39.350525 -87.597664,39.338268 -87.625237,39.307404 -87.610619,39.297661 -87.615799,39.281418 -87.606895,39.258163 -87.584564,39.248753 -87.588593,39.208466 -87.594208,39.198128 -87.607925,39.196068 -87.644257,39.168507 -87.670326,39.146679 -87.659454,39.130653 -87.662262,39.113468 -87.631668,39.103943 -87.630867,39.088974 -87.612007,39.084606 -87.58532,39.062435 -87.581749,38.995743 -87.591858,38.994083 -87.547905,38.977077 -87.53347,38.963703 -87.530182,38.931919 -87.5392,38.904861 -87.559059,38.869812 -87.550507,38.857891 -87.507889,38.795559 -87.519028,38.776699 -87.508003,38.769722 -87.508316,38.736633 -87.543892,38.685974 -87.588478,38.672169 -87.625191,38.642811 -87.628647,38.622917 -87.619827,38.599209 -87.640594,38.593178 -87.652855,38.573872 -87.672943,38.547424 -87.65139,38.515369 -87.653534,38.500443 -87.679909,38.504005 -87.692818,38.481533 -87.756096,38.466125 -87.758659,38.457096 -87.738953,38.44548 -87.748428,38.417965 -87.784019,38.378124 -87.834503,38.352524 -87.850082,38.286098 -87.863007,38.285362 -87.874039,38.316788 -87.883446,38.315552 -87.888466,38.300659 -87.914108,38.281048 -87.913651,38.302345 -87.925919,38.304771 -87.980019,38.241085 -87.986008,38.234814 -87.977928,38.200714 -87.932289,38.171131 -87.931992,38.157528 -87.950569,38.136913 -87.973503,38.13176 -88.018547,38.103302 -88.012329,38.092346 -87.964867,38.096748 -87.975296,38.073307 -88.034729,38.054085 -88.043091,38.04512 -88.041473,38.038303 -88.021698,38.033531 -88.029213,38.008236 -88.021706,37.975056 -88.042511,37.956264 -88.041771,37.934498 -88.064621,37.929783 -88.078941,37.944 -88.084,37.92366 -88.030441,37.917591 -88.026588,37.905758 -88.044868,37.896004 -88.100082,37.90617 -88.101456,37.895306 -88.075737,37.867809 -88.034241,37.843746 -88.042137,37.827522 -88.089264,37.831249 -88.086029,37.817612 -88.035576,37.805683 -88.072472,37.735401 -88.133636,37.700745 -88.15937,37.660686 -88.157631,37.628479 -88.134171,37.583572 -88.071564,37.51099Illinois17E N CenIL143986.611993.3351.1430602E72924880.04202240.05552233.05878369.04199206.03741715.0652603.0538071.05417967.0385040.01360159.0828906.00.4860.5141747776.0-77.008232,38.966557 -76.911209,38.889988 -77.045448,38.78812 -77.035248,38.813915 -77.045189,38.829365 -77.040405,38.838413 -77.039078,38.862431 -77.067886,38.886101 -77.078949,38.9156 -77.122627,38.93206 -77.042389,38.993431 -77.008232,38.966557District of Columbia11S AtlDC159.05517.991606900.0122087.0249634.0282970.0323930.0229975.0106694.036621.0111422.0303994.023442.065498.022407.00.4660.53472696.0-75.70742,38.557476 -75.71106,38.649551 -75.724937,38.83017 -75.752922,39.141548 -75.761658,39.247753 -75.764664,39.295849 -75.772697,39.383007 -75.791435,39.723755 -75.775269,39.724442 -75.745934,39.774818 -75.695114,39.820347 -75.644341,39.838196 -75.583794,39.840008 -75.470345,39.826435 -75.42083,39.79887 -75.412117,39.789658 -75.428009,39.77813 -75.460754,39.763248 -75.475128,39.741718 -75.476334,39.719971 -75.489639,39.714745 -75.610725,39.612793 -75.562996,39.566723 -75.590187,39.463768 -75.515572,39.36694 -75.402481,39.257637 -75.397728,39.073036 -75.324852,39.012386 -75.307899,38.945911 -75.190941,38.80867 -75.083138,38.799812 -75.045998,38.44949 -75.068298,38.449963 -75.093094,38.450451 -75.350204,38.455208 -75.69915,38.463066 -75.70742,38.557476Delaware10S AtlDE5062.4561385.022666168.0175867.0247497.0322968.0343200.0247566.0258087.042968.08069.0335147.013945.087973.044140.00.4850.515102776.0-79.231903,38.480373 -79.272598,38.437183 -79.317238,38.41251 -79.48658,38.462025 -79.536743,38.553688 -79.642632,38.592239 -79.669655,38.55006 -79.66584,38.52066 -79.692879,38.500237 -79.684319,38.430119 -79.720261,38.394566 -79.733055,38.351719 -79.764229,38.35387 -79.800552,38.314205 -79.803001,38.298748 -79.786736,38.284996 -79.793846,38.268543 -79.831375,38.250156 -79.916382,38.179142 -79.910561,38.162483 -79.935547,38.121185 -79.928513,38.103188 -79.957733,38.067242 -79.966713,38.038498 -80.000717,37.989746 -80.055023,37.955524 -80.106705,37.914536 -80.118721,37.891155 -80.160217,37.877106 -80.172432,37.860062 -80.171806,37.842846 -80.223946,37.802242 -80.220757,37.778736 -80.254898,37.757111 -80.250244,37.725929 -80.303322,37.682549 -80.295914,37.671379 -80.305077,37.652122 -80.301147,37.640423 -80.254639,37.640579 -80.219147,37.624142 -80.246613,37.596771 -80.31694,37.566593 -80.326126,37.533276 -80.308525,37.528244 -80.280952,37.536133 -80.288139,37.511024 -80.347733,37.491051 -80.352379,37.475975 -80.388527,37.465599 -80.425598,37.43478 -80.474983,37.422695 -80.487015,37.433735 -80.488098,37.460472 -80.50898,37.474922 -80.542969,37.469086 -80.597702,37.44593 -80.705414,37.388256 -80.729942,37.392597 -80.746529,37.387615 -80.747894,37.37896 -80.763199,37.371292 -80.770226,37.386074 -80.799446,37.391632 -80.799812,37.412941 -80.850723,37.42334 -80.877556,37.388577 -80.848618,37.350822 -80.855629,37.339291 -80.93438,37.30125 -80.968086,37.291672 -80.978729,37.296356 -80.98613,37.306122 -81.025124,37.285942 -81.140923,37.274807 -81.223114,37.240097 -81.31205,37.293591 -81.358971,37.338837 -81.391121,37.311039 -81.403519,37.282509 -81.475533,37.254307 -81.495705,37.252735 -81.505707,37.234257 -81.556824,37.206238 -81.666054,37.204796 -81.701897,37.235321 -81.738625,37.250378 -81.752022,37.272144 -81.792824,37.287041 -81.815544,37.279427 -81.83905,37.285393 -81.858841,37.306919 -81.863976,37.325344 -81.897316,37.340477 -81.926979,37.371616 -81.920891,37.415405 -81.988358,37.466476 -81.976578,37.482796 -81.948151,37.492916 -81.935608,37.506535 -81.959732,37.531063 -81.97673,37.543144 -82.026505,37.530411 -82.049286,37.551346 -82.055817,37.525234 -82.084541,37.548203 -82.142654,37.557346 -82.146667,37.565815 -82.137619,37.56979 -82.131927,37.590431 -82.159454,37.593464 -82.185692,37.640564 -82.205582,37.623913 -82.23851,37.656673 -82.295761,37.668957 -82.329536,37.744072 -82.319633,37.758327 -82.339981,37.784302 -82.405937,37.811623 -82.421638,37.872261 -82.437737,37.89476 -82.500336,37.922169 -82.493523,37.942421 -82.480301,37.954304 -82.475906,37.975815 -82.524803,38.015572 -82.59333,38.109875 -82.646248,38.146244 -82.647278,38.16935 -82.613884,38.178009 -82.606766,38.193741 -82.616348,38.238728 -82.589233,38.245304 -82.574699,38.25589 -82.58017,38.292427 -82.572418,38.307728 -82.598358,38.368382 -82.586723,38.412437 -82.575539,38.40382 -82.547668,38.400429 -82.49511,38.40575 -82.415016,38.430309 -82.39489,38.428387 -82.329308,38.441868 -82.314369,38.465145 -82.2901,38.579998 -82.271027,38.594807 -82.213791,38.584751 -82.18438,38.594948 -82.17379,38.632107 -82.18911,38.677811 -82.184105,38.71022 -82.216881,38.778858 -82.197853,38.804539 -82.146233,38.838707 -82.13945,38.899319 -82.101341,38.952015 -82.085152,38.977119 -82.05864,38.988987 -82.043022,39.014061 -81.999817,39.015182 -81.975327,38.992928 -81.937874,38.991096 -81.927971,38.984192 -81.89875,38.932144 -81.931992,38.894661 -81.91539,38.884365 -81.892838,38.873371 -81.866943,38.885628 -81.841057,38.937809 -81.823921,38.948387 -81.783371,38.923481 -81.762444,38.930099 -81.781876,38.968449 -81.775826,39.01675 -81.813606,39.044029 -81.824417,39.066338 -81.81971,39.076939 -81.786507,39.077179 -81.753708,39.094643 -81.74485,39.125797 -81.759056,39.175674 -81.723221,39.213192 -81.698051,39.219944 -81.689674,39.260151 -81.667671,39.27042 -81.572838,39.265842 -81.557541,39.332581 -81.540802,39.352634 -81.465164,39.406784 -81.448112,39.410954 -81.434135,39.405949 -81.376076,39.345615 -81.338997,39.353569 -81.28418,39.386997 -81.237785,39.388397 -81.225113,39.408283 -81.20047,39.415821 -81.180733,39.437725 -81.117256,39.467709 -81.098412,39.496376 -81.037552,39.532589 -81.032738,39.544067 -80.983818,39.58173 -80.932785,39.606865 -80.912766,39.607277 -80.881287,39.624004 -80.872925,39.662334 -80.863594,39.680275 -80.83297,39.703323 -80.832481,39.718758 -80.856636,39.736259 -80.870911,39.759918 -80.81929,39.808926 -80.826103,39.839592 -80.798714,39.856647 -80.791039,39.872272 -80.812325,39.904827 -80.808029,39.915829 -80.796211,39.919765 -80.768318,39.913239 -80.759079,39.921192 -80.763252,39.946941 -80.739082,39.983402 -80.738434,40.035591 -80.702263,40.154018 -80.701088,40.16811 -80.678757,40.19408 -80.650314,40.245609 -80.614891,40.276432 -80.604721,40.306175 -80.609451,40.373207 -80.629448,40.388596 -80.628052,40.398159 -80.602036,40.480473 -80.625458,40.504398 -80.633644,40.539139 -80.668823,40.568214 -80.667931,40.582073 -80.637543,40.613918 -80.611755,40.619999 -80.574623,40.61591 -80.522209,40.637138 -80.524567,40.478718 -80.523773,40.402966 -80.526253,40.162449 -80.525169,40.022751 -80.524857,39.958344 -80.524467,39.721127 -80.429283,39.719761 -79.918488,39.721588 -79.765358,39.721729 -79.481209,39.720196 -79.490089,39.197289 -79.461418,39.213158 -79.449509,39.211987 -79.385078,39.269196 -79.346428,39.291988 -79.295509,39.300438 -79.28006,39.325142 -79.260406,39.348541 -79.163261,39.393398 -79.158371,39.413864 -79.131645,39.416935 -79.104324,39.447212 -79.096962,39.464535 -79.104843,39.470779 -79.070877,39.470757 -79.064659,39.485733 -79.049103,39.483723 -78.970688,39.438431 -78.955643,39.460365 -78.871071,39.5257 -78.838371,39.563229 -78.806808,39.566734 -78.82267,39.585609 -78.798729,39.61533 -78.798409,39.630745 -78.772964,39.644154 -78.767876,39.626526 -78.732643,39.626877 -78.730759,39.621456 -78.736511,39.608704 -78.774002,39.601528 -78.761711,39.581703 -78.732979,39.576553 -78.716576,39.559483 -78.666687,39.536839 -78.649406,39.537907 -78.637344,39.529858 -78.60463,39.535591 -78.564453,39.520981 -78.509048,39.525066 -78.481544,39.519844 -78.456078,39.533642 -78.446136,39.548225 -78.421089,39.549316 -78.462082,39.580742 -78.450897,39.592613 -78.404266,39.587521 -78.432159,39.620861 -78.384903,39.614403 -78.377937,39.631226 -78.357048,39.632278 -78.34819,39.640499 -78.273285,39.618317 -78.257996,39.641075 -78.2295,39.658474 -78.227867,39.673897 -78.204575,39.675846 -78.183243,39.69455 -78.094612,39.675507 -78.026695,39.622772 -77.995483,39.598873 -77.964516,39.611229 -77.945259,39.585915 -77.935738,39.591843 -77.947823,39.614918 -77.938889,39.618122 -77.903534,39.596027 -77.891022,39.600605 -77.888718,39.616474 -77.855804,39.60207 -77.84269,39.605278 -77.840149,39.572643 -77.853241,39.565357 -77.885452,39.564354 -77.890198,39.557995 -77.869843,39.545815 -77.864914,39.514553 -77.844131,39.531834 -77.835747,39.525513 -77.829208,39.529156 -77.825546,39.51194 -77.84816,39.501907 -77.82547,39.493809 -77.771835,39.498016 -77.799782,39.480728 -77.785393,39.459003 -77.804474,39.463039 -77.796082,39.450817 -77.804977,39.439919 -77.802559,39.432217 -77.757271,39.425064 -77.741119,39.403339 -77.737518,39.396095 -77.756508,39.378376 -77.745735,39.360271 -77.754585,39.338493 -77.750374,39.326717 -77.727753,39.317696 -77.759743,39.284542 -77.768517,39.246449 -77.805733,39.196503 -77.820328,39.141621 -77.830963,39.132076 -78.033607,39.265537 -78.229782,39.391014 -78.277153,39.423367 -78.347816,39.456902 -78.350502,39.38073 -78.365746,39.361588 -78.3442,39.350857 -78.341118,39.341358 -78.413818,39.257439 -78.399399,39.24485 -78.42334,39.21204 -78.424339,39.197525 -78.402634,39.17049 -78.43084,39.148521 -78.44825,39.118931 -78.485519,39.111839 -78.501869,39.093578 -78.536919,39.057026 -78.564445,39.035038 -78.549469,39.02338 -78.553474,39.013828 -78.598961,38.967197 -78.631111,38.979603 -78.647232,38.950443 -78.680489,38.921574 -78.719246,38.904881 -78.724403,38.930214 -78.737991,38.929173 -78.749512,38.911381 -78.793312,38.880108 -78.816116,38.833633 -78.866814,38.76329 -78.987701,38.846649 -79.033989,38.799847 -79.055046,38.79052 -79.056801,38.76194 -79.087479,38.707153 -79.088791,38.659088 -79.121307,38.663651 -79.12767,38.658127 -79.231903,38.480373West Virginia54S AtlWV62384.2375.1991793477.0500259.0688557.0861536.0931941.0661702.0493164.0106918.07237.0671085.071142.0205950.0124172.00.480.52317564.0-75.71106,38.649551 -75.70742,38.557476 -75.69915,38.463066 -75.350204,38.455208 -75.093094,38.450451 -75.155243,38.369625 -75.150986,38.273766 -75.262863,38.201416 -75.373428,38.06892 -75.37278,38.016712 -75.626434,37.996418 -75.648216,37.970131 -75.86573,37.979656 -75.769554,38.097248 -75.897797,38.174934 -75.838074,38.231594 -75.861671,38.240044 -75.794174,38.263603 -75.894958,38.258873 -75.872437,38.357231 -75.886826,38.375462 -75.949928,38.282055 -75.995285,38.282524 -76.020805,38.321896 -76.06546,38.258934 -76.294273,38.436935 -76.291985,38.478729 -76.192215,38.543343 -76.251053,38.595081 -76.031937,38.571922 -76.028061,38.622005 -76.046921,38.591858 -76.075996,38.610783 -76.124039,38.707977 -76.174042,38.709095 -76.223312,38.762791 -76.26712,38.769886 -76.337624,38.679375 -76.350533,38.699024 -76.272415,38.834 -76.195175,38.765255 -76.165855,38.788609 -76.114372,38.885456 -76.075867,38.889549 -76.102898,38.898018 -76.095497,38.948132 -76.113869,38.920715 -76.199669,38.973354 -76.111282,39.118595 -76.221771,39.092918 -76.238892,39.130825 -76.218437,39.204853 -76.112373,39.321297 -76.037422,39.358368 -75.849739,39.379139 -75.978798,39.39455 -75.952637,39.47118 -75.974762,39.524021 -76.03141,39.569927 -76.078506,39.542362 -76.154526,39.401936 -76.226662,39.374889 -76.364029,39.39328 -76.39904,39.231144 -76.531296,39.242619 -76.604027,39.259354 -76.565132,39.231445 -76.576981,39.19812 -76.60733,39.180984 -76.595139,39.158688 -76.563919,39.196266 -76.423935,39.118355 -76.472038,38.908237 -76.549126,38.758972 -76.525253,38.709633 -76.508896,38.522099 -76.385811,38.391281 -76.405457,38.34602 -76.421463,38.320499 -76.471924,38.335659 -76.520081,38.410137 -76.647255,38.450424 -76.343781,38.213062 -76.33017,38.045704 -76.577271,38.222637 -76.760239,38.23428 -76.864182,38.391346 -76.908577,38.29985 -76.97303,38.331028 -77.002396,38.426853 -77.220924,38.390663 -77.255875,38.413593 -77.277756,38.487099 -77.12999,38.648125 -77.125114,38.677799 -77.093147,38.703983 -77.081879,38.715279 -77.057121,38.712021 -77.046471,38.718781 -77.045448,38.78812 -76.911209,38.889988 -77.008232,38.966557 -77.042389,38.993431 -77.122627,38.93206 -77.152046,38.964779 -77.243729,38.97588 -77.255989,39.027573 -77.3246,39.062588 -77.346519,39.068512 -77.433037,39.066776 -77.459694,39.080837 -77.479248,39.103958 -77.513046,39.116653 -77.516617,39.157444 -77.478638,39.176933 -77.461998,39.218632 -77.464958,39.229057 -77.494064,39.249912 -77.542191,39.26894 -77.568962,39.298393 -77.616524,39.299717 -77.679588,39.31868 -77.727753,39.317696 -77.750374,39.326717 -77.754585,39.338493 -77.745735,39.360271 -77.756508,39.378376 -77.737518,39.396095 -77.741119,39.403339 -77.757271,39.425064 -77.802559,39.432217 -77.804977,39.439919 -77.796082,39.450817 -77.804474,39.463039 -77.785393,39.459003 -77.799782,39.480728 -77.771835,39.498016 -77.82547,39.493809 -77.84816,39.501907 -77.825546,39.51194 -77.829208,39.529156 -77.835747,39.525513 -77.844131,39.531834 -77.864914,39.514553 -77.869843,39.545815 -77.890198,39.557995 -77.885452,39.564354 -77.853241,39.565357 -77.840149,39.572643 -77.84269,39.605278 -77.855804,39.60207 -77.888718,39.616474 -77.891022,39.600605 -77.903534,39.596027 -77.938889,39.618122 -77.947823,39.614918 -77.935738,39.591843 -77.945259,39.585915 -77.964516,39.611229 -77.995483,39.598873 -78.026695,39.622772 -78.094612,39.675507 -78.183243,39.69455 -78.204575,39.675846 -78.227867,39.673897 -78.2295,39.658474 -78.257996,39.641075 -78.273285,39.618317 -78.34819,39.640499 -78.357048,39.632278 -78.377937,39.631226 -78.384903,39.614403 -78.432159,39.620861 -78.404266,39.587521 -78.450897,39.592613 -78.462082,39.580742 -78.421089,39.549316 -78.446136,39.548225 -78.456078,39.533642 -78.481544,39.519844 -78.509048,39.525066 -78.564453,39.520981 -78.60463,39.535591 -78.637344,39.529858 -78.649406,39.537907 -78.666687,39.536839 -78.716576,39.559483 -78.732979,39.576553 -78.761711,39.581703 -78.774002,39.601528 -78.736511,39.608704 -78.730759,39.621456 -78.732643,39.626877 -78.767876,39.626526 -78.772964,39.644154 -78.798409,39.630745 -78.798729,39.61533 -78.82267,39.585609 -78.806808,39.566734 -78.838371,39.563229 -78.871071,39.5257 -78.955643,39.460365 -78.970688,39.438431 -79.049103,39.483723 -79.064659,39.485733 -79.070877,39.470757 -79.104843,39.470779 -79.096962,39.464535 -79.104324,39.447212 -79.131645,39.416935 -79.158371,39.413864 -79.163261,39.393398 -79.260406,39.348541 -79.28006,39.325142 -79.295509,39.300438 -79.346428,39.291988 -79.385078,39.269196 -79.449509,39.211987 -79.461418,39.213158 -79.490089,39.197289 -79.481209,39.720196 -79.396851,39.719234 -78.930428,39.722252 -78.818016,39.72303 -78.385048,39.72366 -78.334816,39.724007 -78.096222,39.725368 -77.476082,39.719528 -77.464722,39.719978 -77.221344,39.720581 -76.997108,39.720791 -76.790794,39.721153 -76.570145,39.720161 -76.233444,39.721748 -76.139549,39.722122 -75.791435,39.723755 -75.772697,39.383007 -75.764664,39.295849 -75.761658,39.247753 -75.752922,39.141548 -75.724937,38.83017 -75.71106,38.649551-76.293129,38.907722 -76.29451,38.967567 -76.339066,38.956661 -76.314453,38.941925 -76.322632,38.912086 -76.342545,38.924057 -76.329712,38.875889 -76.375565,38.854103 -76.356796,38.958187 -76.299812,39.040596 -76.248146,38.978897 -76.246735,38.92358 -76.273514,38.94923 -76.293129,38.907722-75.068298,38.449963 -75.045998,38.44949 -75.087692,38.322945 -75.068298,38.449963-75.270721,38.027588 -75.244461,38.037903 -75.209755,38.094177 -75.164742,38.204845 -75.094398,38.320202 -75.17318,38.124187 -75.242584,38.028526 -75.270721,38.027588Maryland24S AtlMD25316.3456188.7944781468.01245814.01748991.02318671.02462797.01783061.01732837.0376449.0202169.02481342.0111536.0586994.0260308.00.4850.515684773.0-102.043999,37.64146 -102.041557,37.386261 -102.036758,36.988972 -102.997223,36.998505 -103.077377,36.999741 -103.993111,36.994446 -105.145615,36.993183 -105.212532,36.99258 -105.712891,36.994541 -105.991425,36.992275 -106.471588,36.991493 -106.860657,36.989491 -106.889778,36.999073 -107.410217,36.99752 -107.471855,36.998772 -108.371834,36.999474 -109.047821,36.996643 -109.044937,37.630829 -109.042542,37.887428 -109.042801,38.152943 -109.055199,38.24493 -109.053284,38.494663 -109.050751,39.360989 -109.052864,39.518196 -109.051888,39.65741 -109.050591,40.210545 -109.045479,40.665329 -109.047638,40.998474 -107.918037,41.00341 -107.303436,41.000168 -106.864838,40.998489 -106.328545,41.001316 -106.202896,41.000111 -105.278259,40.996365 -104.933968,40.994305 -104.051201,41.003227 -103.571823,40.999664 -103.382469,41.000332 -102.651802,40.998135 -102.620789,41.000225 -102.047279,40.998077 -102.046532,40.743134 -102.04557,40.697323 -102.047157,40.431084 -102.047081,40.342651 -102.051071,39.998928 -102.048981,39.568699 -102.04834,39.562809 -102.047417,39.126751 -102.048515,39.036999 -102.047112,38.692539 -102.047127,38.615486 -102.04509,38.263329 -102.045601,38.253807 -102.043518,37.734386 -102.043999,37.64146Colorado08MtnCO268659.501960.3643294394.0854214.01282489.01631295.01663099.01233023.01216639.0210274.046983.01633281.099438.0421079.0181760.00.4950.505512677.0-86.510674,36.655033 -86.770538,36.652058 -87.068184,36.650768 -87.112701,36.651264 -87.346603,36.649231 -87.64064,36.645168 -87.693512,36.64444 -87.853516,36.641472 -87.870689,36.669373 -88.071312,36.67963 -88.041061,36.582668 -88.035049,36.538147 -88.042732,36.496517 -88.495979,36.49815 -88.512634,36.499489 -88.810661,36.498985 -88.826302,36.499847 -88.830315,36.499794 -89.346596,36.502548 -89.414711,36.502617 -89.418137,36.510563 -89.373878,36.616188 -89.363548,36.625702 -89.342323,36.628849 -89.322273,36.622017 -89.283424,36.575249 -89.241615,36.569267 -89.21006,36.581894 -89.200119,36.631298 -89.177094,36.653004 -89.167831,36.67157 -89.197495,36.713367 -89.196297,36.727421 -89.1772,36.760925 -89.151367,36.759041 -89.125473,36.768032 -89.125839,36.792412 -89.164375,36.80442 -89.173462,36.829384 -89.166496,36.843422 -89.129585,36.86644 -89.104965,36.953869 -89.107147,36.977451 -89.12986,36.988113 -89.150246,36.99844 -89.174332,37.025711 -89.169548,37.064236 -89.146347,37.093185 -89.116821,37.112137 -89.065033,37.18586 -88.993172,37.220036 -88.932503,37.218407 -88.863289,37.202194 -88.746506,37.152107 -88.739113,37.141182 -88.68837,37.13541 -88.61422,37.109047 -88.559273,37.072815 -88.517273,37.06477 -88.4907,37.06818 -88.476799,37.072144 -88.45047,37.098671 -88.422516,37.15691 -88.450699,37.205669 -88.501427,37.257782 -88.511322,37.296852 -88.467644,37.400757 -88.419853,37.420292 -88.359177,37.409309 -88.311707,37.442852 -88.087883,37.476273 -88.071564,37.51099 -88.134171,37.583572 -88.157631,37.628479 -88.15937,37.660686 -88.133636,37.700745 -88.072472,37.735401 -88.035576,37.805683 -88.011192,37.801308 -87.95871,37.77618 -87.939583,37.799507 -87.920143,37.809685 -87.910202,37.83857 -87.936821,37.875179 -87.934456,37.90416 -87.921867,37.919865 -87.89901,37.924553 -87.857162,37.890903 -87.823624,37.878212 -87.753761,37.898087 -87.72818,37.894543 -87.709389,37.899712 -87.679703,37.897007 -87.6847,37.83633 -87.65168,37.828133 -87.607574,37.843777 -87.59362,37.864868 -87.594704,37.890724 -87.627121,37.923412 -87.604309,37.971115 -87.504791,37.915585 -87.452278,37.936478 -87.387543,37.934925 -87.310555,37.893673 -87.272743,37.870773 -87.226761,37.849072 -87.175781,37.838593 -87.158081,37.82692 -87.131882,37.789688 -87.10643,37.784203 -87.071312,37.807087 -87.036484,37.907955 -87.013161,37.924713 -86.989037,37.930565 -86.93158,37.937988 -86.900085,37.953644 -86.863281,37.986866 -86.826317,37.991505 -86.802826,37.978745 -86.753838,37.898304 -86.728889,37.894566 -86.68914,37.911797 -86.668671,37.913139 -86.660324,37.902515 -86.670685,37.860584 -86.665939,37.847324 -86.645584,37.845943 -86.614799,37.857918 -86.598328,37.921013 -86.581802,37.925606 -86.541107,37.921455 -86.522758,37.927811 -86.516922,37.942181 -86.530869,37.987415 -86.527855,38.018631 -86.519112,38.046986 -86.503136,38.051586 -86.458389,38.059097 -86.44249,38.075932 -86.442543,38.088634 -86.474358,38.111645 -86.464867,38.129093 -86.452545,38.129692 -86.407204,38.108154 -86.3937,38.12323 -86.344063,38.134205 -86.335442,38.143963 -86.343147,38.155495 -86.387123,38.167957 -86.388329,38.194744 -86.364372,38.193226 -86.341629,38.177223 -86.297699,38.150238 -86.291466,38.078423 -86.277725,38.058105 -86.252182,38.040653 -86.190651,38.017689 -86.105019,38.011265 -86.05275,37.966713 -86.031654,37.992878 -86.006699,38.001694 -85.958618,38.011768 -85.930908,38.033978 -85.914787,38.064804 -85.912109,38.179932 -85.852371,38.238491 -85.839943,38.276222 -85.806587,38.28611 -85.786247,38.282322 -85.746964,38.270245 -85.681427,38.300884 -85.654266,38.337685 -85.643631,38.383621 -85.612679,38.446606 -85.50724,38.471355 -85.466423,38.518112 -85.432411,38.536953 -85.417503,38.561413 -85.424446,38.584778 -85.45372,38.694614 -85.446732,38.724781 -85.418228,38.738358 -85.335052,38.736946 -85.271439,38.744316 -85.205208,38.695755 -85.16098,38.695114 -85.119705,38.714077 -85.068504,38.750362 -85.025124,38.764229 -84.975662,38.780579 -84.818832,38.793346 -84.824478,38.8344 -84.787498,38.866581 -84.788719,38.884323 -84.803276,38.897129 -84.859795,38.901981 -84.875305,38.90937 -84.875931,38.927544 -84.846367,38.954571 -84.834496,38.982716 -84.844276,39.005772 -84.876343,39.032837 -84.890045,39.050591 -84.886757,39.064987 -84.827911,39.10363 -84.811531,39.102528 -84.789978,39.106976 -84.742928,39.142006 -84.667542,39.089565 -84.622704,39.074875 -84.593124,39.070206 -84.515358,39.094135 -84.492111,39.107304 -84.444977,39.111767 -84.425743,39.084663 -84.4198,39.047276 -84.391373,39.035683 -84.34584,39.03775 -84.313377,39.014011 -84.290199,38.944473 -84.261589,38.917412 -84.235359,38.874489 -84.228767,38.812622 -84.176819,38.788429 -84.088936,38.765434 -84.053871,38.763664 -83.962234,38.777576 -83.912613,38.757889 -83.857628,38.744846 -83.837608,38.711807 -83.790543,38.693771 -83.770302,38.650745 -83.712906,38.635479 -83.678612,38.620853 -83.655838,38.623806 -83.643272,38.635788 -83.633324,38.664898 -83.618462,38.677898 -83.526642,38.696037 -83.50016,38.690063 -83.453705,38.6637 -83.371513,38.654922 -83.330116,38.631912 -83.320419,38.606487 -83.306625,38.596241 -83.290138,38.596561 -83.27285,38.60918 -83.24511,38.624096 -83.182037,38.609764 -83.14325,38.619263 -83.111343,38.664757 -83.060982,38.68565 -83.027046,38.714436 -82.972588,38.719566 -82.92141,38.746338 -82.890419,38.742699 -82.873299,38.718929 -82.880119,38.683224 -82.860138,38.652317 -82.853966,38.60038 -82.827103,38.571583 -82.802475,38.557209 -82.742058,38.552986 -82.695694,38.539063 -82.669876,38.50206 -82.613861,38.472588 -82.586723,38.412437 -82.598358,38.368382 -82.572418,38.307728 -82.58017,38.292427 -82.574699,38.25589 -82.589233,38.245304 -82.616348,38.238728 -82.606766,38.193741 -82.613884,38.178009 -82.647278,38.16935 -82.646248,38.146244 -82.59333,38.109875 -82.524803,38.015572 -82.475906,37.975815 -82.480301,37.954304 -82.493523,37.942421 -82.500336,37.922169 -82.437737,37.89476 -82.421638,37.872261 -82.405937,37.811623 -82.339981,37.784302 -82.319633,37.758327 -82.329536,37.744072 -82.295761,37.668957 -82.23851,37.656673 -82.205582,37.623913 -82.185692,37.640564 -82.159454,37.593464 -82.131927,37.590431 -82.137619,37.56979 -82.146667,37.565815 -82.142654,37.557346 -82.084541,37.548203 -82.055817,37.525234 -82.049286,37.551346 -82.026505,37.530411 -81.97673,37.543144 -81.959732,37.531063 -82.289085,37.304752 -82.353973,37.26041 -82.406013,37.250595 -82.550163,37.199272 -82.568146,37.193813 -82.719215,37.109917 -82.721497,37.093018 -82.70929,37.075382 -82.720177,37.06583 -82.723717,37.033894 -82.81234,37.005505 -82.866676,36.974491 -82.860748,36.932068 -82.878159,36.8936 -82.95092,36.863987 -83.046745,36.858704 -83.068062,36.850906 -83.128326,36.779064 -83.124496,36.75108 -83.138618,36.739971 -83.203758,36.734173 -83.32148,36.709446 -83.385948,36.688133 -83.404243,36.672241 -83.460312,36.661747 -83.530983,36.661396 -83.646889,36.616894 -83.675262,36.598621 -83.695694,36.584167 -83.935677,36.591209 -84.006821,36.592007 -84.254555,36.595371 -84.256844,36.595417 -84.781929,36.605003 -84.791115,36.605366 -84.998512,36.620914 -85.272537,36.625553 -85.300133,36.626038 -85.437408,36.618137 -85.7855,36.626629 -85.980629,36.63306 -86.199005,36.643246 -86.415451,36.65089 -86.510674,36.655033-89.533195,36.498108 -89.566986,36.518738 -89.568153,36.541409 -89.556137,36.557743 -89.530365,36.564556 -89.493126,36.559116 -89.481674,36.547775 -89.471375,36.525555 -89.481682,36.504696 -89.475822,36.498547 -89.533195,36.498108Kentucky21E S CenKY103961.9041772.5424551524.01237346.01718663.02195130.02356394.01656590.01502949.0273091.048158.01970934.0148125.0556744.0361621.00.4820.518646517.0-95.071693,37.001408 -95.406372,37.000538 -95.525764,37.000938 -95.785492,36.998035 -95.957703,37.000011 -96.005791,36.998264 -96.518898,37.000538 -96.74839,37.000134 -97.137375,36.999779 -97.46508,36.996441 -97.803917,36.998543 -98.104187,36.998646 -98.346794,36.999035 -98.539864,36.998348 -98.999138,36.998043 -99.43708,36.99453 -99.544243,36.995434 -99.998848,36.995388 -100.088158,36.997623 -100.633812,36.997807 -100.950142,36.996635 -101.071159,36.99744 -101.553238,36.996666 -102.024071,36.988853 -102.036758,36.988972 -102.041557,37.386261 -102.043999,37.64146 -102.043518,37.734386 -102.045601,38.253807 -102.04509,38.263329 -102.047127,38.615486 -102.047112,38.692539 -102.048515,39.036999 -102.047417,39.126751 -102.04834,39.562809 -102.048981,39.568699 -102.051071,39.998928 -101.406952,40.001007 -101.321709,40.001823 -100.754425,40.000195 -100.734619,39.999168 -100.190697,40.00058 -100.180496,40.000473 -99.627472,40.002979 -99.177834,39.999565 -99.064384,39.998325 -98.720284,39.998447 -98.504143,39.997116 -98.26384,39.998421 -97.929268,39.99844 -97.816269,39.999718 -97.361595,39.997375 -96.907982,39.996151 -96.801117,39.994473 -96.453743,39.994171 -96.240311,39.994503 -96.000977,39.995159 -95.780434,39.993488 -95.329445,39.992596 -95.308441,39.999409 -95.240707,39.942108 -95.207344,39.938179 -95.19371,39.910183 -95.150299,39.908058 -95.100471,39.869869 -95.062996,39.866543 -95.033257,39.87785 -95.021523,39.896984 -94.964775,39.900829 -94.937996,39.896088 -94.936264,39.849392 -94.92363,39.833138 -94.898079,39.828339 -94.88826,39.817406 -94.899078,39.793781 -94.933022,39.78278 -94.934868,39.775433 -94.921555,39.757847 -94.876823,39.760685 -94.870941,39.754124 -94.877617,39.739311 -94.905434,39.726761 -94.930611,39.727032 -94.952896,39.736507 -94.96154,39.732044 -94.978325,39.684994 -95.028046,39.661919 -95.055771,39.625694 -95.053368,39.586781 -95.108742,39.560696 -95.101791,39.532852 -95.047356,39.485332 -95.040268,39.462944 -94.985962,39.439465 -94.958252,39.411449 -94.925507,39.381268 -94.898041,39.380642 -94.911102,39.340122 -94.90744,39.323029 -94.880867,39.286045 -94.833237,39.261765 -94.82058,39.211002 -94.78981,39.19688 -94.730293,39.171253 -94.675278,39.174919 -94.646172,39.158424 -94.612419,39.151646 -94.60099,39.141224 -94.607903,39.112797 -94.609047,39.044662 -94.612236,38.837101 -94.612915,38.737213 -94.618484,38.471458 -94.61882,38.392014 -94.617096,38.055752 -94.616501,38.030354 -94.619057,37.679825 -94.618759,37.65033 -94.61853,37.360714 -94.618744,37.327679 -94.620438,37.060085 -94.620155,36.996983 -95.032509,37.00071 -95.071693,37.001408Kansas20W N CenKS211921.6411188.8652477574.0658600.0944726.01214645.01262929.0907383.0928575.0135598.07585.01172214.057772.0346339.0166429.00.490.51453411.0-79.144325,36.546059 -79.217064,36.549782 -79.5103,36.547657 -79.717445,36.54789 -80.024055,36.545025 -80.048096,36.547134 -80.43531,36.551044 -80.611053,36.557297 -80.838158,36.563438 -80.903442,36.565212 -81.345299,36.572865 -81.669998,36.589649 -81.652435,36.607555 -81.829056,36.611481 -81.918449,36.613495 -81.929459,36.595837 -82.154327,36.595043 -82.216805,36.593967 -82.296997,36.591698 -82.610962,36.591446 -82.849937,36.590946 -82.986809,36.591198 -83.211029,36.588001 -83.248489,36.589848 -83.275131,36.60038 -83.464302,36.598755 -83.675262,36.598621 -83.646889,36.616894 -83.530983,36.661396 -83.460312,36.661747 -83.404243,36.672241 -83.385948,36.688133 -83.32148,36.709446 -83.203758,36.734173 -83.138618,36.739971 -83.124496,36.75108 -83.128326,36.779064 -83.068062,36.850906 -83.046745,36.858704 -82.95092,36.863987 -82.878159,36.8936 -82.860748,36.932068 -82.866676,36.974491 -82.81234,37.005505 -82.723717,37.033894 -82.720177,37.06583 -82.70929,37.075382 -82.721497,37.093018 -82.719215,37.109917 -82.568146,37.193813 -82.550163,37.199272 -82.406013,37.250595 -82.353973,37.26041 -82.289085,37.304752 -81.959732,37.531063 -81.935608,37.506535 -81.948151,37.492916 -81.976578,37.482796 -81.988358,37.466476 -81.920891,37.415405 -81.926979,37.371616 -81.897316,37.340477 -81.863976,37.325344 -81.858841,37.306919 -81.83905,37.285393 -81.815544,37.279427 -81.792824,37.287041 -81.752022,37.272144 -81.738625,37.250378 -81.701897,37.235321 -81.666054,37.204796 -81.556824,37.206238 -81.505707,37.234257 -81.495705,37.252735 -81.475533,37.254307 -81.403519,37.282509 -81.391121,37.311039 -81.358971,37.338837 -81.31205,37.293591 -81.223114,37.240097 -81.140923,37.274807 -81.025124,37.285942 -80.98613,37.306122 -80.978729,37.296356 -80.968086,37.291672 -80.93438,37.30125 -80.855629,37.339291 -80.848618,37.350822 -80.877556,37.388577 -80.850723,37.42334 -80.799812,37.412941 -80.799446,37.391632 -80.770226,37.386074 -80.763199,37.371292 -80.747894,37.37896 -80.746529,37.387615 -80.729942,37.392597 -80.705414,37.388256 -80.597702,37.44593 -80.542969,37.469086 -80.50898,37.474922 -80.488098,37.460472 -80.487015,37.433735 -80.474983,37.422695 -80.425598,37.43478 -80.388527,37.465599 -80.352379,37.475975 -80.347733,37.491051 -80.288139,37.511024 -80.280952,37.536133 -80.308525,37.528244 -80.326126,37.533276 -80.31694,37.566593 -80.246613,37.596771 -80.219147,37.624142 -80.254639,37.640579 -80.301147,37.640423 -80.305077,37.652122 -80.295914,37.671379 -80.303322,37.682549 -80.250244,37.725929 -80.254898,37.757111 -80.220757,37.778736 -80.223946,37.802242 -80.171806,37.842846 -80.172432,37.860062 -80.160217,37.877106 -80.118721,37.891155 -80.106705,37.914536 -80.055023,37.955524 -80.000717,37.989746 -79.966713,38.038498 -79.957733,38.067242 -79.928513,38.103188 -79.935547,38.121185 -79.910561,38.162483 -79.916382,38.179142 -79.831375,38.250156 -79.793846,38.268543 -79.786736,38.284996 -79.803001,38.298748 -79.800552,38.314205 -79.764229,38.35387 -79.733055,38.351719 -79.720261,38.394566 -79.684319,38.430119 -79.692879,38.500237 -79.66584,38.52066 -79.669655,38.55006 -79.642632,38.592239 -79.536743,38.553688 -79.48658,38.462025 -79.317238,38.41251 -79.272598,38.437183 -79.231903,38.480373 -79.12767,38.658127 -79.121307,38.663651 -79.088791,38.659088 -79.087479,38.707153 -79.056801,38.76194 -79.055046,38.79052 -79.033989,38.799847 -78.987701,38.846649 -78.866814,38.76329 -78.816116,38.833633 -78.793312,38.880108 -78.749512,38.911381 -78.737991,38.929173 -78.724403,38.930214 -78.719246,38.904881 -78.680489,38.921574 -78.647232,38.950443 -78.631111,38.979603 -78.598961,38.967197 -78.553474,39.013828 -78.549469,39.02338 -78.564445,39.035038 -78.536919,39.057026 -78.501869,39.093578 -78.485519,39.111839 -78.44825,39.118931 -78.43084,39.148521 -78.402634,39.17049 -78.424339,39.197525 -78.42334,39.21204 -78.399399,39.24485 -78.413818,39.257439 -78.341118,39.341358 -78.3442,39.350857 -78.365746,39.361588 -78.350502,39.38073 -78.347816,39.456902 -78.277153,39.423367 -78.229782,39.391014 -78.033607,39.265537 -77.830963,39.132076 -77.820328,39.141621 -77.805733,39.196503 -77.768517,39.246449 -77.759743,39.284542 -77.727753,39.317696 -77.679588,39.31868 -77.616524,39.299717 -77.568962,39.298393 -77.542191,39.26894 -77.494064,39.249912 -77.464958,39.229057 -77.461998,39.218632 -77.478638,39.176933 -77.516617,39.157444 -77.513046,39.116653 -77.479248,39.103958 -77.459694,39.080837 -77.433037,39.066776 -77.346519,39.068512 -77.3246,39.062588 -77.255989,39.027573 -77.243729,38.97588 -77.152046,38.964779 -77.122627,38.93206 -77.078949,38.9156 -77.067886,38.886101 -77.039078,38.862431 -77.040405,38.838413 -77.045189,38.829365 -77.035248,38.813915 -77.045448,38.78812 -77.046471,38.718781 -77.057121,38.712021 -77.081879,38.715279 -77.093147,38.703983 -77.125114,38.677799 -77.12999,38.648125 -77.197258,38.6227 -77.194748,38.660767 -77.227592,38.650723 -77.303619,38.501911 -77.338486,38.436825 -77.289482,38.362671 -77.321823,38.343983 -77.2407,38.331371 -77.054535,38.375351 -76.999359,38.280273 -76.936462,38.202473 -76.595604,38.120224 -76.549034,38.074112 -76.558044,38.02533 -76.573692,38.00317 -76.524544,38.012745 -76.367744,37.956951 -76.259201,37.89003 -76.251923,37.850178 -76.324539,37.798813 -76.309944,37.719112 -76.357002,37.70013 -76.323059,37.677814 -76.344872,37.622925 -76.507088,37.656384 -76.58046,37.770115 -76.631775,37.796349 -76.771851,37.916676 -76.818504,37.919506 -76.732353,37.798481 -76.681732,37.774754 -76.569496,37.641907 -76.314644,37.551201 -76.34864,37.52515 -76.512856,37.552574 -76.434181,37.515202 -76.355667,37.515755 -76.254593,37.39019 -76.275192,37.330322 -76.300972,37.334572 -76.33902,37.393547 -76.446869,37.457966 -76.463936,37.418892 -76.417084,37.412136 -76.403755,37.373028 -76.455551,37.377491 -76.392738,37.293427 -76.461136,37.255432 -76.653488,37.412201 -76.704681,37.418491 -76.669983,37.371647 -76.595039,37.291298 -76.424667,37.207298 -76.412994,37.152393 -76.396873,37.173031 -76.363785,37.146427 -76.337318,37.17701 -76.285675,37.122097 -76.395691,37.107708 -76.278931,37.074345 -76.293343,37.020489 -76.384552,36.990414 -76.426117,36.96526 -76.53112,37.067642 -76.515266,37.088367 -76.564491,37.117771 -76.568443,37.080173 -76.624916,37.132275 -76.610031,37.178577 -76.648094,37.225838 -76.697151,37.232521 -76.746101,37.19339 -76.795929,37.240387 -76.85717,37.2439 -76.875488,37.322945 -76.878426,37.259426 -76.94149,37.23661 -76.900864,37.201054 -76.797394,37.207302 -76.72921,37.150669 -76.685966,37.197987 -76.671539,37.147713 -76.665642,37.054134 -76.577827,37.024494 -76.613373,36.994843 -76.555046,37.006195 -76.48951,36.961723 -76.517174,36.912186 -76.482178,36.919086 -76.486618,36.895569 -76.560516,36.841801 -76.561852,36.795616 -76.507195,36.869473 -76.410805,36.901413 -76.348145,36.913342 -76.341919,36.860188 -76.394089,36.835926 -76.401184,36.826138 -76.317436,36.845844 -76.292702,36.828342 -76.307617,36.942001 -76.284225,36.962734 -76.202332,36.93507 -76.191666,36.904442 -76.118431,36.931618 -75.995361,36.923134 -75.878166,36.555874 -75.901985,36.556198 -75.892853,36.599022 -75.950798,36.721565 -75.998665,36.556652 -76.027168,36.556717 -76.061859,36.603592 -76.045959,36.556953 -76.127396,36.557163 -76.330254,36.556057 -76.497559,36.555813 -76.563583,36.555252 -76.921631,36.554157 -76.924133,36.554146 -77.177353,36.556286 -77.320053,36.553917 -77.763931,36.55344 -77.898857,36.552944 -78.051666,36.552475 -78.321251,36.545532 -78.458809,36.541481 -78.737389,36.546074 -78.7967,36.543533 -79.144325,36.546059-75.270721,38.027588 -75.242584,38.028526 -75.298859,37.962875 -75.33918,37.888783 -75.386078,37.875652 -75.34481,37.901913 -75.378571,37.900974 -75.346687,37.918797 -75.270721,38.027588-75.867371,37.552181 -75.941101,37.561554 -75.929558,37.585884 -75.887276,37.580345 -75.905991,37.592175 -75.799721,37.711792 -75.7826,37.789833 -75.696083,37.824516 -75.686707,37.858124 -75.733978,37.930569 -75.658447,37.941181 -75.648216,37.970131 -75.626434,37.996418 -75.37278,38.016712 -75.61792,37.697132 -75.589905,37.677193 -75.699493,37.589512 -75.650269,37.559753 -75.727524,37.558182 -75.7565,37.51054 -75.705269,37.493473 -75.813026,37.469044 -75.820488,37.426205 -75.790771,37.408108 -75.826675,37.418148 -75.89711,37.367393 -75.931389,37.142502 -75.970985,37.126232 -76.018471,37.308781 -75.934448,37.484642 -75.965446,37.479351 -75.954704,37.521832 -75.930756,37.556889 -75.867371,37.552181Virginia51S AtlVA102537.3284263.826180651.01627615.02289067.03030948.03149703.02343200.02278600.0499251.0125792.03025109.0141926.0777181.0420070.00.490.51898089.0-89.104965,36.953869 -89.129585,36.86644 -89.166496,36.843422 -89.173462,36.829384 -89.164375,36.80442 -89.125839,36.792412 -89.125473,36.768032 -89.151367,36.759041 -89.1772,36.760925 -89.196297,36.727421 -89.197495,36.713367 -89.167831,36.67157 -89.177094,36.653004 -89.200119,36.631298 -89.21006,36.581894 -89.241615,36.569267 -89.283424,36.575249 -89.322273,36.622017 -89.342323,36.628849 -89.363548,36.625702 -89.373878,36.616188 -89.418137,36.510563 -89.414711,36.502617 -89.448517,36.456379 -89.470833,36.445953 -89.491989,36.465462 -89.475822,36.498547 -89.481682,36.504696 -89.471375,36.525555 -89.481674,36.547775 -89.493126,36.559116 -89.530365,36.564556 -89.556137,36.557743 -89.568153,36.541409 -89.566986,36.518738 -89.533195,36.498108 -89.516022,36.471809 -89.545181,36.44096 -89.520004,36.401058 -89.519333,36.35593 -89.544556,36.345722 -89.60569,36.354752 -89.622795,36.334782 -89.606766,36.308037 -89.542236,36.280865 -89.535378,36.264538 -89.541649,36.257278 -89.61808,36.240898 -89.670586,36.254894 -89.694542,36.252136 -89.695656,36.240795 -89.676788,36.220867 -89.618561,36.183743 -89.589455,36.15202 -89.589424,36.129791 -89.667389,36.099316 -89.678169,36.08297 -89.688843,36.025795 -89.721756,35.999878 -89.963203,35.996838 -90.283455,35.991158 -90.37896,35.989586 -90.315239,36.091656 -90.284752,36.115906 -90.263702,36.118763 -90.23484,36.137089 -90.232224,36.161148 -90.219223,36.172565 -90.161308,36.196941 -90.131218,36.21207 -90.109917,36.257996 -90.066093,36.272274 -90.049751,36.300472 -90.067635,36.325333 -90.050201,36.362606 -90.052063,36.382553 -90.080177,36.397388 -90.116829,36.404915 -90.123833,36.422565 -90.117226,36.453896 -90.137276,36.457417 -90.150162,36.491814 -90.224373,36.492752 -90.581619,36.490963 -90.804314,36.489204 -91.133827,36.487953 -91.411659,36.491039 -91.45285,36.490376 -91.688416,36.490955 -92.127487,36.491371 -92.146164,36.491596 -92.522888,36.490856 -92.777466,36.489918 -92.852104,36.489819 -93.297142,36.490616 -93.328163,36.490196 -93.59626,36.489891 -93.857323,36.489716 -94.080849,36.490952 -94.617035,36.489338 -94.62085,36.670471 -94.62146,36.763538 -94.620155,36.996983 -94.620438,37.060085 -94.618744,37.327679 -94.61853,37.360714 -94.618759,37.65033 -94.619057,37.679825 -94.616501,38.030354 -94.617096,38.055752 -94.61882,38.392014 -94.618484,38.471458 -94.612915,38.737213 -94.612236,38.837101 -94.609047,39.044662 -94.607903,39.112797 -94.60099,39.141224 -94.612419,39.151646 -94.646172,39.158424 -94.675278,39.174919 -94.730293,39.171253 -94.78981,39.19688 -94.82058,39.211002 -94.833237,39.261765 -94.880867,39.286045 -94.90744,39.323029 -94.911102,39.340122 -94.898041,39.380642 -94.925507,39.381268 -94.958252,39.411449 -94.985962,39.439465 -95.040268,39.462944 -95.047356,39.485332 -95.101791,39.532852 -95.108742,39.560696 -95.053368,39.586781 -95.055771,39.625694 -95.028046,39.661919 -94.978325,39.684994 -94.96154,39.732044 -94.952896,39.736507 -94.930611,39.727032 -94.905434,39.726761 -94.877617,39.739311 -94.870941,39.754124 -94.876823,39.760685 -94.921555,39.757847 -94.934868,39.775433 -94.933022,39.78278 -94.899078,39.793781 -94.88826,39.817406 -94.898079,39.828339 -94.92363,39.833138 -94.936264,39.849392 -94.937996,39.896088 -94.964775,39.900829 -95.021523,39.896984 -95.033257,39.87785 -95.062996,39.866543 -95.100471,39.869869 -95.150299,39.908058 -95.19371,39.910183 -95.207344,39.938179 -95.240707,39.942108 -95.308441,39.999409 -95.34481,40.024975 -95.370987,40.028751 -95.390274,40.043751 -95.413506,40.048111 -95.403526,40.080379 -95.384285,40.095364 -95.392555,40.115417 -95.422218,40.131744 -95.460693,40.173996 -95.466377,40.213257 -95.476562,40.226856 -95.546875,40.266216 -95.595268,40.309776 -95.646561,40.309109 -95.645287,40.322346 -95.617668,40.331417 -95.615936,40.346497 -95.633919,40.358799 -95.636551,40.396389 -95.695091,40.485336 -95.6847,40.512203 -95.657791,40.530331 -95.662674,40.558727 -95.675423,40.565834 -95.687141,40.561169 -95.691795,40.524128 -95.736763,40.532372 -95.763138,40.549706 -95.767204,40.589046 -95.382294,40.584335 -95.217171,40.581898 -94.920364,40.577229 -94.639633,40.575756 -94.484993,40.574215 -94.238159,40.570972 -94.01783,40.574024 -93.786079,40.578445 -93.562691,40.580807 -93.370056,40.580482 -93.100731,40.584335 -92.717621,40.589645 -92.64624,40.591438 -92.361328,40.599548 -92.192993,40.60006 -91.946198,40.608234 -91.741547,40.609749 -91.716812,40.593399 -91.689796,40.581165 -91.691917,40.55164 -91.622375,40.532864 -91.616699,40.504833 -91.585869,40.484478 -91.579224,40.463718 -91.533051,40.455399 -91.538689,40.441246 -91.529449,40.435043 -91.527534,40.410126 -91.500221,40.405117 -91.490158,40.390762 -91.476883,40.390968 -91.448593,40.371902 -91.486694,40.309624 -91.498932,40.251377 -91.506546,40.200459 -91.516129,40.134544 -91.504005,40.066711 -91.487289,40.005753 -91.447243,39.946064 -91.430389,39.921837 -91.434052,39.901829 -91.450989,39.885242 -91.449188,39.863049 -91.381714,39.803772 -91.373421,39.761272 -91.367088,39.72464 -91.317665,39.685917 -91.203247,39.600021 -91.156189,39.552593 -91.093613,39.528927 -91.064384,39.473984 -91.036339,39.444412 -90.947891,39.400585 -90.850494,39.350452 -90.779343,39.296803 -90.738083,39.24781 -90.732338,39.224747 -90.718193,39.195873 -90.716736,39.144211 -90.690399,39.0937 -90.707588,39.058178 -90.70607,39.037792 -90.668877,38.935253 -90.627213,38.880795 -90.570328,38.871326 -90.530426,38.891609 -90.469841,38.959179 -90.413071,38.96233 -90.31974,38.924908 -90.278931,38.924717 -90.243927,38.914509 -90.132812,38.853031 -90.113121,38.830467 -90.121727,38.80051 -90.135178,38.785484 -90.163399,38.773098 -90.196571,38.723965 -90.20224,38.700363 -90.183578,38.658772 -90.183708,38.610271 -90.240944,38.562805 -90.26123,38.532768 -90.265785,38.518688 -90.301842,38.427357 -90.339607,38.390846 -90.358688,38.36533 -90.369347,38.323559 -90.364769,38.234299 -90.336716,38.188713 -90.289635,38.166817 -90.254059,38.122169 -90.207527,38.088905 -90.134712,38.053951 -90.119339,38.032272 -90.041924,37.993206 -90.010811,37.969318 -89.958229,37.963634 -89.978912,37.911884 -89.937874,37.878044 -89.900551,37.875904 -89.866814,37.891876 -89.861046,37.905487 -89.851715,37.905064 -89.728447,37.840992 -89.691055,37.804794 -89.675858,37.78397 -89.666458,37.745453 -89.581436,37.706104 -89.521523,37.694798 -89.513374,37.67984 -89.51918,37.650375 -89.513367,37.615929 -89.524971,37.571957 -89.494781,37.491726 -89.453621,37.453186 -89.427574,37.411018 -89.435738,37.355717 -89.468742,37.339409 -89.50058,37.329441 -89.513885,37.304962 -89.513885,37.276402 -89.489594,37.256001 -89.465309,37.253731 -89.468216,37.224266 -89.440521,37.165318 -89.423798,37.137203 -89.37999,37.099083 -89.38295,37.049213 -89.310982,37.009682 -89.282768,36.999207 -89.262001,37.008686 -89.264244,37.027733 -89.3097,37.060909 -89.303291,37.085384 -89.284233,37.091244 -89.264053,37.087124 -89.237679,37.041733 -89.210052,37.028973 -89.193512,36.986771 -89.12986,36.988113 -89.107147,36.977451 -89.104965,36.953869Missouri29W N CenMO178445.9512100.1155117073.01368334.01961206.02464315.02652758.01861192.01816079.0312042.047129.02367395.0155388.0659782.0386746.00.4820.518864999.0-114.519844,33.027668 -114.558304,33.036743 -114.609138,33.026962 -114.633179,33.033527 -114.644371,33.044373 -114.663162,33.038883 -114.710564,33.095345 -114.708672,33.122337 -114.67733,33.167213 -114.67926,33.22456 -114.68692,33.239223 -114.676903,33.267982 -114.734634,33.305676 -114.702812,33.352386 -114.724144,33.41103 -114.644302,33.419086 -114.629784,33.439396 -114.6203,33.468571 -114.597298,33.486099 -114.586273,33.509418 -114.528633,33.560047 -114.539459,33.580482 -114.526382,33.622112 -114.524475,33.665482 -114.535645,33.682713 -114.494888,33.708347 -114.509499,33.743179 -114.503769,33.771694 -114.520332,33.826012 -114.510933,33.841946 -114.520172,33.862907 -114.497398,33.925018 -114.524841,33.952396 -114.517418,33.965046 -114.428192,34.029827 -114.423241,34.078316 -114.409378,34.102638 -114.322014,34.141281 -114.284584,34.171215 -114.234993,34.186207 -114.149132,34.266964 -114.124451,34.272606 -114.133347,34.314533 -114.152634,34.336433 -114.181297,34.365192 -114.257057,34.405476 -114.282608,34.412056 -114.302078,34.435741 -114.331848,34.454861 -114.375717,34.459667 -114.383072,34.477074 -114.376038,34.536552 -114.408951,34.583714 -114.43351,34.598953 -114.421478,34.610886 -114.464844,34.709866 -114.497009,34.744751 -114.524757,34.748905 -114.541245,34.759953 -114.56942,34.831856 -114.626465,34.87553 -114.629677,34.919498 -114.620209,34.943607 -114.631477,34.99765 -114.62027,34.998913 -114.63298,35.041862 -114.594833,35.076057 -114.635109,35.118656 -114.625641,35.133907 -114.581818,35.132561 -114.571457,35.140068 -114.560242,35.174347 -114.558784,35.220184 -114.58709,35.304771 -114.588783,35.358383 -114.644592,35.450768 -114.67141,35.515762 -114.648987,35.546646 -114.652328,35.584843 -114.639061,35.611359 -114.653259,35.646595 -114.667679,35.65641 -114.664284,35.693111 -114.688011,35.732609 -114.681931,35.764717 -114.689056,35.847458 -114.661652,35.870975 -114.660789,35.880489 -114.698463,35.911629 -114.735397,35.987667 -114.716858,36.036777 -114.728149,36.058773 -114.727333,36.085983 -114.711945,36.105202 -114.620796,36.141987 -114.598122,36.138355 -114.529762,36.155109 -114.465805,36.124729 -114.443138,36.121071 -114.379997,36.151009 -114.34343,36.137497 -114.315292,36.111454 -114.303055,36.087124 -114.306786,36.062248 -114.232674,36.018345 -114.205971,36.017269 -114.128227,36.041744 -114.106979,36.121105 -114.044312,36.193993 -114.036598,36.216038 -114.042915,36.841873 -114.043137,36.996563 -112.899216,36.996243 -112.541763,36.998009 -112.236511,36.995506 -111.355453,37.00172 -110.739372,37.002491 -110.483398,37.003929 -110.451546,36.991749 -109.996399,36.992065 -109.047821,36.996643 -109.047195,35.996655 -109.045998,34.954613 -109.048012,34.59174 -109.049721,33.783249 -109.049904,33.205101 -109.050728,32.77948 -109.048882,32.441967 -109.045006,31.343348 -110.451942,31.337559 -111.07132,31.335535 -111.368866,31.431438 -113.328377,32.04356 -114.820969,32.487114 -114.808601,32.615993 -114.72126,32.72081 -114.711906,32.734966 -114.693253,32.741379 -114.603157,32.726238 -114.602737,32.73584 -114.571175,32.737392 -114.571426,32.748783 -114.559967,32.74889 -114.560799,32.760708 -114.542221,32.760704 -114.542404,32.771187 -114.529312,32.771366 -114.534294,32.788002 -114.525436,32.809868 -114.460655,32.845379 -114.475662,32.935867 -114.467606,32.977749 -114.519844,33.027668Arizona04MtnAZ294333.462942.7723665228.0940106.01368843.01810691.01854537.01358263.01178320.0239083.032856.01603896.0123902.0455896.0185109.00.4940.506468178.0-94.439102,34.92905 -94.44574,34.735504 -94.452408,34.508327 -94.461479,34.196655 -94.468376,33.939198 -94.476486,33.631966 -94.50061,33.623047 -94.510559,33.63081 -94.525055,33.621021 -94.51799,33.643009 -94.550194,33.632694 -94.562149,33.635536 -94.562195,33.64283 -94.541931,33.648247 -94.545418,33.661621 -94.576462,33.652157 -94.588387,33.655449 -94.585159,33.662132 -94.565208,33.663013 -94.560722,33.671913 -94.578506,33.670471 -94.585106,33.678982 -94.600945,33.665607 -94.631737,33.683899 -94.638763,33.670105 -94.658539,33.663738 -94.669426,33.666061 -94.667953,33.671459 -94.644325,33.67765 -94.655479,33.692291 -94.668457,33.696537 -94.690987,33.690289 -94.741653,33.701267 -94.754478,33.707771 -94.742111,33.719048 -94.762718,33.716797 -94.749771,33.736706 -94.783157,33.733665 -94.782028,33.742268 -94.764175,33.752842 -94.783508,33.753262 -94.803223,33.739582 -94.81916,33.749405 -94.85788,33.749321 -94.881638,33.774963 -94.913879,33.789597 -94.908546,33.803478 -94.918236,33.816196 -94.940399,33.815807 -94.939888,33.840824 -94.959908,33.848076 -94.968704,33.866215 -94.989281,33.856182 -95.012772,33.869946 -95.037361,33.866451 -95.042862,33.884445 -95.063141,33.896694 -95.063477,33.917648 -95.083603,33.888462 -95.089714,33.896915 -95.082268,33.918453 -95.09536,33.921738 -95.119225,33.912281 -95.126678,33.917145 -95.127968,33.940868 -95.148315,33.943546 -95.234039,33.964863 -95.251289,33.936443 -95.250992,33.905022 -95.263618,33.8978 -95.277351,33.917938 -95.28643,33.886902 -95.301956,33.886623 -95.336227,33.897114 -95.33004,33.870918 -95.451607,33.865753 -95.468124,33.886433 -95.498856,33.881718 -95.512886,33.897736 -95.544037,33.885742 -95.547493,33.893158 -95.526733,33.897816 -95.519577,33.906643 -95.546318,33.904034 -95.562775,33.936073 -95.606071,33.944553 -95.61483,33.936691 -95.612984,33.920238 -95.633492,33.920105 -95.699707,33.894825 -95.746864,33.903397 -95.760696,33.89344 -95.764252,33.879005 -95.768517,33.851402 -95.795479,33.864674 -95.825974,33.843025 -95.846558,33.841038 -95.933075,33.89053 -95.943069,33.889973 -95.958763,33.86504 -95.977394,33.857952 -95.994209,33.875378 -96.002617,33.87339 -96.001793,33.856979 -96.014069,33.844208 -96.026749,33.856022 -96.047974,33.841278 -96.091522,33.844578 -96.109444,33.829258 -96.148964,33.83559 -96.169205,33.828983 -96.183128,33.815792 -96.180725,33.808434 -96.154518,33.823944 -96.141418,33.82032 -96.161316,33.798229 -96.168816,33.769356 -96.187027,33.758583 -96.212547,33.756691 -96.278076,33.773388 -96.28968,33.761932 -96.300789,33.71405 -96.316277,33.701801 -96.347588,33.705528 -96.370819,33.740395 -96.419464,33.788326 -96.487373,33.77813 -96.500748,33.78809 -96.510574,33.815685 -96.562134,33.82542 -96.601196,33.842957 -96.614166,33.8629 -96.584488,33.896145 -96.666237,33.913544 -96.677704,33.904324 -96.693382,33.847904 -96.711678,33.83387 -96.748825,33.831738 -96.797592,33.869949 -96.814117,33.871769 -96.844009,33.858032 -96.861015,33.861679 -96.878937,33.884003 -96.882851,33.924591 -96.898453,33.950027 -96.929565,33.961773 -96.936203,33.947849 -96.968185,33.937321 -96.987862,33.944202 -96.987709,33.876423 -97.005852,33.850513 -97.025597,33.840561 -97.0709,33.856728 -97.082176,33.851101 -97.078247,33.837811 -97.050026,33.823448 -97.087669,33.807571 -97.083466,33.742413 -97.0905,33.73167 -97.115562,33.725933 -97.152473,33.728668 -97.189163,33.752769 -97.208321,33.819649 -97.195015,33.836159 -97.168594,33.847794 -97.164169,33.863148 -97.187767,33.899204 -97.211334,33.905689 -97.246063,33.894238 -97.250687,33.872971 -97.263908,33.85873 -97.272278,33.872574 -97.314087,33.89584 -97.314957,33.870392 -97.341805,33.861916 -97.363319,33.831024 -97.410118,33.820709 -97.452736,33.836212 -97.457062,33.89043 -97.462761,33.902382 -97.477531,33.907707 -97.518204,33.916771 -97.554588,33.903904 -97.575668,33.902531 -97.592354,33.917885 -97.600182,33.969437 -97.671066,33.988613 -97.704262,33.971546 -97.729019,33.939293 -97.756363,33.932098 -97.790207,33.890457 -97.852547,33.857071 -97.869751,33.855114 -97.909065,33.874023 -97.954735,33.88348 -97.976379,33.902504 -97.976128,33.912052 -97.950684,33.932518 -97.962997,33.94865 -97.947754,33.959751 -97.950226,33.971161 -97.982681,34.001286 -98.023491,33.986984 -98.055557,33.989799 -98.086205,34.005314 -98.110687,34.06982 -98.094124,34.134556 -98.114868,34.148987 -98.136864,34.138432 -98.172844,34.115368 -98.277,34.122871 -98.320488,34.13942 -98.350403,34.14212 -98.384254,34.11578 -98.390953,34.087231 -98.407135,34.082455 -98.421341,34.06583 -98.448189,34.054375 -98.499519,34.066414 -98.557579,34.105335 -98.576332,34.14193 -98.607246,34.151398 -98.625992,34.158436 -98.66172,34.147038 -98.682213,34.149998 -98.705292,34.130714 -98.778534,34.131962 -98.811066,34.145935 -98.891342,34.16082 -98.952507,34.194565 -98.996193,34.209496 -99.035217,34.198921 -99.07843,34.208359 -99.127945,34.201469 -99.176155,34.21273 -99.190483,34.223736 -99.204597,34.255646 -99.196304,34.305122 -99.20549,34.331993 -99.254105,34.368214 -99.267174,34.398285 -99.323296,34.412708 -99.364204,34.450195 -99.392792,34.428993 -99.394157,34.396744 -99.409958,34.369106 -99.438377,34.364704 -99.479439,34.383522 -99.502136,34.404068 -99.553864,34.41518 -99.57785,34.408913 -99.58522,34.384857 -99.601448,34.368557 -99.684906,34.377445 -99.777687,34.443993 -99.829933,34.501778 -99.860573,34.518627 -99.8806,34.548176 -99.931908,34.579109 -99.94474,34.579571 -99.972099,34.561863 -99.996094,34.562321 -99.998878,34.747185 -99.996071,35.030998 -99.997185,35.182182 -99.994354,35.424572 -100,35.618809 -99.997726,35.883793 -99.997154,36.057549 -100.001144,36.492519 -100.006866,36.493877 -100.549416,36.489449 -100.956909,36.489609 -101.089668,36.488022 -101.620316,36.492004 -102.03421,36.492954 -102.165222,36.490208 -102.996918,36.492344 -102.997223,36.998505 -102.036758,36.988972 -102.024071,36.988853 -101.553238,36.996666 -101.071159,36.99744 -100.950142,36.996635 -100.633812,36.997807 -100.088158,36.997623 -99.998848,36.995388 -99.544243,36.995434 -99.43708,36.99453 -98.999138,36.998043 -98.539864,36.998348 -98.346794,36.999035 -98.104187,36.998646 -97.803917,36.998543 -97.46508,36.996441 -97.137375,36.999779 -96.74839,37.000134 -96.518898,37.000538 -96.005791,36.998264 -95.957703,37.000011 -95.785492,36.998035 -95.525764,37.000938 -95.406372,37.000538 -95.071693,37.001408 -95.032509,37.00071 -94.620155,36.996983 -94.62146,36.763538 -94.62085,36.670471 -94.617035,36.489338 -94.607231,36.478714 -94.552895,36.164444 -94.542198,36.106754 -94.485718,35.760227 -94.468269,35.641003 -94.428337,35.400455 -94.439102,34.92905Oklahoma40W S CenOK177877.5363170.9983145585.0855321.01206135.01530819.01614766.01146497.01078894.0190902.07817.01369138.0100931.0405802.0205601.00.4870.513528722.0-83.988548,34.989067 -84.11824,34.988224 -84.323853,34.98901 -84.291039,35.210545 -84.225945,35.261604 -84.179726,35.24099 -84.101646,35.245552 -84.042778,35.272575 -84.030861,35.292522 -84.029205,35.325291 -84.00631,35.37286 -84.01265,35.407623 -83.954704,35.45546 -83.910011,35.476479 -83.881226,35.510586 -83.8302,35.519062 -83.775879,35.552605 -83.672874,35.564972 -83.613861,35.571739 -83.561035,35.555176 -83.505798,35.559551 -83.45829,35.597279 -83.387093,35.625217 -83.343025,35.653259 -83.298416,35.656326 -83.259125,35.69101 -83.253304,35.700706 -83.243851,35.718216 -83.185349,35.728886 -83.143661,35.762684 -83.118187,35.763809 -83.059959,35.782578 -82.987007,35.773991 -82.962753,35.791851 -82.906822,35.872215 -82.91407,35.927868 -82.895973,35.94836 -82.85627,35.947426 -82.80867,35.920872 -82.776443,35.956573 -82.773598,35.987503 -82.763229,35.999546 -82.64389,36.051723 -82.628044,36.05434 -82.604401,36.042988 -82.592232,36.022449 -82.605804,36.003548 -82.599304,35.963299 -82.554146,35.956108 -82.506935,35.972542 -82.475197,35.993176 -82.408424,36.075317 -82.373856,36.098698 -82.311928,36.12215 -82.262306,36.120377 -82.207733,36.147015 -82.154053,36.139622 -82.11808,36.096256 -82.077759,36.10014 -82.020454,36.129711 -81.933113,36.263321 -81.911156,36.290752 -81.830574,36.334656 -81.730492,36.329342 -81.709457,36.333725 -81.740379,36.361858 -81.741074,36.391785 -81.69828,36.471779 -81.702797,36.519341 -81.669998,36.589649 -81.345299,36.572865 -80.903442,36.565212 -80.838158,36.563438 -80.611053,36.557297 -80.43531,36.551044 -80.048096,36.547134 -80.024055,36.545025 -79.717445,36.54789 -79.5103,36.547657 -79.217064,36.549782 -79.144325,36.546059 -78.7967,36.543533 -78.737389,36.546074 -78.458809,36.541481 -78.321251,36.545532 -78.051666,36.552475 -77.898857,36.552944 -77.763931,36.55344 -77.320053,36.553917 -77.177353,36.556286 -76.924133,36.554146 -76.921631,36.554157 -76.563583,36.555252 -76.497559,36.555813 -76.330254,36.556057 -76.127396,36.557163 -76.045959,36.556953 -76.033211,36.514374 -76.091064,36.503567 -75.976074,36.436214 -75.969765,36.415119 -76.00161,36.418915 -75.951256,36.365471 -75.928123,36.423244 -75.924591,36.350948 -75.800056,36.112816 -75.798851,36.072819 -75.855164,36.105667 -75.913765,36.244801 -75.957512,36.259453 -75.941933,36.294338 -76.008972,36.319595 -75.957184,36.193771 -75.981339,36.169727 -76.183167,36.315239 -76.218903,36.296608 -76.112709,36.174419 -76.141937,36.14769 -76.234978,36.163361 -76.298927,36.21423 -76.275505,36.110371 -76.48053,36.079792 -76.420425,36.058605 -76.52301,36.007168 -76.594002,36.010132 -76.649017,36.065708 -76.633209,36.037117 -76.690155,36.04961 -76.726509,36.156822 -76.688736,36.294518 -76.776642,36.35833 -76.92408,36.392445 -76.741348,36.315166 -76.707497,36.266132 -76.745064,36.233917 -76.760674,36.144592 -76.693764,35.99297 -76.741127,35.936626 -76.69722,35.941544 -76.40947,35.977467 -76.371483,35.932343 -76.213768,35.976875 -76.089638,35.962914 -76.026047,35.920425 -76.075912,35.756802 -76.043068,35.683849 -76.167305,35.696842 -76.104744,35.663639 -76.02121,35.669094 -75.987854,35.892708 -75.818054,35.923519 -75.748962,35.869339 -75.72937,35.665173 -75.779053,35.578686 -75.891495,35.631268 -76.052979,35.414604 -76.181618,35.341534 -76.498802,35.416218 -76.533752,35.450199 -76.458435,35.504425 -76.446526,35.550865 -76.518944,35.577644 -76.492538,35.541786 -76.638199,35.520336 -76.628769,35.437897 -76.705376,35.411934 -77.103767,35.550186 -76.983185,35.436501 -76.694901,35.350426 -76.614517,35.272919 -76.591209,35.31208 -76.540977,35.303688 -76.507126,35.248768 -76.640091,35.17252 -76.605225,35.138561 -76.624222,35.06435 -76.678009,35.024086 -76.849464,34.98222 -76.94149,35.027428 -76.943245,35.070034 -77.047882,35.092155 -77.104675,35.087986 -77.110588,35.066036 -77.00119,35.052887 -76.913109,34.93647 -76.647049,34.906334 -76.670059,34.969997 -76.529778,34.974636 -76.44503,35.016659 -76.424057,34.946247 -76.364014,34.943111 -76.329407,34.975956 -76.314713,34.948814 -76.469902,34.785061 -76.625313,34.719753 -77.050529,34.698917 -77.148956,34.764332 -77.129395,34.684914 -77.156601,34.660637 -77.538635,34.457008 -77.586761,34.420937 -77.609726,34.435043 -77.602615,34.412628 -77.750526,34.305046 -77.864388,34.192738 -77.894402,34.06918 -77.926758,34.062035 -77.960732,34.189243 -77.958527,33.99258 -78.034805,33.914291 -78.57972,33.881992 -78.655716,33.948673 -79.074501,34.304573 -79.447144,34.619061 -79.455971,34.63409 -79.667503,34.800663 -79.685959,34.805256 -79.919952,34.807919 -80.325279,34.814762 -80.561546,34.815228 -80.800064,34.816113 -80.785652,34.940639 -80.840164,35.002018 -80.894714,35.059734 -80.927795,35.10125 -81.039886,35.037201 -81.065552,35.066483 -81.028442,35.105408 -81.049042,35.132011 -81.049301,35.151531 -81.322823,35.163757 -81.362175,35.162853 -81.765358,35.182472 -81.87059,35.183117 -81.971443,35.188282 -82.210175,35.193127 -82.278328,35.195007 -82.32077,35.184189 -82.350861,35.192673 -82.360123,35.182949 -82.371376,35.182724 -82.38961,35.208241 -82.43792,35.169559 -82.466743,35.1735 -82.524635,35.15456 -82.57003,35.14949 -82.654495,35.119457 -82.68605,35.121464 -82.688034,35.097801 -82.697357,35.091232 -82.771347,35.085423 -82.887695,35.05537 -83.007278,35.024204 -83.106285,35.000278 -83.513008,34.992023 -83.549416,34.989536 -83.937996,34.989391 -83.988548,34.989067-76.027168,36.556717 -75.998665,36.556652 -75.911919,36.54253 -75.924805,36.473976 -75.97728,36.478016 -75.976288,36.517925 -76.027168,36.556717-75.901985,36.556198 -75.878166,36.555874 -75.773155,36.229256 -75.544968,35.788361 -75.702736,36.049862 -75.740868,36.050323 -75.783173,36.225193 -75.901985,36.556198-75.491219,35.670498 -75.533623,35.768856 -75.456978,35.617397 -75.526299,35.227917 -75.74929,35.189827 -75.691566,35.234989 -75.521484,35.281357 -75.475418,35.564495 -75.491219,35.670498-76.017006,35.069435 -75.975693,35.116184 -75.853935,35.167282 -75.763702,35.192284 -75.811539,35.164021 -75.903946,35.132492 -76.002876,35.069435 -76.017006,35.069435-76.544273,34.58783 -76.555145,34.610661 -76.53775,34.613922 -76.484482,34.697632 -76.432297,34.760685 -76.37468,34.81287 -76.287704,34.87701 -76.469261,34.693283 -76.544273,34.58783North Carolina37S AtlNC126177.63510309.6526628629.01812051.02517024.03214286.03414343.02484061.02527980.0529828.033902.03238414.0163081.0883563.0701142.00.4850.5151013599.0-83.954704,35.45546 -84.01265,35.407623 -84.00631,35.37286 -84.029205,35.325291 -84.030861,35.292522 -84.042778,35.272575 -84.101646,35.245552 -84.179726,35.24099 -84.225945,35.261604 -84.291039,35.210545 -84.323853,34.98901 -84.618752,34.988682 -84.771194,34.990681 -84.800476,34.992756 -84.967911,34.992607 -84.972847,34.992554 -85.267761,34.989075 -85.359985,34.989902 -85.467422,34.990047 -85.608994,34.990086 -85.869591,34.992302 -86.303513,34.995377 -86.313065,34.995186 -86.782372,34.99699 -86.83342,34.998161 -87.207573,35.007877 -87.222748,35.007263 -87.607788,35.010464 -87.986046,35.015949 -88.194923,35.013458 -88.193954,35.004368 -88.351685,35.003746 -88.383102,35.004955 -88.784988,35.003094 -88.812492,35.00235 -89.006134,35.000145 -89.198067,35.000793 -89.3423,34.999714 -89.646477,35.000641 -89.717186,34.999168 -90.305351,35.000694 -90.291809,35.048458 -90.195709,35.040897 -90.169083,35.077827 -90.178345,35.108646 -90.164474,35.129612 -90.14373,35.136536 -90.082924,35.12505 -90.064537,35.147385 -90.062431,35.166916 -90.073303,35.191833 -90.068962,35.212738 -90.090103,35.254398 -90.105942,35.263847 -90.152122,35.264057 -90.169746,35.282566 -90.15699,35.306244 -90.106346,35.314686 -90.098701,35.345592 -90.105621,35.365982 -90.087135,35.381508 -90.075478,35.406528 -90.085159,35.418282 -90.112244,35.41769 -90.132469,35.4076 -90.140167,35.383045 -90.167816,35.384254 -90.172676,35.423717 -90.137276,35.442524 -90.101959,35.473568 -90.08223,35.478207 -90.074844,35.472343 -90.073936,35.426506 -90.060295,35.41341 -90.046783,35.417103 -89.999565,35.445454 -90.041817,35.51244 -90.040901,35.542847 -90.033051,35.552414 -89.989586,35.561676 -89.962273,35.532291 -89.947548,35.526901 -89.931175,35.529232 -89.921661,35.546059 -89.958031,35.578594 -89.957047,35.603104 -89.877441,35.633335 -89.863838,35.629745 -89.849197,35.645222 -89.857246,35.671062 -89.865181,35.673306 -89.893402,35.655972 -89.929741,35.676266 -89.952034,35.712486 -89.951035,35.734268 -89.909782,35.754837 -89.859871,35.748192 -89.827042,35.75827 -89.799904,35.774223 -89.790382,35.805553 -89.759796,35.817421 -89.735939,35.807037 -89.700829,35.827515 -89.701439,35.842037 -89.757713,35.871418 -89.766273,35.884102 -89.762909,35.896812 -89.737976,35.915012 -89.714684,35.911427 -89.66465,35.885647 -89.649338,35.894287 -89.645401,35.913799 -89.664192,35.93782 -89.713135,35.966324 -89.721756,35.999878 -89.688843,36.025795 -89.678169,36.08297 -89.667389,36.099316 -89.589424,36.129791 -89.589455,36.15202 -89.618561,36.183743 -89.676788,36.220867 -89.695656,36.240795 -89.694542,36.252136 -89.670586,36.254894 -89.61808,36.240898 -89.541649,36.257278 -89.535378,36.264538 -89.542236,36.280865 -89.606766,36.308037 -89.622795,36.334782 -89.60569,36.354752 -89.544556,36.345722 -89.519333,36.35593 -89.520004,36.401058 -89.545181,36.44096 -89.516022,36.471809 -89.533195,36.498108 -89.475822,36.498547 -89.491989,36.465462 -89.470833,36.445953 -89.448517,36.456379 -89.414711,36.502617 -89.346596,36.502548 -88.830315,36.499794 -88.826302,36.499847 -88.810661,36.498985 -88.512634,36.499489 -88.495979,36.49815 -88.042732,36.496517 -88.035049,36.538147 -88.041061,36.582668 -88.071312,36.67963 -87.870689,36.669373 -87.853516,36.641472 -87.693512,36.64444 -87.64064,36.645168 -87.346603,36.649231 -87.112701,36.651264 -87.068184,36.650768 -86.770538,36.652058 -86.510674,36.655033 -86.415451,36.65089 -86.199005,36.643246 -85.980629,36.63306 -85.7855,36.626629 -85.437408,36.618137 -85.300133,36.626038 -85.272537,36.625553 -84.998512,36.620914 -84.791115,36.605366 -84.781929,36.605003 -84.256844,36.595417 -84.254555,36.595371 -84.006821,36.592007 -83.935677,36.591209 -83.695694,36.584167 -83.675262,36.598621 -83.464302,36.598755 -83.275131,36.60038 -83.248489,36.589848 -83.211029,36.588001 -82.986809,36.591198 -82.849937,36.590946 -82.610962,36.591446 -82.296997,36.591698 -82.216805,36.593967 -82.154327,36.595043 -81.929459,36.595837 -81.918449,36.613495 -81.829056,36.611481 -81.652435,36.607555 -81.669998,36.589649 -81.702797,36.519341 -81.69828,36.471779 -81.741074,36.391785 -81.740379,36.361858 -81.709457,36.333725 -81.730492,36.329342 -81.830574,36.334656 -81.911156,36.290752 -81.933113,36.263321 -82.020454,36.129711 -82.077759,36.10014 -82.11808,36.096256 -82.154053,36.139622 -82.207733,36.147015 -82.262306,36.120377 -82.311928,36.12215 -82.373856,36.098698 -82.408424,36.075317 -82.475197,35.993176 -82.506935,35.972542 -82.554146,35.956108 -82.599304,35.963299 -82.605804,36.003548 -82.592232,36.022449 -82.604401,36.042988 -82.628044,36.05434 -82.64389,36.051723 -82.763229,35.999546 -82.773598,35.987503 -82.776443,35.956573 -82.80867,35.920872 -82.85627,35.947426 -82.895973,35.94836 -82.91407,35.927868 -82.906822,35.872215 -82.962753,35.791851 -82.987007,35.773991 -83.059959,35.782578 -83.118187,35.763809 -83.143661,35.762684 -83.185349,35.728886 -83.243851,35.718216 -83.253304,35.700706 -83.259125,35.69101 -83.298416,35.656326 -83.343025,35.653259 -83.387093,35.625217 -83.45829,35.597279 -83.505798,35.559551 -83.561035,35.555176 -83.613861,35.571739 -83.672874,35.564972 -83.775879,35.552605 -83.8302,35.519062 -83.881226,35.510586 -83.910011,35.476479 -83.954704,35.45546Tennessee47E S CenTN105823.5672311.5564829958.01334052.01835272.02326184.02503774.01777371.01747015.0321170.029542.02230659.0152128.0596400.0456189.00.4820.518736654.0-105.99836,31.393818 -106.212753,31.478128 -106.383041,31.733763 -106.538971,31.786198 -106.614441,31.817728 -106.615578,31.844635 -106.643532,31.895102 -106.633202,31.913998 -106.632057,31.972118 -106.649513,31.980228 -106.623077,32.000988 -106.377846,32.000645 -106.002708,32.001553 -104.921799,32.004269 -104.850563,32.003151 -104.018814,32.007278 -103.980896,32.00589 -103.728973,32.006104 -103.332092,32.004154 -103.057968,32.0019 -103.055191,32.084995 -103.059547,32.51543 -103.048836,32.953533 -103.042603,33.377728 -103.038239,33.565742 -103.032761,33.826088 -103.029144,34.307743 -103.022156,34.745266 -103.02475,34.964718 -103.02565,35.177208 -103.021797,35.623604 -103.022118,35.742287 -103.02356,36.056026 -103.026802,36.491566 -102.996918,36.492344 -102.165222,36.490208 -102.03421,36.492954 -101.620316,36.492004 -101.089668,36.488022 -100.956909,36.489609 -100.549416,36.489449 -100.006866,36.493877 -100.001144,36.492519 -99.997154,36.057549 -99.997726,35.883793 -100,35.618809 -99.994354,35.424572 -99.997185,35.182182 -99.996071,35.030998 -99.998878,34.747185 -99.996094,34.562321 -99.972099,34.561863 -99.94474,34.579571 -99.931908,34.579109 -99.8806,34.548176 -99.860573,34.518627 -99.829933,34.501778 -99.777687,34.443993 -99.684906,34.377445 -99.601448,34.368557 -99.58522,34.384857 -99.57785,34.408913 -99.553864,34.41518 -99.502136,34.404068 -99.479439,34.383522 -99.438377,34.364704 -99.409958,34.369106 -99.394157,34.396744 -99.392792,34.428993 -99.364204,34.450195 -99.323296,34.412708 -99.267174,34.398285 -99.254105,34.368214 -99.20549,34.331993 -99.196304,34.305122 -99.204597,34.255646 -99.190483,34.223736 -99.176155,34.21273 -99.127945,34.201469 -99.07843,34.208359 -99.035217,34.198921 -98.996193,34.209496 -98.952507,34.194565 -98.891342,34.16082 -98.811066,34.145935 -98.778534,34.131962 -98.705292,34.130714 -98.682213,34.149998 -98.66172,34.147038 -98.625992,34.158436 -98.607246,34.151398 -98.576332,34.14193 -98.557579,34.105335 -98.499519,34.066414 -98.448189,34.054375 -98.421341,34.06583 -98.407135,34.082455 -98.390953,34.087231 -98.384254,34.11578 -98.350403,34.14212 -98.320488,34.13942 -98.277,34.122871 -98.172844,34.115368 -98.136864,34.138432 -98.114868,34.148987 -98.094124,34.134556 -98.110687,34.06982 -98.086205,34.005314 -98.055557,33.989799 -98.023491,33.986984 -97.982681,34.001286 -97.950226,33.971161 -97.947754,33.959751 -97.962997,33.94865 -97.950684,33.932518 -97.976128,33.912052 -97.976379,33.902504 -97.954735,33.88348 -97.909065,33.874023 -97.869751,33.855114 -97.852547,33.857071 -97.790207,33.890457 -97.756363,33.932098 -97.729019,33.939293 -97.704262,33.971546 -97.671066,33.988613 -97.600182,33.969437 -97.592354,33.917885 -97.575668,33.902531 -97.554588,33.903904 -97.518204,33.916771 -97.477531,33.907707 -97.462761,33.902382 -97.457062,33.89043 -97.452736,33.836212 -97.410118,33.820709 -97.363319,33.831024 -97.341805,33.861916 -97.314957,33.870392 -97.314087,33.89584 -97.272278,33.872574 -97.263908,33.85873 -97.250687,33.872971 -97.246063,33.894238 -97.211334,33.905689 -97.187767,33.899204 -97.164169,33.863148 -97.168594,33.847794 -97.195015,33.836159 -97.208321,33.819649 -97.189163,33.752769 -97.152473,33.728668 -97.115562,33.725933 -97.0905,33.73167 -97.083466,33.742413 -97.087669,33.807571 -97.050026,33.823448 -97.078247,33.837811 -97.082176,33.851101 -97.0709,33.856728 -97.025597,33.840561 -97.005852,33.850513 -96.987709,33.876423 -96.987862,33.944202 -96.968185,33.937321 -96.936203,33.947849 -96.929565,33.961773 -96.898453,33.950027 -96.882851,33.924591 -96.878937,33.884003 -96.861015,33.861679 -96.844009,33.858032 -96.814117,33.871769 -96.797592,33.869949 -96.748825,33.831738 -96.711678,33.83387 -96.693382,33.847904 -96.677704,33.904324 -96.666237,33.913544 -96.584488,33.896145 -96.614166,33.8629 -96.601196,33.842957 -96.562134,33.82542 -96.510574,33.815685 -96.500748,33.78809 -96.487373,33.77813 -96.419464,33.788326 -96.370819,33.740395 -96.347588,33.705528 -96.316277,33.701801 -96.300789,33.71405 -96.28968,33.761932 -96.278076,33.773388 -96.212547,33.756691 -96.187027,33.758583 -96.168816,33.769356 -96.161316,33.798229 -96.141418,33.82032 -96.154518,33.823944 -96.180725,33.808434 -96.183128,33.815792 -96.169205,33.828983 -96.148964,33.83559 -96.109444,33.829258 -96.091522,33.844578 -96.047974,33.841278 -96.026749,33.856022 -96.014069,33.844208 -96.001793,33.856979 -96.002617,33.87339 -95.994209,33.875378 -95.977394,33.857952 -95.958763,33.86504 -95.943069,33.889973 -95.933075,33.89053 -95.846558,33.841038 -95.825974,33.843025 -95.795479,33.864674 -95.768517,33.851402 -95.764252,33.879005 -95.760696,33.89344 -95.746864,33.903397 -95.699707,33.894825 -95.633492,33.920105 -95.612984,33.920238 -95.61483,33.936691 -95.606071,33.944553 -95.562775,33.936073 -95.546318,33.904034 -95.519577,33.906643 -95.526733,33.897816 -95.547493,33.893158 -95.544037,33.885742 -95.512886,33.897736 -95.498856,33.881718 -95.468124,33.886433 -95.451607,33.865753 -95.33004,33.870918 -95.336227,33.897114 -95.301956,33.886623 -95.28643,33.886902 -95.277351,33.917938 -95.263618,33.8978 -95.250992,33.905022 -95.251289,33.936443 -95.234039,33.964863 -95.148315,33.943546 -95.127968,33.940868 -95.126678,33.917145 -95.119225,33.912281 -95.09536,33.921738 -95.082268,33.918453 -95.089714,33.896915 -95.083603,33.888462 -95.063477,33.917648 -95.063141,33.896694 -95.042862,33.884445 -95.037361,33.866451 -95.012772,33.869946 -94.989281,33.856182 -94.968704,33.866215 -94.959908,33.848076 -94.939888,33.840824 -94.940399,33.815807 -94.918236,33.816196 -94.908546,33.803478 -94.913879,33.789597 -94.881638,33.774963 -94.85788,33.749321 -94.81916,33.749405 -94.803223,33.739582 -94.783508,33.753262 -94.764175,33.752842 -94.782028,33.742268 -94.783157,33.733665 -94.749771,33.736706 -94.762718,33.716797 -94.742111,33.719048 -94.754478,33.707771 -94.741653,33.701267 -94.690987,33.690289 -94.668457,33.696537 -94.655479,33.692291 -94.644325,33.67765 -94.667953,33.671459 -94.669426,33.666061 -94.658539,33.663738 -94.638763,33.670105 -94.631737,33.683899 -94.600945,33.665607 -94.585106,33.678982 -94.578506,33.670471 -94.560722,33.671913 -94.565208,33.663013 -94.585159,33.662132 -94.588387,33.655449 -94.576462,33.652157 -94.545418,33.661621 -94.541931,33.648247 -94.562195,33.64283 -94.562149,33.635536 -94.550194,33.632694 -94.51799,33.643009 -94.525055,33.621021 -94.510559,33.63081 -94.50061,33.623047 -94.476486,33.631966 -94.435913,33.636444 -94.436333,33.616844 -94.451553,33.604347 -94.443329,33.596504 -94.428467,33.597141 -94.40657,33.573486 -94.393417,33.574959 -94.379112,33.593327 -94.370628,33.590042 -94.372307,33.572662 -94.395264,33.560303 -94.370758,33.547684 -94.328751,33.573135 -94.302383,33.556934 -94.29882,33.579853 -94.278984,33.589333 -94.272079,33.584606 -94.274544,33.561737 -94.237236,33.592422 -94.223038,33.58572 -94.235367,33.561535 -94.210884,33.557987 -94.205345,33.585079 -94.159515,33.593773 -94.155167,33.567085 -94.098701,33.572998 -94.086655,33.583954 -94.061432,33.577213 -94.035927,33.555912 -94.036507,33.270325 -94.03875,33.023289 -94.041603,32.882347 -94.040199,32.694813 -94.035233,32.389225 -94.034767,32.199448 -94.035065,31.994513 -94.009888,31.989134 -94.004395,31.977942 -93.977211,31.946159 -93.969986,31.923164 -93.93573,31.909456 -93.917923,31.909702 -93.923462,31.892593 -93.899261,31.894455 -93.892525,31.870066 -93.881264,31.87142 -93.877403,31.850113 -93.864822,31.817272 -93.834328,31.802017 -93.822067,31.774637 -93.831161,31.753281 -93.80999,31.730352 -93.814949,31.712351 -93.808769,31.707565 -93.792267,31.711395 -93.811844,31.674566 -93.806427,31.653767 -93.814728,31.647966 -93.819588,31.618092 -93.835579,31.615189 -93.832619,31.590183 -93.816322,31.57711 -93.810516,31.559063 -93.780128,31.533735 -93.763306,31.530724 -93.747543,31.537718 -93.731659,31.521877 -93.705795,31.520569 -93.718994,31.495403 -93.750435,31.490557 -93.751244,31.4855 -93.726784,31.459475 -93.698418,31.461458 -93.701927,31.446251 -93.687004,31.438131 -93.696129,31.427736 -93.694443,31.415922 -93.687492,31.40613 -93.664017,31.398329 -93.661072,31.372395 -93.634857,31.373827 -93.67704,31.328386 -93.681587,31.312679 -93.656128,31.286671 -93.645592,31.290262 -93.630829,31.273903 -93.616455,31.275805 -93.611877,31.270033 -93.611,31.242188 -93.590546,31.229687 -93.602921,31.199066 -93.593941,31.180199 -93.576942,31.17214 -93.550591,31.190929 -93.528923,31.185774 -93.526932,31.178076 -93.537018,31.17634 -93.528328,31.162943 -93.544189,31.159166 -93.537506,31.132441 -93.528091,31.125925 -93.535088,31.116072 -93.556679,31.109343 -93.559982,31.100536 -93.543121,31.094751 -93.544106,31.082373 -93.516998,31.074671 -93.525742,31.05698 -93.507217,31.038908 -93.547119,31.014141 -93.564941,31.018063 -93.567894,31.012924 -93.570847,30.997271 -93.560951,30.99169 -93.572456,30.976177 -93.548676,30.97019 -93.537338,30.956884 -93.532188,30.960732 -93.52562,30.93582 -93.529984,30.926971 -93.549622,30.924885 -93.546516,30.905334 -93.564476,30.901932 -93.568497,30.886234 -93.560844,30.87188 -93.552803,30.860283 -93.566444,30.845148 -93.555641,30.842342 -93.550682,30.828344 -93.581871,30.80204 -93.585175,30.772184 -93.618454,30.745789 -93.607651,30.73201 -93.61779,30.732548 -93.612411,30.710329 -93.617607,30.686802 -93.659988,30.672859 -93.677971,30.639692 -93.692879,30.640041 -93.684586,30.623425 -93.692696,30.615795 -93.671585,30.597832 -93.69342,30.598835 -93.717812,30.587379 -93.71788,30.568153 -93.735306,30.545517 -93.70546,30.522858 -93.714638,30.505114 -93.707275,30.496241 -93.714851,30.488628 -93.697975,30.470047 -93.703423,30.462513 -93.696571,30.442633 -93.721535,30.43298 -93.742561,30.408823 -93.754944,30.381788 -93.747833,30.367411 -93.759338,30.354145 -93.759178,30.340872 -93.729774,30.304916 -93.699211,30.297388 -93.707359,30.239372 -93.714844,30.220306 -93.704361,30.180861 -93.696167,30.175676 -93.699661,30.150808 -93.683144,30.148232 -93.685959,30.141253 -93.698639,30.141226 -93.696922,30.117929 -93.708382,30.11474 -93.715858,30.095669 -93.712479,30.06052 -93.760201,30.005964 -93.857277,29.990654 -93.856331,29.964602 -93.951767,29.818363 -93.834961,29.67457 -94.065407,29.674076 -94.356995,29.5599 -94.377007,29.55197 -94.682518,29.432905 -94.766548,29.363993 -94.785248,29.383261 -94.681915,29.475111 -94.572693,29.533052 -94.501282,29.517523 -94.469795,29.55678 -94.510811,29.545147 -94.533699,29.553984 -94.564438,29.578999 -94.788086,29.538557 -94.706421,29.658516 -94.700279,29.754568 -94.735725,29.792986 -94.829414,29.759857 -94.887161,29.668539 -94.932587,29.682209 -95.088264,29.80398 -95.040398,29.711578 -94.989334,29.679701 -95.014122,29.559265 -94.911156,29.500334 -94.982811,29.460527 -94.943756,29.464682 -94.952507,29.424234 -94.913445,29.420113 -94.916992,29.447823 -94.891136,29.399324 -94.815353,29.370932 -94.891472,29.393831 -94.898788,29.308775 -94.951134,29.325922 -95.066368,29.195877 -95.160522,29.200031 -95.16478,29.117548 -95.197342,29.105223 -95.248405,28.978392 -95.526581,28.803242 -95.683029,28.726954 -95.671318,28.752682 -95.786354,28.738871 -95.937309,28.690454 -95.956146,28.622673 -95.702148,28.718987 -96.206581,28.488386 -95.991646,28.596424 -95.983749,28.653133 -96.237587,28.571321 -96.239029,28.597116 -96.157471,28.611231 -96.240456,28.634859 -96.151062,28.762672 -96.212173,28.68672 -96.285973,28.661724 -96.270378,28.708981 -96.326157,28.634089 -96.364159,28.617981 -96.391777,28.670252 -96.392731,28.726028 -96.427086,28.712013 -96.449677,28.755035 -96.432259,28.697248 -96.403397,28.719494 -96.418785,28.638664 -96.375397,28.610088 -96.491203,28.556944 -96.437157,28.596991 -96.454384,28.655933 -96.483269,28.598055 -96.511894,28.608181 -96.511734,28.649542 -96.570396,28.636267 -96.570557,28.691841 -96.572212,28.808174 -96.576485,28.690689 -96.591499,28.71736 -96.646515,28.714142 -96.660011,28.679075 -96.606705,28.623634 -96.610344,28.558941 -96.566704,28.574099 -96.48658,28.506222 -96.563194,28.469627 -96.518501,28.460827 -96.476501,28.499454 -96.390724,28.434059 -96.661308,28.306263 -96.702362,28.340197 -96.703812,28.395885 -96.740768,28.403458 -96.787094,28.477507 -96.823875,28.44964 -96.788338,28.446255 -96.759102,28.410912 -96.77536,28.39163 -96.853493,28.404997 -96.788231,28.35247 -96.78627,28.312859 -96.793335,28.271372 -96.777931,28.229349 -96.803688,28.211447 -96.950905,28.114355 -96.91272,28.256798 -96.975304,28.210751 -96.941071,28.186771 -96.975105,28.115046 -97.033615,28.137398 -97.023567,28.199797 -97.131836,28.130426 -97.135414,28.16181 -97.167992,28.15946 -97.157059,28.116381 -97.260284,28.064724 -97.241234,28.048653 -97.270294,28.025932 -97.236214,28.04052 -97.123077,28.054266 -97.026405,28.10775 -97.023804,28.020237 -97.114624,27.915386 -97.195465,27.81222 -97.247025,27.822319 -97.213341,27.83111 -97.283485,27.871145 -97.361046,27.839954 -97.345619,27.873178 -97.479355,27.852962 -97.496681,27.875469 -97.521698,27.863626 -97.499535,27.843243 -97.479813,27.820282 -97.388542,27.831427 -97.396561,27.77084 -97.317795,27.712225 -97.34951,27.715328 -97.320015,27.690634 -97.353363,27.6408 -97.399216,27.633186 -97.347504,27.631439 -97.309212,27.707863 -97.249794,27.688831 -97.331459,27.562321 -97.412262,27.321024 -97.500435,27.319668 -97.507538,27.439215 -97.528381,27.344101 -97.600113,27.300135 -97.750076,27.419666 -97.680008,27.294373 -97.784744,27.28772 -97.548157,27.230207 -97.427216,27.265133 -97.503502,27.081541 -97.478996,26.996508 -97.568565,26.977858 -97.558052,26.846052 -97.495575,26.793781 -97.451698,26.600985 -97.425858,26.518225 -97.474709,26.476805 -97.421188,26.385059 -97.368698,26.35906 -97.353363,26.182449 -97.25312,26.068316 -97.276321,26.002275 -97.213097,26.009068 -97.172226,25.954569 -97.307144,25.965124 -97.304436,25.938663 -97.380989,25.917021 -97.385643,25.845362 -97.434349,25.845198 -97.590088,25.933231 -97.574936,25.954172 -97.612923,25.962002 -97.647972,26.023445 -97.867432,26.060141 -98.04007,26.059395 -98.076347,26.034626 -98.083214,26.065758 -98.200691,26.055376 -98.291946,26.098104 -98.271355,26.120895 -98.292274,26.132809 -98.327934,26.111647 -98.347191,26.15868 -98.384521,26.156031 -98.453392,26.220911 -98.488518,26.201544 -98.599968,26.260454 -98.677917,26.242056 -98.819832,26.375071 -98.908897,26.360329 -98.93927,26.395309 -99.106728,26.419531 -99.101471,26.48834 -99.168678,26.545729 -99.165817,26.579889 -99.285522,26.857361 -99.390518,26.94663 -99.392715,26.99555 -99.455063,27.028648 -99.437157,27.199198 -99.465271,27.269884 -99.543587,27.318653 -99.490494,27.490755 -99.526741,27.504284 -99.549187,27.612627 -99.714493,27.661558 -99.815727,27.780107 -99.874733,27.797686 -99.941856,27.986881 -99.993309,28.00346 -100.096924,28.154282 -100.214073,28.201935 -100.223465,28.241457 -100.29792,28.280354 -100.292892,28.32036 -100.35157,28.394182 -100.37677,28.478651 -100.345802,28.500811 -100.419533,28.544191 -100.403175,28.589733 -100.49791,28.660988 -100.58979,28.894222 -100.647224,28.92235 -100.66877,29.080072 -100.768608,29.166571 -100.796989,29.242502 -101.009056,29.373255 -101.06736,29.473553 -101.261429,29.526474 -101.254585,29.62875 -101.308929,29.58091 -101.305862,29.652431 -101.368401,29.657162 -101.4161,29.745434 -101.401276,29.769905 -101.448425,29.760586 -101.470467,29.788691 -101.538345,29.763018 -101.543953,29.81012 -101.58149,29.76515 -101.639671,29.75696 -101.759094,29.787167 -101.805206,29.779999 -101.819099,29.814125 -101.924225,29.788502 -101.97332,29.818773 -102.063995,29.784571 -102.324333,29.880116 -102.367561,29.845289 -102.384796,29.767946 -102.503098,29.785456 -102.551949,29.7495 -102.5765,29.778248 -102.637611,29.732338 -102.676361,29.744225 -102.804726,29.530146 -102.822205,29.411844 -102.883011,29.353371 -102.908325,29.269203 -102.866173,29.229036 -102.988098,29.190863 -103.153465,28.978682 -103.266586,29.007454 -103.28035,28.986374 -103.335518,29.050339 -103.37545,29.032108 -103.474075,29.072134 -103.526237,29.146646 -103.720314,29.190632 -103.739853,29.230349 -103.782158,29.229795 -103.767761,29.28124 -103.786995,29.26726 -104.045631,29.328119 -104.164383,29.400715 -104.204735,29.484041 -104.377594,29.550611 -104.535248,29.679466 -104.57756,29.807936 -104.67437,29.909283 -104.696495,30.057302 -104.674759,30.148964 -104.702614,30.238489 -104.813957,30.35047 -104.806473,30.376448 -104.852997,30.392263 -104.890678,30.570557 -104.986931,30.641325 -104.997543,30.684334 -105.060562,30.68787 -105.21434,30.812086 -105.258186,30.797653 -105.287598,30.831949 -105.313782,30.816507 -105.390312,30.853081 -105.409065,30.90251 -105.554382,30.998285 -105.603218,31.086428 -105.76973,31.17078 -105.99836,31.393818-94.913429,29.257572 -94.76738,29.342451 -94.748405,29.31949 -95.105415,29.096958 -94.913429,29.257572-96.397881,28.345846 -96.834625,28.066322 -96.803841,28.172161 -96.738907,28.183535 -96.532135,28.318245 -96.463051,28.325832 -96.422554,28.391439 -96.397881,28.345846-96.939964,28.045933 -96.872421,28.131405 -96.837425,28.101841 -96.853806,28.049402 -97.049606,27.840954 -97.024429,27.914381 -96.949387,27.984526 -96.973,28.000853 -96.939964,28.045933-97.359116,27.283718 -97.379379,27.210453 -97.376091,27.284643 -97.335503,27.440819 -97.248672,27.581133 -97.258682,27.651749 -97.203583,27.612064 -97.170181,27.70746 -97.075294,27.811274 -97.113037,27.819216 -97.053566,27.830473 -97.223717,27.574007 -97.359116,27.283718-97.301132,26.601023 -97.358025,26.706646 -97.381332,26.820375 -97.395309,26.921988 -97.400909,27.111227 -97.388786,27.201651 -97.378532,27.204449 -97.386925,27.097244 -97.381332,26.949022 -97.358025,26.802664 -97.295837,26.60067 -97.232109,26.418142 -97.194992,26.259241 -97.171799,26.077721 -97.179337,26.07192 -97.208916,26.250542 -97.226311,26.348551 -97.251251,26.419304 -97.26725,26.478905 -97.278549,26.539963 -97.301132,26.601023Texas48W S CenTX688219.0717337.5491.712202E74377106.06115966.08433346.000000018688674.06192585.05860490.01142908.0168814.07687338.0590269.02139266.01042397.00.4930.5072487642.0-109.048882,32.441967 -109.050728,32.77948 -109.049904,33.205101 -109.049721,33.783249 -109.048012,34.59174 -109.045998,34.954613 -109.047195,35.996655 -109.047821,36.996643 -108.371834,36.999474 -107.471855,36.998772 -107.410217,36.99752 -106.889778,36.999073 -106.860657,36.989491 -106.471588,36.991493 -105.991425,36.992275 -105.712891,36.994541 -105.212532,36.99258 -105.145615,36.993183 -103.993111,36.994446 -103.077377,36.999741 -102.997223,36.998505 -102.996918,36.492344 -103.026802,36.491566 -103.02356,36.056026 -103.022118,35.742287 -103.021797,35.623604 -103.02565,35.177208 -103.02475,34.964718 -103.022156,34.745266 -103.029144,34.307743 -103.032761,33.826088 -103.038239,33.565742 -103.042603,33.377728 -103.048836,32.953533 -103.059547,32.51543 -103.055191,32.084995 -103.057968,32.0019 -103.332092,32.004154 -103.728973,32.006104 -103.980896,32.00589 -104.018814,32.007278 -104.850563,32.003151 -104.921799,32.004269 -106.002708,32.001553 -106.377846,32.000645 -106.623077,32.000988 -106.649513,31.980228 -106.632057,31.972118 -106.633202,31.913998 -106.643532,31.895102 -106.615578,31.844635 -106.614441,31.817728 -106.538971,31.786198 -107.282997,31.784981 -108.20266,31.786804 -108.21006,31.343742 -109.045006,31.343348 -109.048882,32.441967New Mexico35MtnNM304472.805586.0541379559.0358259.0497680.0677870.0701689.0491847.0433150.087085.06019.0576213.049368.0169914.068673.00.4910.509237629.0-85.070137,31.980545 -85.115219,31.907265 -85.135635,31.854723 -85.13163,31.783651 -85.130234,31.77869 -85.115356,31.731401 -85.118744,31.708406 -85.111275,31.684076 -85.059357,31.621098 -85.042793,31.55422 -85.04277,31.519489 -85.066383,31.475918 -85.061478,31.440491 -85.088013,31.36706 -85.082634,31.332159 -85.081299,31.302904 -85.103432,31.271259 -85.093674,31.226896 -85.103027,31.196743 -85.093437,31.172031 -85.068733,31.162184 -85.038139,31.126532 -85.017067,31.07992 -85.001678,31.001068 -85.485077,31.00082 -85.486664,31.000816 -86.031883,30.993147 -86.181534,30.995045 -86.383972,30.991358 -86.701897,30.997911 -86.779404,30.998011 -87.163147,31.002975 -87.598595,31.002449 -87.589882,30.954178 -87.625725,30.876717 -87.615929,30.84811 -87.541916,30.785507 -87.526619,30.748302 -87.460159,30.705612 -87.418915,30.692619 -87.398666,30.667824 -87.393303,30.619905 -87.422089,30.556299 -87.445374,30.531195 -87.418839,30.481504 -87.405273,30.440163 -87.466461,30.359522 -87.587585,30.319054 -87.593422,30.278214 -87.795341,30.233728 -88.002563,30.2334 -87.779953,30.272436 -87.757515,30.299221 -87.903473,30.421099 -87.913391,30.620993 -88.019791,30.744001 -88.135681,30.336958 -88.32032,30.404095 -88.401405,30.393353 -88.417229,30.736267 -88.429184,31.000511 -88.434547,31.120699 -88.450783,31.43545 -88.465073,31.702085 -88.472923,31.888723 -88.437691,32.227612 -88.425758,32.309082 -88.393799,32.580334 -88.348007,32.924629 -88.339432,32.98737 -88.304794,33.288773 -88.274551,33.538685 -88.248161,33.742615 -88.202606,34.059017 -88.19931,34.090343 -88.167572,34.324047 -88.151215,34.465176 -88.13636,34.580402 -88.090431,34.895542 -88.108849,34.899849 -88.143066,34.930225 -88.193954,35.004368 -88.194923,35.013458 -87.986046,35.015949 -87.607788,35.010464 -87.222748,35.007263 -87.207573,35.007877 -86.83342,34.998161 -86.782372,34.99699 -86.313065,34.995186 -86.303513,34.995377 -85.869591,34.992302 -85.608994,34.990086 -85.583092,34.862244 -85.534729,34.622406 -85.525871,34.584602 -85.511894,34.52293 -85.460327,34.29007 -85.416611,34.086823 -85.395782,33.959728 -85.384056,33.905308 -85.335335,33.654816 -85.305031,33.490482 -85.293877,33.425762 -85.233902,33.129116 -85.233559,33.120018 -85.180779,32.871685 -85.162361,32.807316 -85.128151,32.776939 -85.133362,32.756184 -85.124947,32.744251 -85.11393,32.734257 -85.107796,32.689838 -85.090538,32.676018 -85.103867,32.645775 -85.086388,32.628315 -85.084213,32.602867 -85.070839,32.581116 -84.99572,32.518787 -84.989883,32.454693 -84.965454,32.429306 -84.971031,32.396667 -84.984558,32.386948 -84.971733,32.371357 -85.002159,32.346931 -85.005402,32.329445 -84.921143,32.292988 -84.894676,32.268585 -84.894089,32.259026 -84.905434,32.249405 -84.923752,32.247238 -84.916077,32.228405 -84.928444,32.217827 -84.975815,32.212097 -84.960457,32.191776 -85.007896,32.178726 -85.024452,32.166122 -85.053383,32.126484 -85.046257,32.09074 -85.056725,32.069489 -85.06208,32.049854 -85.05677,32.01722 -85.070137,31.980545Alabama01E S CenAL131443.1194332.2684040587.01103835.01506790.01936162.02104425.01455669.01374395.0267191.013279.01741794.0128587.0474797.0360499.00.4790.521630032.0-88.450783,31.43545 -88.434547,31.120699 -88.429184,31.000511 -88.417229,30.736267 -88.401405,30.393353 -88.399216,30.352686 -88.464226,30.325876 -88.577744,30.38055 -88.683243,30.342123 -88.873756,30.430079 -88.930191,30.416603 -88.885696,30.39809 -89.276077,30.314644 -89.273483,30.37219 -89.334999,30.380228 -89.357483,30.365089 -89.318497,30.318657 -89.415565,30.256289 -89.438072,30.200769 -89.57383,30.194738 -89.609947,30.241224 -89.606255,30.247633 -89.621605,30.256769 -89.625885,30.290161 -89.639114,30.295635 -89.637024,30.311649 -89.61853,30.323566 -89.62014,30.343235 -89.633392,30.355114 -89.646629,30.355097 -89.65461,30.378872 -89.675308,30.399881 -89.6754,30.44516 -89.683388,30.462526 -89.694534,30.467995 -89.695618,30.478054 -89.71312,30.481224 -89.718994,30.495846 -89.732254,30.497646 -89.755112,30.51543 -89.772728,30.551056 -89.790779,30.553753 -89.820236,30.624081 -89.805466,30.649267 -89.819283,30.651056 -89.829453,30.670685 -89.845375,30.666063 -89.83532,30.675694 -89.841713,30.679331 -89.84127,30.700361 -89.83065,30.703592 -89.843979,30.712236 -89.835541,30.729174 -89.823326,30.732866 -89.825493,30.74246 -89.813278,30.74798 -89.824615,30.789537 -89.81086,30.811512 -89.796494,30.812466 -89.796021,30.828918 -89.774727,30.830345 -89.78495,30.861393 -89.765778,30.861898 -89.763237,30.900286 -89.746727,30.902609 -89.745682,30.909922 -89.75798,30.920858 -89.740402,30.925924 -89.748466,30.949663 -89.739449,30.965216 -89.719749,30.975309 -89.726707,30.984432 -89.723549,31.001341 -89.732643,31.007261 -89.833481,31.007002 -90.259285,31.007191 -90.343567,31.005211 -90.542557,31.002151 -90.560158,31.001528 -90.829613,31.001368 -91.056908,31.00024 -91.1791,31.000284 -91.632179,31.001186 -91.627655,31.011782 -91.57267,31.032471 -91.551964,31.057983 -91.564857,31.081959 -91.619995,31.127518 -91.59137,31.178307 -91.600845,31.213755 -91.636879,31.240929 -91.643562,31.270943 -91.634094,31.277519 -91.556801,31.270296 -91.51696,31.282898 -91.502357,31.298687 -91.505638,31.323286 -91.542671,31.346815 -91.544289,31.368704 -91.534454,31.38258 -91.559258,31.38806 -91.567612,31.421236 -91.552353,31.43293 -91.534683,31.434166 -91.53405,31.409069 -91.522896,31.391922 -91.494591,31.37508 -91.480721,31.377611 -91.465805,31.4039 -91.473175,31.420206 -91.507782,31.452915 -91.506363,31.52552 -91.502838,31.534714 -91.464355,31.5427 -91.423462,31.56258 -91.404137,31.586187 -91.415268,31.602427 -91.497032,31.604193 -91.508759,31.62178 -91.50769,31.643705 -91.49765,31.65073 -91.45726,31.626801 -91.408287,31.625364 -91.389069,31.65444 -91.387833,31.716518 -91.36496,31.751577 -91.370384,31.753311 -91.339798,31.758379 -91.282509,31.749723 -91.263878,31.7596 -91.262573,31.773764 -91.336143,31.763458 -91.36702,31.770704 -91.347122,31.79567 -91.334732,31.843317 -91.30336,31.862984 -91.292534,31.861332 -91.276688,31.827372 -91.250618,31.818659 -91.241272,31.835226 -91.26458,31.865425 -91.24437,31.878511 -91.201431,31.914289 -91.163033,31.988291 -91.108002,31.991827 -91.07238,32.021057 -91.073135,32.031994 -91.086884,32.043655 -91.143013,32.066105 -91.145584,32.085674 -91.125618,32.088245 -91.089302,32.056843 -91.06501,32.058552 -91.073814,32.093994 -91.041084,32.10767 -91.011284,32.13406 -91.00383,32.169262 -91.024414,32.169899 -91.054474,32.184532 -91.045311,32.158672 -91.054047,32.134392 -91.083008,32.148579 -91.108711,32.134991 -91.15654,32.144783 -91.166847,32.171989 -91.157265,32.205864 -91.115952,32.225605 -91.100571,32.214886 -91.087914,32.232388 -91.062462,32.232742 -91.041649,32.249439 -90.977219,32.223404 -90.971016,32.269066 -90.983818,32.287132 -90.980766,32.297653 -90.971657,32.303699 -90.929245,32.297405 -90.916374,32.305317 -90.875351,32.37965 -90.885155,32.381355 -90.914925,32.345898 -90.984566,32.356396 -90.998863,32.366234 -91.009209,32.397083 -90.969986,32.419018 -90.965485,32.440037 -90.98745,32.452965 -91.026909,32.442417 -91.05851,32.446999 -91.117683,32.498569 -91.118744,32.524067 -91.088783,32.548637 -91.037201,32.496956 -91.019684,32.490814 -90.99205,32.495281 -90.995071,32.511642 -91.063087,32.54216 -91.073265,32.561611 -91.058868,32.576389 -91.032326,32.582672 -90.998657,32.615467 -90.996132,32.625977 -91.007881,32.642673 -91.027466,32.641502 -91.04763,32.614353 -91.063812,32.606388 -91.110992,32.597527 -91.146263,32.644852 -91.139557,32.663174 -91.059029,32.723518 -91.09771,32.749397 -91.136467,32.751125 -91.156342,32.76268 -91.142151,32.841213 -91.079529,32.877163 -91.075592,32.953712 -91.092674,32.987621 -91.111816,32.98735 -91.132355,32.975224 -91.129936,32.937466 -91.137177,32.917786 -91.169701,32.905022 -91.198311,32.914162 -91.20916,32.935852 -91.161865,33.000294 -91.162132,33.013039 -91.160675,33.021709 -91.156685,33.040432 -91.123985,33.047272 -91.11779,33.065571 -91.14679,33.090652 -91.190536,33.113224 -91.195503,33.140465 -91.177628,33.150288 -91.12133,33.131069 -91.095856,33.145084 -91.086319,33.161602 -91.092003,33.225697 -91.054543,33.245781 -91.040428,33.281921 -91.053833,33.293575 -91.076324,33.292358 -91.102905,33.24921 -91.122505,33.268505 -91.141747,33.322384 -91.130424,33.359402 -91.106941,33.393406 -91.07869,33.410179 -91.061516,33.431797 -91.060982,33.460011 -91.073761,33.466206 -91.0858,33.462856 -91.099129,33.414898 -91.137634,33.388878 -91.184982,33.39183 -91.204163,33.414299 -91.19883,33.422112 -91.130516,33.443123 -91.119713,33.452831 -91.118958,33.469673 -91.128799,33.493191 -91.164978,33.51178 -91.174179,33.504368 -91.17173,33.466644 -91.18177,33.447388 -91.232849,33.443443 -91.22715,33.459454 -91.207642,33.473396 -91.180405,33.512012 -91.182846,33.52335 -91.204102,33.538506 -91.213486,33.539276 -91.227631,33.556351 -91.22673,33.590481 -91.187805,33.57468 -91.168022,33.577244 -91.15065,33.616161 -91.154404,33.637032 -91.205307,33.669945 -91.215141,33.690723 -91.211678,33.708965 -91.1633,33.718315 -91.121048,33.677528 -91.083771,33.662586 -91.037834,33.683216 -91.038826,33.70549 -91.056213,33.719357 -91.104568,33.708233 -91.128944,33.71244 -91.138,33.723225 -91.142891,33.77182 -91.136986,33.780087 -91.105415,33.77644 -91.066391,33.786526 -91.043404,33.769554 -91.018433,33.763973 -90.995377,33.771549 -90.984039,33.785339 -90.990372,33.798897 -91.028854,33.816586 -91.054817,33.843525 -91.061371,33.867081 -91.018463,33.936306 -91.075706,33.974644 -91.088852,33.994469 -91.069695,34.006096 -91.031059,33.985699 -91.009544,33.990528 -91.000259,33.968372 -90.986816,33.960815 -90.96479,33.967461 -90.961128,33.978874 -90.975273,33.994606 -90.973366,34.010998 -90.95047,34.031288 -90.886345,34.04071 -90.866333,34.100952 -90.906311,34.102749 -90.942245,34.125942 -90.953346,34.155804 -90.928917,34.18565 -90.846611,34.147545 -90.828865,34.148659 -90.80751,34.166172 -90.822922,34.190544 -90.921486,34.20483 -90.933708,34.234676 -90.928436,34.250195 -90.863411,34.219162 -90.83136,34.229534 -90.823837,34.27734 -90.806419,34.299347 -90.792526,34.299957 -90.758255,34.278976 -90.747757,34.317719 -90.761856,34.363914 -90.75531,34.372166 -90.687485,34.377872 -90.681137,34.3634 -90.689377,34.320145 -90.679337,34.317974 -90.657814,34.330006 -90.657242,34.36591 -90.60379,34.404598 -90.579124,34.432999 -90.574402,34.453945 -90.59005,34.496506 -90.580345,34.520222 -90.565681,34.532509 -90.537148,34.543327 -90.530617,34.555649 -90.577614,34.604744 -90.58799,34.627815 -90.5793,34.645611 -90.561058,34.700287 -90.539062,34.685947 -90.547546,34.651806 -90.538963,34.636894 -90.508812,34.638065 -90.466225,34.672039 -90.469978,34.704254 -90.513565,34.702068 -90.533279,34.713253 -90.547745,34.790337 -90.52726,34.807323 -90.516045,34.805603 -90.501282,34.789833 -90.498734,34.765785 -90.516968,34.748371 -90.504417,34.729855 -90.485924,34.726833 -90.451431,34.741199 -90.448868,34.76075 -90.466705,34.799664 -90.451904,34.825218 -90.474716,34.857727 -90.470528,34.880924 -90.438087,34.886181 -90.427841,34.872643 -90.433548,34.835354 -90.42231,34.832268 -90.403931,34.841038 -90.341423,34.860577 -90.322823,34.850266 -90.301552,34.851776 -90.299446,34.86496 -90.296272,34.88269 -90.266708,34.896511 -90.242844,34.920731 -90.241898,34.938904 -90.248169,34.94976 -90.299507,34.978481 -90.305351,35.000694 -89.717186,34.999168 -89.646477,35.000641 -89.3423,34.999714 -89.198067,35.000793 -89.006134,35.000145 -88.812492,35.00235 -88.784988,35.003094 -88.383102,35.004955 -88.351685,35.003746 -88.193954,35.004368 -88.143066,34.930225 -88.108849,34.899849 -88.090431,34.895542 -88.13636,34.580402 -88.151215,34.465176 -88.167572,34.324047 -88.19931,34.090343 -88.202606,34.059017 -88.248161,33.742615 -88.274551,33.538685 -88.304794,33.288773 -88.339432,32.98737 -88.348007,32.924629 -88.393799,32.580334 -88.425758,32.309082 -88.437691,32.227612 -88.472923,31.888723 -88.465073,31.702085 -88.450783,31.43545Mississippi28E S CenMS121506.433598.3372573216.0674378.0911374.01230617.01342599.0890741.0777422.0184019.08020.01028773.094712.0294070.0222644.00.4780.522399625.0-85.130234,31.77869 -85.13163,31.783651 -85.135635,31.854723 -85.115219,31.907265 -85.070137,31.980545 -85.05677,32.01722 -85.06208,32.049854 -85.056725,32.069489 -85.046257,32.09074 -85.053383,32.126484 -85.024452,32.166122 -85.007896,32.178726 -84.960457,32.191776 -84.975815,32.212097 -84.928444,32.217827 -84.916077,32.228405 -84.923752,32.247238 -84.905434,32.249405 -84.894089,32.259026 -84.894676,32.268585 -84.921143,32.292988 -85.005402,32.329445 -85.002159,32.346931 -84.971733,32.371357 -84.984558,32.386948 -84.971031,32.396667 -84.965454,32.429306 -84.989883,32.454693 -84.99572,32.518787 -85.070839,32.581116 -85.084213,32.602867 -85.086388,32.628315 -85.103867,32.645775 -85.090538,32.676018 -85.107796,32.689838 -85.11393,32.734257 -85.124947,32.744251 -85.133362,32.756184 -85.128151,32.776939 -85.162361,32.807316 -85.180779,32.871685 -85.233559,33.120018 -85.233902,33.129116 -85.293877,33.425762 -85.305031,33.490482 -85.335335,33.654816 -85.384056,33.905308 -85.395782,33.959728 -85.416611,34.086823 -85.460327,34.29007 -85.511894,34.52293 -85.525871,34.584602 -85.534729,34.622406 -85.583092,34.862244 -85.608994,34.990086 -85.467422,34.990047 -85.359985,34.989902 -85.267761,34.989075 -84.972847,34.992554 -84.967911,34.992607 -84.800476,34.992756 -84.771194,34.990681 -84.618752,34.988682 -84.323853,34.98901 -84.11824,34.988224 -83.988548,34.989067 -83.937996,34.989391 -83.549416,34.989536 -83.513008,34.992023 -83.106285,35.000278 -83.100578,34.984074 -83.115669,34.954597 -83.121529,34.960804 -83.127441,34.954285 -83.113228,34.936035 -83.125763,34.940701 -83.137688,34.930386 -83.155151,34.93219 -83.158478,34.917561 -83.182304,34.910557 -83.203636,34.884079 -83.219551,34.889091 -83.232925,34.87373 -83.243195,34.877991 -83.235809,34.862293 -83.250427,34.850075 -83.250542,34.839619 -83.267891,34.839138 -83.270233,34.814987 -83.302872,34.805439 -83.322807,34.787151 -83.32354,34.75214 -83.350449,34.727287 -83.3508,34.709553 -83.339905,34.677597 -83.299011,34.662849 -83.237106,34.613224 -83.165001,34.598839 -83.159073,34.576733 -83.137489,34.567768 -83.108246,34.534916 -83.079147,34.518871 -83.055122,34.48996 -83.00808,34.470726 -82.982094,34.476395 -82.90519,34.477882 -82.868179,34.457439 -82.844231,34.412571 -82.836578,34.370941 -82.808723,34.339794 -82.783012,34.290409 -82.764313,34.280853 -82.758171,34.233265 -82.742737,34.205444 -82.735924,34.169685 -82.6605,34.108242 -82.603088,34.034519 -82.596283,34.013302 -82.573753,33.968784 -82.576759,33.959167 -82.517685,33.930908 -82.456779,33.878101 -82.424675,33.86013 -82.390747,33.854015 -82.36586,33.835884 -82.351463,33.835266 -82.311272,33.803787 -82.305664,33.78252 -82.266373,33.761467 -82.235054,33.690208 -82.214363,33.680603 -82.192345,33.623707 -82.16729,33.615082 -82.139137,33.593773 -82.116562,33.594643 -82.065842,33.57373 -82.038704,33.547371 -82.020302,33.538597 -81.996696,33.520355 -81.981079,33.490601 -81.936546,33.470882 -81.916801,33.451195 -81.927437,33.436005 -81.913727,33.415302 -81.940498,33.408024 -81.925972,33.376419 -81.945229,33.377007 -81.936874,33.350296 -81.911575,33.349354 -81.912254,33.332054 -81.893646,33.335094 -81.877037,33.306694 -81.865707,33.315525 -81.840271,33.308201 -81.860878,33.296947 -81.826736,33.269279 -81.840004,33.273163 -81.83696,33.260468 -81.854126,33.243355 -81.810928,33.226295 -81.801727,33.207779 -81.779999,33.21722 -81.770042,33.213734 -81.759758,33.195232 -81.763573,33.169685 -81.74054,33.144547 -81.704445,33.122787 -81.61113,33.087723 -81.595993,33.070637 -81.560204,33.060661 -81.547829,33.04353 -81.52977,33.043774 -81.508919,33.012638 -81.492905,33.004658 -81.49807,32.959518 -81.51001,32.955261 -81.510406,32.947063 -81.477219,32.897411 -81.465202,32.897568 -81.483376,32.875931 -81.45871,32.871239 -81.45549,32.844414 -81.432503,32.841518 -81.424133,32.831608 -81.430481,32.820141 -81.421005,32.80933 -81.430412,32.785988 -81.416245,32.756561 -81.42321,32.749645 -81.407799,32.741638 -81.420708,32.701397 -81.407364,32.686531 -81.399651,32.650642 -81.412277,32.625435 -81.385078,32.595707 -81.36644,32.588188 -81.366875,32.581802 -81.351662,32.583351 -81.340576,32.571182 -81.299156,32.567108 -81.274475,32.554634 -81.268158,32.533749 -81.236412,32.520432 -81.195328,32.464375 -81.200096,32.420128 -81.178421,32.386639 -81.179291,32.37159 -81.157646,32.338547 -81.142052,32.348274 -81.132057,32.332424 -81.124214,32.276447 -81.148338,32.257515 -81.147858,32.224247 -81.114883,32.190392 -81.119278,32.117409 -81.105042,32.10524 -80.89492,32.005779 -80.973724,31.947712 -80.971046,31.890095 -81.140022,31.864124 -81.180168,31.905678 -81.207428,31.899908 -81.197472,31.919683 -81.204079,31.928221 -81.239853,31.903204 -81.284462,31.949219 -81.245117,31.89448 -81.206657,31.920439 -81.220276,31.892927 -81.18042,31.897459 -81.14164,31.8533 -81.039185,31.823139 -81.061218,31.777321 -81.137001,31.726852 -81.174187,31.799593 -81.196541,31.784626 -81.175354,31.735582 -81.289902,31.79945 -81.135117,31.645847 -81.18737,31.599676 -81.240898,31.639954 -81.239326,31.556662 -81.194954,31.504929 -81.208755,31.466673 -81.313248,31.33737 -81.365761,31.344328 -81.410522,31.311253 -81.394951,31.263861 -81.388992,31.296921 -81.301018,31.275589 -81.310432,31.242464 -81.381187,31.148714 -81.528564,31.130898 -81.525436,31.086317 -81.475517,31.043591 -81.535606,31.076525 -81.491035,30.985579 -81.52874,30.961885 -81.485008,30.944666 -81.529449,30.864544 -81.498566,30.757278 -81.528778,30.721216 -81.536774,30.706341 -81.601349,30.724651 -81.60495,30.716085 -81.628159,30.731539 -81.642654,30.728846 -81.716942,30.745134 -81.736847,30.763655 -81.757881,30.769398 -81.776878,30.761351 -81.803368,30.787851 -81.873169,30.798851 -81.899307,30.828075 -81.907684,30.813242 -81.94397,30.824017 -81.953194,30.820198 -81.961716,30.795774 -81.981644,30.778118 -82.015701,30.791086 -82.01313,30.764023 -82.032043,30.757299 -82.045074,30.650677 -82.013817,30.598455 -82.005966,30.570755 -82.022675,30.477482 -82.035286,30.442642 -82.046265,30.433832 -82.038521,30.378668 -82.052933,30.363558 -82.164803,30.361057 -82.180397,30.368397 -82.205727,30.42362 -82.199348,30.489782 -82.219528,30.502739 -82.238556,30.531214 -82.221199,30.566845 -82.412247,30.577084 -82.463287,30.582468 -82.583107,30.588835 -82.696503,30.595503 -83.132576,30.62113 -83.301445,30.633078 -83.31073,30.634096 -83.609177,30.650583 -83.737961,30.660292 -84.000839,30.675341 -84.075668,30.678381 -84.281761,30.690224 -84.374542,30.693897 -84.863083,30.712473 -84.864662,30.714312 -84.888367,30.743698 -84.915421,30.753899 -84.926971,30.775898 -84.93264,30.802435 -84.927002,30.846733 -84.937851,30.89477 -84.969086,30.926907 -84.97364,30.963478 -85.000214,30.979134 -85.001678,31.001068 -85.017067,31.07992 -85.038139,31.126532 -85.068733,31.162184 -85.093437,31.172031 -85.103027,31.196743 -85.093674,31.226896 -85.103432,31.271259 -85.081299,31.302904 -85.082634,31.332159 -85.088013,31.36706 -85.061478,31.440491 -85.066383,31.475918 -85.04277,31.519489 -85.042793,31.55422 -85.059357,31.621098 -85.111275,31.684076 -85.118744,31.708406 -85.115356,31.731401 -85.130234,31.77869-81.485237,30.903648 -81.416588,30.970366 -81.403236,30.938568 -81.455902,30.71619 -81.479645,30.736647 -81.47007,30.860023 -81.503487,30.8815 -81.485237,30.903648Georgia13S AtlGA148574.8883934.9916457339.01707476.02359351.03134562.03322777.02346478.02372513.0465734.086587.03081555.0187390.0802419.0536597.00.4850.515935083.0-81.759758,33.195232 -81.770042,33.213734 -81.779999,33.21722 -81.801727,33.207779 -81.810928,33.226295 -81.854126,33.243355 -81.83696,33.260468 -81.840004,33.273163 -81.826736,33.269279 -81.860878,33.296947 -81.840271,33.308201 -81.865707,33.315525 -81.877037,33.306694 -81.893646,33.335094 -81.912254,33.332054 -81.911575,33.349354 -81.936874,33.350296 -81.945229,33.377007 -81.925972,33.376419 -81.940498,33.408024 -81.913727,33.415302 -81.927437,33.436005 -81.916801,33.451195 -81.936546,33.470882 -81.981079,33.490601 -81.996696,33.520355 -82.020302,33.538597 -82.038704,33.547371 -82.065842,33.57373 -82.116562,33.594643 -82.139137,33.593773 -82.16729,33.615082 -82.192345,33.623707 -82.214363,33.680603 -82.235054,33.690208 -82.266373,33.761467 -82.305664,33.78252 -82.311272,33.803787 -82.351463,33.835266 -82.36586,33.835884 -82.390747,33.854015 -82.424675,33.86013 -82.456779,33.878101 -82.517685,33.930908 -82.576759,33.959167 -82.573753,33.968784 -82.596283,34.013302 -82.603088,34.034519 -82.6605,34.108242 -82.735924,34.169685 -82.742737,34.205444 -82.758171,34.233265 -82.764313,34.280853 -82.783012,34.290409 -82.808723,34.339794 -82.836578,34.370941 -82.844231,34.412571 -82.868179,34.457439 -82.90519,34.477882 -82.982094,34.476395 -83.00808,34.470726 -83.055122,34.48996 -83.079147,34.518871 -83.108246,34.534916 -83.137489,34.567768 -83.159073,34.576733 -83.165001,34.598839 -83.237106,34.613224 -83.299011,34.662849 -83.339905,34.677597 -83.3508,34.709553 -83.350449,34.727287 -83.32354,34.75214 -83.322807,34.787151 -83.302872,34.805439 -83.270233,34.814987 -83.267891,34.839138 -83.250542,34.839619 -83.250427,34.850075 -83.235809,34.862293 -83.243195,34.877991 -83.232925,34.87373 -83.219551,34.889091 -83.203636,34.884079 -83.182304,34.910557 -83.158478,34.917561 -83.155151,34.93219 -83.137688,34.930386 -83.125763,34.940701 -83.113228,34.936035 -83.127441,34.954285 -83.121529,34.960804 -83.115669,34.954597 -83.100578,34.984074 -83.106285,35.000278 -83.007278,35.024204 -82.887695,35.05537 -82.771347,35.085423 -82.697357,35.091232 -82.688034,35.097801 -82.68605,35.121464 -82.654495,35.119457 -82.57003,35.14949 -82.524635,35.15456 -82.466743,35.1735 -82.43792,35.169559 -82.38961,35.208241 -82.371376,35.182724 -82.360123,35.182949 -82.350861,35.192673 -82.32077,35.184189 -82.278328,35.195007 -82.210175,35.193127 -81.971443,35.188282 -81.87059,35.183117 -81.765358,35.182472 -81.362175,35.162853 -81.322823,35.163757 -81.049301,35.151531 -81.049042,35.132011 -81.028442,35.105408 -81.065552,35.066483 -81.039886,35.037201 -80.927795,35.10125 -80.894714,35.059734 -80.840164,35.002018 -80.785652,34.940639 -80.800064,34.816113 -80.561546,34.815228 -80.325279,34.814762 -79.919952,34.807919 -79.685959,34.805256 -79.667503,34.800663 -79.455971,34.63409 -79.447144,34.619061 -79.074501,34.304573 -78.655716,33.948673 -78.57972,33.881992 -78.622856,33.865536 -78.586197,33.853359 -78.855133,33.71619 -79.000938,33.57246 -79.121101,33.430611 -79.150383,33.317089 -79.158348,33.342266 -79.271072,33.296871 -79.202141,33.183521 -79.22979,33.141338 -79.348976,33.154827 -79.298058,33.138794 -79.288101,33.10453 -79.410835,33.013699 -79.582565,33.015842 -79.617439,32.980797 -79.587852,32.924934 -79.607018,32.899071 -79.752518,32.79406 -79.907677,32.790531 -79.800056,32.929783 -79.907333,32.859215 -79.930443,32.914047 -79.962311,32.904236 -79.948174,32.810623 -79.891846,32.733852 -79.896584,32.677242 -79.996803,32.605606 -80.210983,32.561417 -80.290833,32.503883 -80.347351,32.511768 -80.391045,32.65522 -80.416168,32.66898 -80.399979,32.504772 -80.480881,32.510246 -80.550568,32.557655 -80.539055,32.509678 -80.646584,32.518692 -80.64373,32.498272 -80.486244,32.43084 -80.44297,32.373314 -80.460564,32.318489 -80.626198,32.272621 -80.678185,32.285465 -80.742134,32.360016 -80.799553,32.473118 -80.784958,32.504864 -80.830688,32.516094 -80.867348,32.532509 -80.822037,32.400517 -80.780731,32.247921 -80.893082,32.067963 -81.105042,32.10524 -81.119278,32.117409 -81.114883,32.190392 -81.147858,32.224247 -81.148338,32.257515 -81.124214,32.276447 -81.132057,32.332424 -81.142052,32.348274 -81.157646,32.338547 -81.179291,32.37159 -81.178421,32.386639 -81.200096,32.420128 -81.195328,32.464375 -81.236412,32.520432 -81.268158,32.533749 -81.274475,32.554634 -81.299156,32.567108 -81.340576,32.571182 -81.351662,32.583351 -81.366875,32.581802 -81.36644,32.588188 -81.385078,32.595707 -81.412277,32.625435 -81.399651,32.650642 -81.407364,32.686531 -81.420708,32.701397 -81.407799,32.741638 -81.42321,32.749645 -81.416245,32.756561 -81.430412,32.785988 -81.421005,32.80933 -81.430481,32.820141 -81.424133,32.831608 -81.432503,32.841518 -81.45549,32.844414 -81.45871,32.871239 -81.483376,32.875931 -81.465202,32.897568 -81.477219,32.897411 -81.510406,32.947063 -81.51001,32.955261 -81.49807,32.959518 -81.492905,33.004658 -81.508919,33.012638 -81.52977,33.043774 -81.547829,33.04353 -81.560204,33.060661 -81.595993,33.070637 -81.61113,33.087723 -81.704445,33.122787 -81.74054,33.144547 -81.763573,33.169685 -81.759758,33.195232-80.767975,32.258446 -80.719254,32.272003 -80.666786,32.21991 -80.819435,32.104488 -80.767975,32.258446South Carolina45S AtlSC77987.8234910.6363486703.0928206.01258044.01688510.01798193.01268959.01234700.0277209.018092.01603425.094673.0455692.0337824.00.4840.516506464.0-94.461479,34.196655 -94.452408,34.508327 -94.44574,34.735504 -94.439102,34.92905 -94.428337,35.400455 -94.468269,35.641003 -94.485718,35.760227 -94.542198,36.106754 -94.552895,36.164444 -94.607231,36.478714 -94.617035,36.489338 -94.080849,36.490952 -93.857323,36.489716 -93.59626,36.489891 -93.328163,36.490196 -93.297142,36.490616 -92.852104,36.489819 -92.777466,36.489918 -92.522888,36.490856 -92.146164,36.491596 -92.127487,36.491371 -91.688416,36.490955 -91.45285,36.490376 -91.411659,36.491039 -91.133827,36.487953 -90.804314,36.489204 -90.581619,36.490963 -90.224373,36.492752 -90.150162,36.491814 -90.137276,36.457417 -90.117226,36.453896 -90.123833,36.422565 -90.116829,36.404915 -90.080177,36.397388 -90.052063,36.382553 -90.050201,36.362606 -90.067635,36.325333 -90.049751,36.300472 -90.066093,36.272274 -90.109917,36.257996 -90.131218,36.21207 -90.161308,36.196941 -90.219223,36.172565 -90.232224,36.161148 -90.23484,36.137089 -90.263702,36.118763 -90.284752,36.115906 -90.315239,36.091656 -90.37896,35.989586 -90.283455,35.991158 -89.963203,35.996838 -89.721756,35.999878 -89.713135,35.966324 -89.664192,35.93782 -89.645401,35.913799 -89.649338,35.894287 -89.66465,35.885647 -89.714684,35.911427 -89.737976,35.915012 -89.762909,35.896812 -89.766273,35.884102 -89.757713,35.871418 -89.701439,35.842037 -89.700829,35.827515 -89.735939,35.807037 -89.759796,35.817421 -89.790382,35.805553 -89.799904,35.774223 -89.827042,35.75827 -89.859871,35.748192 -89.909782,35.754837 -89.951035,35.734268 -89.952034,35.712486 -89.929741,35.676266 -89.893402,35.655972 -89.865181,35.673306 -89.857246,35.671062 -89.849197,35.645222 -89.863838,35.629745 -89.877441,35.633335 -89.957047,35.603104 -89.958031,35.578594 -89.921661,35.546059 -89.931175,35.529232 -89.947548,35.526901 -89.962273,35.532291 -89.989586,35.561676 -90.033051,35.552414 -90.040901,35.542847 -90.041817,35.51244 -89.999565,35.445454 -90.046783,35.417103 -90.060295,35.41341 -90.073936,35.426506 -90.074844,35.472343 -90.08223,35.478207 -90.101959,35.473568 -90.137276,35.442524 -90.172676,35.423717 -90.167816,35.384254 -90.140167,35.383045 -90.132469,35.4076 -90.112244,35.41769 -90.085159,35.418282 -90.075478,35.406528 -90.087135,35.381508 -90.105621,35.365982 -90.098701,35.345592 -90.106346,35.314686 -90.15699,35.306244 -90.169746,35.282566 -90.152122,35.264057 -90.105942,35.263847 -90.090103,35.254398 -90.068962,35.212738 -90.073303,35.191833 -90.062431,35.166916 -90.064537,35.147385 -90.082924,35.12505 -90.14373,35.136536 -90.164474,35.129612 -90.178345,35.108646 -90.169083,35.077827 -90.195709,35.040897 -90.291809,35.048458 -90.305351,35.000694 -90.299507,34.978481 -90.248169,34.94976 -90.241898,34.938904 -90.242844,34.920731 -90.266708,34.896511 -90.296272,34.88269 -90.299446,34.86496 -90.301552,34.851776 -90.322823,34.850266 -90.341423,34.860577 -90.403931,34.841038 -90.42231,34.832268 -90.433548,34.835354 -90.427841,34.872643 -90.438087,34.886181 -90.470528,34.880924 -90.474716,34.857727 -90.451904,34.825218 -90.466705,34.799664 -90.448868,34.76075 -90.451431,34.741199 -90.485924,34.726833 -90.504417,34.729855 -90.516968,34.748371 -90.498734,34.765785 -90.501282,34.789833 -90.516045,34.805603 -90.52726,34.807323 -90.547745,34.790337 -90.533279,34.713253 -90.513565,34.702068 -90.469978,34.704254 -90.466225,34.672039 -90.508812,34.638065 -90.538963,34.636894 -90.547546,34.651806 -90.539062,34.685947 -90.561058,34.700287 -90.5793,34.645611 -90.58799,34.627815 -90.577614,34.604744 -90.530617,34.555649 -90.537148,34.543327 -90.565681,34.532509 -90.580345,34.520222 -90.59005,34.496506 -90.574402,34.453945 -90.579124,34.432999 -90.60379,34.404598 -90.657242,34.36591 -90.657814,34.330006 -90.679337,34.317974 -90.689377,34.320145 -90.681137,34.3634 -90.687485,34.377872 -90.75531,34.372166 -90.761856,34.363914 -90.747757,34.317719 -90.758255,34.278976 -90.792526,34.299957 -90.806419,34.299347 -90.823837,34.27734 -90.83136,34.229534 -90.863411,34.219162 -90.928436,34.250195 -90.933708,34.234676 -90.921486,34.20483 -90.822922,34.190544 -90.80751,34.166172 -90.828865,34.148659 -90.846611,34.147545 -90.928917,34.18565 -90.953346,34.155804 -90.942245,34.125942 -90.906311,34.102749 -90.866333,34.100952 -90.886345,34.04071 -90.95047,34.031288 -90.973366,34.010998 -90.975273,33.994606 -90.961128,33.978874 -90.96479,33.967461 -90.986816,33.960815 -91.000259,33.968372 -91.009544,33.990528 -91.031059,33.985699 -91.069695,34.006096 -91.088852,33.994469 -91.075706,33.974644 -91.018463,33.936306 -91.061371,33.867081 -91.054817,33.843525 -91.028854,33.816586 -90.990372,33.798897 -90.984039,33.785339 -90.995377,33.771549 -91.018433,33.763973 -91.043404,33.769554 -91.066391,33.786526 -91.105415,33.77644 -91.136986,33.780087 -91.142891,33.77182 -91.138,33.723225 -91.128944,33.71244 -91.104568,33.708233 -91.056213,33.719357 -91.038826,33.70549 -91.037834,33.683216 -91.083771,33.662586 -91.121048,33.677528 -91.1633,33.718315 -91.211678,33.708965 -91.215141,33.690723 -91.205307,33.669945 -91.154404,33.637032 -91.15065,33.616161 -91.168022,33.577244 -91.187805,33.57468 -91.22673,33.590481 -91.227631,33.556351 -91.213486,33.539276 -91.204102,33.538506 -91.182846,33.52335 -91.180405,33.512012 -91.207642,33.473396 -91.22715,33.459454 -91.232849,33.443443 -91.18177,33.447388 -91.17173,33.466644 -91.174179,33.504368 -91.164978,33.51178 -91.128799,33.493191 -91.118958,33.469673 -91.119713,33.452831 -91.130516,33.443123 -91.19883,33.422112 -91.204163,33.414299 -91.184982,33.39183 -91.137634,33.388878 -91.099129,33.414898 -91.0858,33.462856 -91.073761,33.466206 -91.060982,33.460011 -91.061516,33.431797 -91.07869,33.410179 -91.106941,33.393406 -91.130424,33.359402 -91.141747,33.322384 -91.122505,33.268505 -91.102905,33.24921 -91.076324,33.292358 -91.053833,33.293575 -91.040428,33.281921 -91.054543,33.245781 -91.092003,33.225697 -91.086319,33.161602 -91.095856,33.145084 -91.12133,33.131069 -91.177628,33.150288 -91.195503,33.140465 -91.190536,33.113224 -91.14679,33.090652 -91.11779,33.065571 -91.123985,33.047272 -91.156685,33.040432 -91.160675,33.021709 -91.162132,33.013039 -91.254616,33.013477 -91.427528,33.01342 -91.454353,33.013874 -92.063309,33.010025 -92.717079,33.016701 -92.978828,33.018135 -93.232376,33.019238 -93.478897,33.021393 -93.511742,33.021152 -93.809753,33.022594 -94.03875,33.023289 -94.036507,33.270325 -94.035927,33.555912 -94.061432,33.577213 -94.086655,33.583954 -94.098701,33.572998 -94.155167,33.567085 -94.159515,33.593773 -94.205345,33.585079 -94.210884,33.557987 -94.235367,33.561535 -94.223038,33.58572 -94.237236,33.592422 -94.274544,33.561737 -94.272079,33.584606 -94.278984,33.589333 -94.29882,33.579853 -94.302383,33.556934 -94.328751,33.573135 -94.370758,33.547684 -94.395264,33.560303 -94.372307,33.572662 -94.370628,33.590042 -94.379112,33.593327 -94.393417,33.574959 -94.40657,33.573486 -94.428467,33.597141 -94.443329,33.596504 -94.451553,33.604347 -94.436333,33.616844 -94.435913,33.636444 -94.476486,33.631966 -94.468376,33.939198 -94.461479,34.196655Arkansas05W S CenAR134875.0752867.3022350725.0651555.0891179.01133076.01217649.0849722.0764635.0153025.05096.0994289.072079.0298794.0210650.00.4820.518414226.0-93.707359,30.239372 -93.699211,30.297388 -93.729774,30.304916 -93.759178,30.340872 -93.759338,30.354145 -93.747833,30.367411 -93.754944,30.381788 -93.742561,30.408823 -93.721535,30.43298 -93.696571,30.442633 -93.703423,30.462513 -93.697975,30.470047 -93.714851,30.488628 -93.707275,30.496241 -93.714638,30.505114 -93.70546,30.522858 -93.735306,30.545517 -93.71788,30.568153 -93.717812,30.587379 -93.69342,30.598835 -93.671585,30.597832 -93.692696,30.615795 -93.684586,30.623425 -93.692879,30.640041 -93.677971,30.639692 -93.659988,30.672859 -93.617607,30.686802 -93.612411,30.710329 -93.61779,30.732548 -93.607651,30.73201 -93.618454,30.745789 -93.585175,30.772184 -93.581871,30.80204 -93.550682,30.828344 -93.555641,30.842342 -93.566444,30.845148 -93.552803,30.860283 -93.560844,30.87188 -93.568497,30.886234 -93.564476,30.901932 -93.546516,30.905334 -93.549622,30.924885 -93.529984,30.926971 -93.52562,30.93582 -93.532188,30.960732 -93.537338,30.956884 -93.548676,30.97019 -93.572456,30.976177 -93.560951,30.99169 -93.570847,30.997271 -93.567894,31.012924 -93.564941,31.018063 -93.547119,31.014141 -93.507217,31.038908 -93.525742,31.05698 -93.516998,31.074671 -93.544106,31.082373 -93.543121,31.094751 -93.559982,31.100536 -93.556679,31.109343 -93.535088,31.116072 -93.528091,31.125925 -93.537506,31.132441 -93.544189,31.159166 -93.528328,31.162943 -93.537018,31.17634 -93.526932,31.178076 -93.528923,31.185774 -93.550591,31.190929 -93.576942,31.17214 -93.593941,31.180199 -93.602921,31.199066 -93.590546,31.229687 -93.611,31.242188 -93.611877,31.270033 -93.616455,31.275805 -93.630829,31.273903 -93.645592,31.290262 -93.656128,31.286671 -93.681587,31.312679 -93.67704,31.328386 -93.634857,31.373827 -93.661072,31.372395 -93.664017,31.398329 -93.687492,31.40613 -93.694443,31.415922 -93.696129,31.427736 -93.687004,31.438131 -93.701927,31.446251 -93.698418,31.461458 -93.726784,31.459475 -93.751244,31.4855 -93.750435,31.490557 -93.718994,31.495403 -93.705795,31.520569 -93.731659,31.521877 -93.747543,31.537718 -93.763306,31.530724 -93.780128,31.533735 -93.810516,31.559063 -93.816322,31.57711 -93.832619,31.590183 -93.835579,31.615189 -93.819588,31.618092 -93.814728,31.647966 -93.806427,31.653767 -93.811844,31.674566 -93.792267,31.711395 -93.808769,31.707565 -93.814949,31.712351 -93.80999,31.730352 -93.831161,31.753281 -93.822067,31.774637 -93.834328,31.802017 -93.864822,31.817272 -93.877403,31.850113 -93.881264,31.87142 -93.892525,31.870066 -93.899261,31.894455 -93.923462,31.892593 -93.917923,31.909702 -93.93573,31.909456 -93.969986,31.923164 -93.977211,31.946159 -94.004395,31.977942 -94.009888,31.989134 -94.035065,31.994513 -94.034767,32.199448 -94.035233,32.389225 -94.040199,32.694813 -94.041603,32.882347 -94.03875,33.023289 -93.809753,33.022594 -93.511742,33.021152 -93.478897,33.021393 -93.232376,33.019238 -92.978828,33.018135 -92.717079,33.016701 -92.063309,33.010025 -91.454353,33.013874 -91.427528,33.01342 -91.254616,33.013477 -91.162132,33.013039 -91.161865,33.000294 -91.20916,32.935852 -91.198311,32.914162 -91.169701,32.905022 -91.137177,32.917786 -91.129936,32.937466 -91.132355,32.975224 -91.111816,32.98735 -91.092674,32.987621 -91.075592,32.953712 -91.079529,32.877163 -91.142151,32.841213 -91.156342,32.76268 -91.136467,32.751125 -91.09771,32.749397 -91.059029,32.723518 -91.139557,32.663174 -91.146263,32.644852 -91.110992,32.597527 -91.063812,32.606388 -91.04763,32.614353 -91.027466,32.641502 -91.007881,32.642673 -90.996132,32.625977 -90.998657,32.615467 -91.032326,32.582672 -91.058868,32.576389 -91.073265,32.561611 -91.063087,32.54216 -90.995071,32.511642 -90.99205,32.495281 -91.019684,32.490814 -91.037201,32.496956 -91.088783,32.548637 -91.118744,32.524067 -91.117683,32.498569 -91.05851,32.446999 -91.026909,32.442417 -90.98745,32.452965 -90.965485,32.440037 -90.969986,32.419018 -91.009209,32.397083 -90.998863,32.366234 -90.984566,32.356396 -90.914925,32.345898 -90.885155,32.381355 -90.875351,32.37965 -90.916374,32.305317 -90.929245,32.297405 -90.971657,32.303699 -90.980766,32.297653 -90.983818,32.287132 -90.971016,32.269066 -90.977219,32.223404 -91.041649,32.249439 -91.062462,32.232742 -91.087914,32.232388 -91.100571,32.214886 -91.115952,32.225605 -91.157265,32.205864 -91.166847,32.171989 -91.15654,32.144783 -91.108711,32.134991 -91.083008,32.148579 -91.054047,32.134392 -91.045311,32.158672 -91.054474,32.184532 -91.024414,32.169899 -91.00383,32.169262 -91.011284,32.13406 -91.041084,32.10767 -91.073814,32.093994 -91.06501,32.058552 -91.089302,32.056843 -91.125618,32.088245 -91.145584,32.085674 -91.143013,32.066105 -91.086884,32.043655 -91.073135,32.031994 -91.07238,32.021057 -91.108002,31.991827 -91.163033,31.988291 -91.201431,31.914289 -91.24437,31.878511 -91.26458,31.865425 -91.241272,31.835226 -91.250618,31.818659 -91.276688,31.827372 -91.292534,31.861332 -91.30336,31.862984 -91.334732,31.843317 -91.347122,31.79567 -91.36702,31.770704 -91.336143,31.763458 -91.262573,31.773764 -91.263878,31.7596 -91.282509,31.749723 -91.339798,31.758379 -91.370384,31.753311 -91.36496,31.751577 -91.387833,31.716518 -91.389069,31.65444 -91.408287,31.625364 -91.45726,31.626801 -91.49765,31.65073 -91.50769,31.643705 -91.508759,31.62178 -91.497032,31.604193 -91.415268,31.602427 -91.404137,31.586187 -91.423462,31.56258 -91.464355,31.5427 -91.502838,31.534714 -91.506363,31.52552 -91.507782,31.452915 -91.473175,31.420206 -91.465805,31.4039 -91.480721,31.377611 -91.494591,31.37508 -91.522896,31.391922 -91.53405,31.409069 -91.534683,31.434166 -91.552353,31.43293 -91.567612,31.421236 -91.559258,31.38806 -91.534454,31.38258 -91.544289,31.368704 -91.542671,31.346815 -91.505638,31.323286 -91.502357,31.298687 -91.51696,31.282898 -91.556801,31.270296 -91.634094,31.277519 -91.643562,31.270943 -91.636879,31.240929 -91.600845,31.213755 -91.59137,31.178307 -91.619995,31.127518 -91.564857,31.081959 -91.551964,31.057983 -91.57267,31.032471 -91.627655,31.011782 -91.632179,31.001186 -91.1791,31.000284 -91.056908,31.00024 -90.829613,31.001368 -90.560158,31.001528 -90.542557,31.002151 -90.343567,31.005211 -90.259285,31.007191 -89.833481,31.007002 -89.732643,31.007261 -89.723549,31.001341 -89.726707,30.984432 -89.719749,30.975309 -89.739449,30.965216 -89.748466,30.949663 -89.740402,30.925924 -89.75798,30.920858 -89.745682,30.909922 -89.746727,30.902609 -89.763237,30.900286 -89.765778,30.861898 -89.78495,30.861393 -89.774727,30.830345 -89.796021,30.828918 -89.796494,30.812466 -89.81086,30.811512 -89.824615,30.789537 -89.813278,30.74798 -89.825493,30.74246 -89.823326,30.732866 -89.835541,30.729174 -89.843979,30.712236 -89.83065,30.703592 -89.84127,30.700361 -89.841713,30.679331 -89.83532,30.675694 -89.845375,30.666063 -89.829453,30.670685 -89.819283,30.651056 -89.805466,30.649267 -89.820236,30.624081 -89.790779,30.553753 -89.772728,30.551056 -89.755112,30.51543 -89.732254,30.497646 -89.718994,30.495846 -89.71312,30.481224 -89.695618,30.478054 -89.694534,30.467995 -89.683388,30.462526 -89.6754,30.44516 -89.675308,30.399881 -89.65461,30.378872 -89.646629,30.355097 -89.633392,30.355114 -89.62014,30.343235 -89.61853,30.323566 -89.637024,30.311649 -89.639114,30.295635 -89.625885,30.290161 -89.621605,30.256769 -89.606255,30.247633 -89.609947,30.241224 -89.57383,30.194738 -89.7285,30.180817 -89.759155,30.230898 -89.943466,30.269657 -90.075485,30.368784 -90.23967,30.380756 -90.308945,30.30365 -90.424446,30.185678 -90.395485,30.091879 -90.275902,30.061852 -90.111473,30.041409 -89.990479,30.053463 -89.891159,30.155893 -89.798203,30.105173 -89.740028,30.158731 -89.724869,30.120897 -89.669144,30.163185 -89.649338,30.122229 -89.716782,30.055027 -89.8489,30.010485 -89.820786,29.951088 -89.714958,29.969202 -89.712143,29.897324 -89.627357,29.875475 -89.585808,29.897953 -89.574326,30.008759 -89.435806,30.044205 -89.453575,29.985531 -89.377747,29.951084 -89.431,29.940075 -89.402153,29.845741 -89.421104,29.827894 -89.363991,29.79657 -89.417374,29.782732 -89.482185,29.830744 -89.540443,29.754524 -89.650528,29.766693 -89.592819,29.710655 -89.611778,29.697538 -89.511887,29.664406 -89.479134,29.635962 -89.597893,29.664948 -89.676643,29.702751 -89.695267,29.693869 -89.635201,29.62632 -89.728256,29.645964 -89.748482,29.637165 -89.723145,29.605814 -89.771713,29.610033 -89.544571,29.47147 -89.537018,29.401236 -89.384468,29.397722 -89.337006,29.340675 -89.264725,29.350447 -89.262505,29.29759 -89.193352,29.348831 -89.12989,29.290668 -89.120178,29.211662 -89.033218,29.223192 -89.098228,29.163219 -89.021759,29.146894 -89.057709,29.085052 -89.126495,29.135084 -89.111359,29.08279 -89.153976,29.05699 -89.144348,29.016449 -89.241112,29.120943 -89.257446,29.059235 -89.394844,28.939419 -89.263237,29.147987 -89.319038,29.179964 -89.339684,29.104267 -89.388611,29.100149 -89.393082,29.146038 -89.467018,29.216097 -89.459061,29.255514 -89.493141,29.234772 -89.61953,29.279352 -89.610657,29.331537 -89.794876,29.322317 -89.753639,29.374067 -89.821678,29.420692 -89.817459,29.477407 -89.966667,29.47246 -89.971855,29.503325 -90.006622,29.493719 -90.113007,29.553633 -90.137215,29.533594 -90.151718,29.595093 -90.208069,29.544514 -90.174057,29.495724 -90.036011,29.446938 -90.055252,29.428062 -90.029869,29.373985 -90.05587,29.351208 -90.032928,29.308647 -90.111565,29.321501 -90.077805,29.214346 -90.043037,29.223448 -90.077728,29.176212 -90.227684,29.098444 -90.263878,29.184422 -90.242836,29.254515 -90.27874,29.274933 -90.284019,29.245308 -90.347565,29.312727 -90.396347,29.272121 -90.406746,29.325768 -90.450432,29.352219 -90.476387,29.303717 -90.611008,29.304811 -90.583046,29.260702 -90.621178,29.222738 -90.649963,29.254066 -90.638031,29.162342 -90.683769,29.181692 -90.676704,29.140047 -90.782806,29.126713 -90.772598,29.160397 -90.839287,29.182114 -90.882545,29.137184 -90.920319,29.181684 -90.814201,29.220781 -90.818459,29.256578 -90.897255,29.267443 -90.936432,29.343298 -91.078285,29.3598 -91.102089,29.313915 -91.213631,29.405706 -91.262619,29.489372 -91.432915,29.552368 -91.547752,29.531471 -91.548378,29.641918 -91.643433,29.643753 -91.615654,29.76893 -91.863136,29.72563 -91.881058,29.765747 -91.846512,29.808189 -91.823814,29.786684 -91.827385,29.838835 -91.966965,29.841681 -91.973206,29.805849 -92.137024,29.73053 -92.129974,29.773315 -92.19957,29.762909 -92.059631,29.6068 -92.297241,29.541351 -92.607285,29.588404 -93.233505,29.788773 -93.721832,29.758574 -93.801659,29.725645 -93.899734,29.809765 -93.79129,29.850304 -93.760201,30.005964 -93.712479,30.06052 -93.715858,30.095669 -93.708382,30.11474 -93.696922,30.117929 -93.698639,30.141226 -93.685959,30.141253 -93.683144,30.148232 -93.699661,30.150808 -93.696167,30.175676 -93.704361,30.180861 -93.714844,30.220306 -93.707359,30.239372-92.016243,29.596264 -91.902428,29.650719 -91.76973,29.578402 -91.7015,29.577053 -91.764847,29.534039 -91.757996,29.494297 -91.848969,29.486866 -92.016243,29.596264-91.341209,29.341692 -91.300385,29.316238 -91.226448,29.381182 -91.189171,29.297392 -91.161461,29.323502 -91.17112,29.283457 -91.18792,29.284538 -91.200356,29.307766 -91.194954,29.273453 -91.152489,29.266314 -91.163559,29.245047 -91.13459,29.259705 -91.128204,29.226778 -91.276054,29.253807 -91.341209,29.341692-90.934479,29.258873 -90.970749,29.241875 -90.953529,29.272837 -90.981285,29.276129 -90.980286,29.21973 -90.944885,29.22617 -90.961929,29.185575 -91.003143,29.184093 -90.994469,29.224581 -91.04435,29.211037 -91.033005,29.27541 -91.067589,29.252899 -91.055458,29.190693 -91.122459,29.226864 -91.127411,29.293295 -91.007271,29.297325 -90.998856,29.323582 -90.934479,29.258873Louisiana22W S CenLA112836.00819978.724219973.01089882.01499269.02031386.02188587.01468894.01239339.0247348.049252.01641614.0175303.0480026.0243755.00.4810.519628817.0-80.785889,28.784925 -80.762642,28.736065 -80.832329,28.785917 -80.850929,28.785431 -80.747414,28.39871 -80.49247,27.869877 -80.509583,27.825405 -80.482079,27.845419 -80.401604,27.703278 -80.357605,27.555349 -80.239868,27.264324 -80.190323,27.185358 -80.22422,27.214741 -80.289864,27.241014 -80.327019,27.247938 -80.290649,27.212528 -80.221504,27.202517 -80.148201,27.10874 -80.090599,26.973709 -80.114845,26.973503 -80.051147,26.796858 -80.08493,26.326021 -80.128014,25.977167 -80.193329,25.759655 -80.301682,25.613369 -80.330215,25.489628 -80.3022,25.40081 -80.417038,25.249506 -80.421028,25.19182 -80.552094,25.21192 -80.694038,25.151897 -80.85701,25.18523 -80.976082,25.130098 -81.119217,25.133785 -81.14843,25.164288 -81.183983,25.26848 -81.14077,25.320368 -81.011765,25.214029 -80.951233,25.202137 -80.915482,25.246326 -80.974487,25.322063 -81.143524,25.396433 -81.258575,25.680716 -81.20015,25.710039 -81.256409,25.802723 -81.530937,25.914282 -81.718483,25.923204 -81.705887,25.999798 -81.794907,26.110792 -81.814049,26.284103 -81.849541,26.331835 -81.864403,26.439196 -81.942207,26.467205 -81.968307,26.517027 -81.928963,26.534626 -81.884468,26.642637 -81.774109,26.709919 -81.897293,26.663418 -81.944641,26.550365 -82.02166,26.524324 -82.083847,26.715443 -82.068459,26.766624 -82.051956,26.866367 -82.098061,26.921446 -81.991631,26.962719 -81.979385,27.031345 -81.993042,27.031342 -82.012878,26.976213 -82.153397,26.936726 -82.257645,27.004072 -82.282364,27.024221 -82.257767,26.99757 -82.176682,26.913353 -82.154015,26.789783 -82.290024,26.849543 -82.355614,26.948557 -82.398354,26.998178 -82.368851,26.947599 -82.343811,26.903292 -82.380219,26.946957 -82.507111,27.236664 -82.531311,27.259951 -82.514664,27.210125 -82.570137,27.273954 -82.532921,27.331478 -82.565742,27.38636 -82.686104,27.473528 -82.639069,27.503143 -82.666008,27.493271 -82.681885,27.524115 -82.488449,27.477749 -82.514381,27.511673 -82.427361,27.522543 -82.575752,27.512009 -82.638947,27.536324 -82.569786,27.552399 -82.554443,27.581926 -82.626556,27.55488 -82.540222,27.607794 -82.552681,27.643703 -82.404564,27.791323 -82.399002,27.905918 -82.461182,27.939856 -82.483315,27.821644 -82.51078,27.830929 -82.539177,27.935429 -82.645744,28.028551 -82.650864,28.006866 -82.698517,28.045874 -82.672897,28.010218 -82.700844,27.975056 -82.64492,27.966286 -82.725662,27.940264 -82.564445,27.87816 -82.623833,27.848225 -82.644798,27.715418 -82.678505,27.70528 -82.794014,27.829351 -82.72834,27.717466 -82.74118,27.68556 -82.84446,27.85034 -82.77932,28.172737 -82.673653,28.428232 -82.636253,28.692484 -82.681557,28.808123 -82.636696,28.814018 -82.636795,28.884451 -82.755493,29.00841 -82.802322,29.154886 -83.036903,29.179144 -83.074081,29.265411 -83.142357,29.299412 -83.109146,29.327944 -83.174782,29.343441 -83.234474,29.433702 -83.380173,29.519644 -83.405113,29.669376 -83.550583,29.737101 -83.654312,29.910746 -83.971855,30.077274 -84.074738,30.099741 -84.147964,30.081518 -84.233177,30.107906 -84.354027,30.06942 -84.360519,29.977184 -84.43779,29.991587 -84.433205,29.959339 -84.339043,29.946934 -84.347015,29.90996 -84.464638,29.92942 -84.858124,29.746649 -84.928604,29.777761 -84.988373,29.719709 -85.214844,29.701345 -85.36496,29.682806 -85.409683,29.776556 -85.414131,29.86286 -85.393074,29.875206 -85.402626,29.794155 -85.358124,29.691042 -85.306671,29.701498 -85.300606,29.809587 -85.384872,29.923595 -85.628571,30.092388 -85.568604,30.098091 -85.471436,30.02166 -85.415092,30.031349 -85.432465,30.045551 -85.382774,30.024067 -85.382736,30.036083 -85.395752,30.058365 -85.464394,30.050961 -85.529793,30.131485 -85.7099,30.178572 -85.66613,30.25149 -85.60025,30.250952 -85.56955,30.310806 -85.717201,30.264862 -85.752777,30.29673 -85.850487,30.280159 -85.830009,30.232613 -85.757988,30.228745 -85.726463,30.128639 -85.987076,30.274229 -86.387512,30.387459 -86.505363,30.409773 -86.388161,30.405813 -86.240089,30.399689 -86.241623,30.428329 -86.1147,30.385603 -86.122993,30.426264 -86.219666,30.487658 -86.387932,30.461969 -86.45269,30.50104 -86.610283,30.423452 -86.79039,30.417765 -87.193413,30.355022 -86.932549,30.463367 -87.014435,30.514238 -86.986229,30.590237 -87.019615,30.587273 -87.069305,30.450367 -87.124565,30.564472 -87.171585,30.557541 -87.160133,30.464836 -87.273926,30.357185 -87.424103,30.323471 -87.409279,30.40204 -87.346832,30.431301 -87.34742,30.456972 -87.418839,30.481504 -87.445374,30.531195 -87.422089,30.556299 -87.393303,30.619905 -87.398666,30.667824 -87.418915,30.692619 -87.460159,30.705612 -87.526619,30.748302 -87.541916,30.785507 -87.615929,30.84811 -87.625725,30.876717 -87.589882,30.954178 -87.598595,31.002449 -87.163147,31.002975 -86.779404,30.998011 -86.701897,30.997911 -86.383972,30.991358 -86.181534,30.995045 -86.031883,30.993147 -85.486664,31.000816 -85.485077,31.00082 -85.001678,31.001068 -85.000214,30.979134 -84.97364,30.963478 -84.969086,30.926907 -84.937851,30.89477 -84.927002,30.846733 -84.93264,30.802435 -84.926971,30.775898 -84.915421,30.753899 -84.888367,30.743698 -84.864662,30.714312 -84.863083,30.712473 -84.374542,30.693897 -84.281761,30.690224 -84.075668,30.678381 -84.000839,30.675341 -83.737961,30.660292 -83.609177,30.650583 -83.31073,30.634096 -83.301445,30.633078 -83.132576,30.62113 -82.696503,30.595503 -82.583107,30.588835 -82.463287,30.582468 -82.412247,30.577084 -82.221199,30.566845 -82.238556,30.531214 -82.219528,30.502739 -82.199348,30.489782 -82.205727,30.42362 -82.180397,30.368397 -82.164803,30.361057 -82.052933,30.363558 -82.038521,30.378668 -82.046265,30.433832 -82.035286,30.442642 -82.022675,30.477482 -82.005966,30.570755 -82.013817,30.598455 -82.045074,30.650677 -82.032043,30.757299 -82.01313,30.764023 -82.015701,30.791086 -81.981644,30.778118 -81.961716,30.795774 -81.953194,30.820198 -81.94397,30.824017 -81.907684,30.813242 -81.899307,30.828075 -81.873169,30.798851 -81.803368,30.787851 -81.776878,30.761351 -81.757881,30.769398 -81.736847,30.763655 -81.716942,30.745134 -81.642654,30.728846 -81.628159,30.731539 -81.60495,30.716085 -81.601349,30.724651 -81.536774,30.706341 -81.528778,30.721216 -81.49897,30.598368 -81.518303,30.555975 -81.457718,30.454525 -81.480988,30.380301 -81.443451,30.356947 -81.432961,30.24654 -81.302963,29.912806 -81.316696,29.828993 -81.243996,29.737694 -81.233978,29.668774 -81.1101,29.429985 -81.097275,29.351543 -80.785889,28.784925-86.833923,30.399536 -86.791595,30.40377 -86.620872,30.414352 -86.534805,30.406591 -86.52282,30.400948 -86.532692,30.393188 -86.738686,30.402359 -86.793007,30.390366 -86.834625,30.386839 -87.242378,30.321232 -87.267075,30.321232 -87.290352,30.33252 -87.286118,30.339573 -87.202171,30.334635 -87.139381,30.351566 -87.047676,30.369202 -86.929161,30.381195 -86.833923,30.399536-80.736061,28.788576 -80.763557,28.8218 -80.817406,28.895124 -80.891304,29.01313 -80.916512,29.07156 -80.899323,29.061249 -80.862663,28.991362 -80.736061,28.788576-80.726128,28.784098 -80.579918,28.58988 -80.526176,28.463184 -80.587883,28.408979 -80.621857,28.412378 -80.577675,28.548378 -80.599358,28.603649 -80.660271,28.618378 -80.692108,28.588076 -80.78067,28.618687 -80.786156,28.687445 -80.735222,28.706347 -80.754295,28.736614 -80.641426,28.657074 -80.726128,28.784098-80.68885,28.58149 -80.654022,28.600616 -80.609421,28.573292 -80.662956,28.42713 -80.667336,28.301556 -80.605797,28.144653 -80.721268,28.385118 -80.68885,28.58149-82.102127,26.585724 -82.067139,26.497208 -82.097641,26.493586 -82.135895,26.642279 -82.183495,26.683083 -82.128838,26.693342 -82.102127,26.585724-80.24968,25.354546 -80.355888,25.157833 -80.588036,24.955967 -80.353287,25.211134 -80.330521,25.267586 -80.361824,25.296104 -80.24968,25.354546Florida12S AtlFL139852.12330456.7971.2937926E73511825.05134869.06261719.06676207.04943568.04468021.0818546.0116352.05810467.0356769.01683987.0675050.00.4840.5161603894.0-88.497459,48.173923 -88.625252,48.033287 -88.901466,47.960361 -89.028534,47.850761 -89.139793,47.824181 -89.192825,47.844719 -89.201698,47.883965 -89.156013,47.939339 -88.497459,48.173923-88.500565,47.290257 -88.43779,47.355976 -88.211288,47.447922 -87.78801,47.47089 -87.704269,47.416046 -87.737396,47.39312 -87.916931,47.358097 -88.222168,47.200829 -88.41272,46.988167 -88.470543,47.111546 -88.594139,47.134838 -88.595512,47.243668 -88.500565,47.290257-85.859734,45.969486 -85.914841,45.957996 -85.916992,45.918209 -86.067764,45.964233 -86.259178,45.946957 -86.315498,45.905708 -86.343658,45.834419 -86.458138,45.762768 -86.529251,45.748981 -86.521873,45.724113 -86.575989,45.710194 -86.629654,45.62125 -86.684921,45.650066 -86.696785,45.692532 -86.584595,45.813904 -86.76133,45.826096 -86.901489,45.714806 -87.123627,45.696278 -87.260582,45.554829 -87.332108,45.423965 -87.583755,45.16275 -87.592407,45.108517 -87.672707,45.14069 -87.729561,45.176624 -87.736092,45.199093 -87.721519,45.211693 -87.719559,45.236794 -87.705032,45.247108 -87.704361,45.272228 -87.645248,45.348194 -87.64357,45.361881 -87.689484,45.391296 -87.759926,45.352924 -87.827896,45.358349 -87.841171,45.346176 -87.861984,45.370193 -87.868423,45.372101 -87.873863,45.362114 -87.883499,45.365883 -87.849419,45.406147 -87.860153,45.445129 -87.813499,45.466492 -87.789268,45.4991 -87.805023,45.544559 -87.828484,45.568626 -87.786194,45.568554 -87.774956,45.600422 -87.775925,45.613235 -87.819817,45.654488 -87.816933,45.665428 -87.780823,45.675953 -87.777351,45.684139 -87.801033,45.701363 -87.80143,45.71143 -87.842239,45.722458 -87.873505,45.75074 -87.969055,45.766491 -87.989944,45.79509 -88.051514,45.786156 -88.088608,45.791576 -88.129822,45.819447 -88.121658,45.834923 -88.065292,45.873688 -88.095634,45.89185 -88.093719,45.920662 -88.111259,45.926334 -88.150307,45.93634 -88.180061,45.953564 -88.214859,45.947948 -88.257034,45.967102 -88.299019,45.96199 -88.32119,45.966759 -88.369804,45.994633 -88.403389,45.983467 -88.454185,46.000805 -88.483681,45.999195 -88.49395,46.013004 -88.51548,46.018654 -88.548225,46.019344 -88.575226,46.009003 -88.597404,46.01556 -88.615372,45.994164 -88.643539,45.993431 -88.677254,46.020187 -88.703476,46.018967 -88.72628,46.029625 -88.772888,46.021191 -88.777351,46.032658 -88.793686,46.036404 -88.804268,46.026848 -88.925064,46.073647 -88.985168,46.100437 -89.09967,46.145691 -89.924973,46.304077 -90.111488,46.340481 -90.115005,46.365208 -90.141624,46.393951 -90.161217,46.442432 -90.211349,46.506348 -90.258224,46.508842 -90.269608,46.522533 -90.300003,46.525105 -90.302216,46.54435 -90.31353,46.551617 -90.385345,46.539711 -90.40802,46.568665 -90.018692,46.678688 -89.886086,46.76899 -89.791084,46.824768 -89.386574,46.850266 -89.214455,46.923439 -89.125053,46.99667 -88.994743,46.997169 -88.929558,47.030994 -88.884705,47.104626 -88.629379,47.225887 -88.617981,47.131187 -88.511093,47.106579 -88.512871,47.032661 -88.44104,46.990807 -88.445839,46.928375 -88.476395,46.855221 -88.446487,46.799465 -88.177704,46.945965 -88.189064,46.901031 -88.03656,46.911942 -87.900528,46.90984 -87.663635,46.836929 -87.371399,46.508057 -87.110535,46.501537 -87.006256,46.536358 -86.871231,46.44442 -86.759338,46.486694 -86.638062,46.422318 -86.462227,46.561134 -86.147942,46.673084 -86.096573,46.655296 -85.857376,46.694828 -85.503716,46.674168 -85.22998,46.756763 -84.954681,46.770927 -85.026886,46.694317 -85.01889,46.549004 -85.051567,46.505558 -85.016556,46.476425 -84.931244,46.487823 -84.803589,46.444035 -84.629761,46.482922 -84.572617,46.407906 -84.415924,46.480637 -84.311577,46.488647 -84.181618,46.248703 -84.273102,46.207291 -84.247002,46.171429 -84.119713,46.17609 -84.029564,46.128925 -84.061966,46.094452 -83.989494,46.025967 -83.901947,46.005882 -83.906456,45.96022 -84.113258,45.978519 -84.354454,45.999172 -84.501595,45.978329 -84.616798,46.038216 -84.688972,46.035904 -84.731682,45.855667 -84.851044,45.890625 -85.061562,46.024742 -85.378151,46.100048 -85.509445,46.101917 -85.655281,45.972881 -85.859734,45.969486-83.854675,46.014011 -83.801102,45.988392 -83.756416,46.027317 -83.673592,46.036171 -83.680313,46.071774 -83.732445,46.084087 -83.649887,46.103951 -83.5895,46.088497 -83.533997,46.011768 -83.473198,45.987526 -83.516167,45.925694 -83.579819,45.91748 -83.629707,45.953575 -83.804878,45.936745 -83.852806,45.997429 -83.885887,45.970833 -83.854675,46.014011-86.834801,41.765465 -86.617569,41.907406 -86.49881,42.126408 -86.374252,42.249386 -86.28495,42.422295 -86.217812,42.774803 -86.273781,43.121029 -86.463127,43.475159 -86.541222,43.663181 -86.447731,43.772659 -86.404266,43.766636 -86.434021,43.781452 -86.428734,43.820118 -86.459465,43.95018 -86.438065,43.945587 -86.518517,44.053616 -86.386337,44.183201 -86.271866,44.351227 -86.237946,44.522274 -86.25853,44.700733 -86.108391,44.734444 -86.082825,44.777931 -86.09787,44.850616 -86.06736,44.898262 -85.79567,44.985977 -85.61013,45.196529 -85.56543,45.180561 -85.652924,44.958363 -85.637962,44.778435 -85.526009,44.763161 -85.451279,44.860538 -85.384796,45.010601 -85.390167,45.21159 -85.373177,45.273537 -85.305405,45.320377 -85.092804,45.370216 -84.98584,45.373169 -84.921623,45.409889 -85.081757,45.464642 -85.120384,45.569771 -85.077957,45.630177 -84.983353,45.683704 -84.971977,45.737736 -84.724136,45.780293 -84.46524,45.653625 -84.321434,45.665596 -84.205544,45.630894 -84.135216,45.571331 -84.105896,45.498737 -83.92289,45.49176 -83.782814,45.409435 -83.712326,45.41238 -83.592377,45.349487 -83.49585,45.360786 -83.489616,45.328922 -83.394043,45.272892 -83.420784,45.257168 -83.39872,45.213627 -83.312737,45.098606 -83.444466,45.052761 -83.433998,45.011116 -83.464928,44.997871 -83.429382,44.926285 -83.319756,44.860634 -83.280846,44.703171 -83.320068,44.515446 -83.356995,44.335117 -83.529175,44.261257 -83.56826,44.170101 -83.598427,44.070477 -83.704819,43.997147 -83.873627,43.962822 -83.918388,43.916977 -83.938141,43.698261 -83.699196,43.599621 -83.654648,43.607399 -83.530945,43.725925 -83.494286,43.702824 -83.466446,43.745724 -83.367203,43.844437 -83.326065,43.940445 -82.940208,44.069946 -82.806038,44.033554 -82.727966,43.972496 -82.618561,43.787849 -82.605812,43.69455 -82.503899,43.172226 -82.419922,42.972435 -82.472038,42.898651 -82.473328,42.762863 -82.518272,42.634018 -82.645966,42.631695 -82.634102,42.66935 -82.729889,42.681194 -82.820488,42.635761 -82.802444,42.612892 -82.888222,42.49572 -82.874992,42.458031 -82.929474,42.363003 -83.107666,42.292667 -83.193947,42.115707 -83.19014,42.033936 -83.482758,41.725082 -83.764015,41.716991 -83.868698,41.715942 -84.359261,41.707989 -84.384445,41.7071 -84.790421,41.697445 -84.788521,41.76091 -84.82605,41.761826 -85.193169,41.762817 -85.297234,41.763531 -85.65947,41.762577 -85.799232,41.763485 -86.068298,41.76458 -86.234558,41.764816 -86.525162,41.765495 -86.834801,41.765465Michigan26E N CenMI147135.82112547.9129295297.02439171.03419331.04512781.04782516.03388716.03327685.0429086.066653.04166196.0374341.01138730.0717162.00.4850.5151735861.0-111.474632,44.70224 -111.480011,44.691494 -111.4599,44.670101 -111.457474,44.652634 -111.469376,44.640789 -111.506897,44.637768 -111.500954,44.616051 -111.513733,44.593277 -111.492111,44.55127 -111.462036,44.550022 -111.458534,44.538002 -111.481781,44.536224 -111.489449,44.528778 -111.566437,44.552948 -111.604454,44.543072 -111.684067,44.550835 -111.716202,44.533844 -111.766121,44.518909 -111.791809,44.518547 -111.807037,44.504066 -111.871696,44.556351 -111.939575,44.549812 -111.977005,44.529762 -112.022797,44.53513 -112.02626,44.52293 -112.058548,44.528698 -112.099075,44.518318 -112.123367,44.528339 -112.19883,44.531536 -112.216934,44.538582 -112.229568,44.559578 -112.255844,44.560059 -112.281509,44.54179 -112.341675,44.525188 -112.339745,44.497269 -112.366753,44.44936 -112.419922,44.449375 -112.457687,44.468925 -112.501007,44.463089 -112.53849,44.477589 -112.652351,44.480892 -112.713486,44.497025 -112.732872,44.484409 -112.779022,44.47401 -112.795387,44.458099 -112.825851,44.421173 -112.817871,44.394909 -112.816559,44.364292 -112.843437,44.353729 -112.869942,44.370068 -112.886467,44.392941 -112.937439,44.40728 -112.984406,44.435627 -113.011169,44.437801 -113.005814,44.452702 -113.019463,44.481861 -113.006866,44.510696 -113.036972,44.533043 -113.038811,44.556377 -113.082184,44.582764 -113.053436,44.624371 -113.072289,44.675606 -113.098099,44.695995 -113.100845,44.715252 -113.126572,44.737457 -113.137413,44.761517 -113.239471,44.811916 -113.256287,44.810562 -113.31781,44.780304 -113.33976,44.779076 -113.349152,44.807644 -113.420502,44.833775 -113.444695,44.851315 -113.495308,44.930744 -113.486465,44.939648 -113.462532,44.940849 -113.447884,44.949596 -113.440147,44.998268 -113.45797,45.027523 -113.454552,45.043423 -113.48542,45.058395 -113.489273,45.071293 -113.519722,45.082138 -113.509338,45.10791 -113.551384,45.107624 -113.573486,45.117786 -113.570694,45.134621 -113.593208,45.149818 -113.600037,45.181068 -113.644699,45.206867 -113.689224,45.26236 -113.687813,45.277866 -113.738182,45.321609 -113.74041,45.382465 -113.774124,45.410252 -113.78476,45.445713 -113.768265,45.477787 -113.7714,45.507133 -113.780029,45.516945 -113.832809,45.514988 -113.802849,45.583809 -113.821579,45.600716 -113.85112,45.609642 -113.902397,45.613571 -113.901291,45.637333 -113.922623,45.655205 -113.925789,45.671291 -113.963234,45.679459 -113.970238,45.697456 -114.00856,45.686413 -114.018967,45.672459 -114.010078,45.652592 -114.01712,45.640854 -114.055603,45.625225 -114.082054,45.58646 -114.117226,45.571209 -114.131134,45.550465 -114.171753,45.544006 -114.193893,45.528 -114.241081,45.535374 -114.246964,45.503029 -114.261322,45.485943 -114.325516,45.457508 -114.349327,45.463467 -114.370537,45.485825 -114.418129,45.499092 -114.432632,45.527718 -114.461784,45.547932 -114.495667,45.546734 -114.526466,45.558277 -114.559998,45.548824 -114.540031,45.596481 -114.563751,45.624355 -114.500816,45.652477 -114.509781,45.674141 -114.496635,45.694485 -114.53405,45.72308 -114.541031,45.746082 -114.562614,45.762482 -114.516449,45.81015 -114.498238,45.842766 -114.472878,45.83955 -114.442307,45.852703 -114.406601,45.846535 -114.391914,45.870968 -114.412605,45.910732 -114.428535,45.921558 -114.404366,45.95406 -114.411522,45.972054 -114.483528,45.989887 -114.473602,46.009846 -114.493393,46.023491 -114.464828,46.050896 -114.455101,46.08231 -114.47644,46.107437 -114.505638,46.116222 -114.518013,46.136143 -114.508682,46.157497 -114.466087,46.155342 -114.439949,46.169048 -114.438622,46.220333 -114.471901,46.243862 -114.472862,46.25304 -114.430862,46.28479 -114.408859,46.39299 -114.39608,46.399624 -114.383087,46.428257 -114.409775,46.48745 -114.359528,46.506203 -114.349174,46.517467 -114.342377,46.587959 -114.323769,46.622917 -114.33374,46.654305 -114.383072,46.661674 -114.44059,46.645794 -114.483772,46.623653 -114.539444,46.63797 -114.609879,46.629128 -114.643791,46.660904 -114.644089,46.671001 -114.624977,46.687187 -114.672935,46.734802 -114.697479,46.733841 -114.747154,46.695213 -114.781967,46.703121 -114.776878,46.755798 -114.793076,46.766613 -114.839836,46.77562 -114.865646,46.797127 -114.901367,46.799515 -114.947449,46.852528 -114.939606,46.890968 -114.923164,46.907246 -114.963768,46.925293 -115.00061,46.958889 -115.036369,46.963081 -115.054672,46.973438 -115.080368,47.026604 -115.134537,47.063629 -115.147713,47.09182 -115.171524,47.097649 -115.192101,47.124104 -115.295258,47.179626 -115.324249,47.245224 -115.342682,47.255096 -115.407227,47.263668 -115.425659,47.274448 -115.500946,47.281719 -115.522079,47.292057 -115.554535,47.334686 -115.598549,47.370075 -115.637794,47.380116 -115.665489,47.399239 -115.749336,47.422546 -115.749115,47.434036 -115.731491,47.445374 -115.655098,47.449249 -115.642197,47.457863 -115.639153,47.475304 -115.69178,47.489609 -115.700531,47.520962 -115.741837,47.53376 -115.691093,47.59079 -115.697289,47.61615 -115.73307,47.63995 -115.732666,47.695625 -115.774727,47.709805 -115.789536,47.744911 -115.835739,47.756355 -115.84832,47.805256 -115.868805,47.827526 -115.902916,47.841148 -115.936836,47.867199 -115.997925,47.925217 -116.024307,47.965015 -116.052483,47.976269 -116.054497,48.208549 -116.055679,48.498726 -116.0625,48.999996 -114.728333,49 -114.0625,49 -112.1875,48.999996 -111.281876,49 -110.75,49 -109.5,48.999996 -108.25,48.999996 -107.1875,48.999996 -106.125,48.999996 -105.0625,48.999996 -104.0625,49 -104.051826,48.645798 -104.05162,48.390995 -104.047935,48.000061 -104.046822,47.400002 -104.045441,47.333817 -104.046951,46.642937 -104.046219,46.54253 -104.047348,46.280876 -104.048416,45.942993 -104.049026,45.883053 -104.043358,45.212887 -104.04258,44.997818 -104.059349,44.997349 -105.04126,45.001091 -105.084465,44.999832 -106.020576,44.997227 -106.258644,44.996174 -107.893715,44.999813 -108.258568,45.00016 -108.624573,44.997643 -109.798653,44.99958 -109.994789,45.002853 -110.392006,44.998688 -110.428894,44.992348 -111.05265,44.995766 -111.050842,44.664562 -111.050789,44.473396 -111.093857,44.486198 -111.128143,44.500832 -111.133583,44.527977 -111.169464,44.545261 -111.177986,44.564926 -111.218727,44.573246 -111.233452,44.602638 -111.219017,44.618057 -111.22319,44.626984 -111.269882,44.642288 -111.269424,44.673878 -111.294884,44.683014 -111.31469,44.705269 -111.318436,44.72794 -111.34919,44.726254 -111.371521,44.745163 -111.384171,44.73777 -111.394295,44.708946 -111.442841,44.713257 -111.474632,44.70224Montana30MtnMT376990.8943858.589799065.0211666.0306163.0395769.0403296.0293243.0250373.041442.02050.0350723.026217.0123090.043619.00.4950.505150091.0-69.777786,44.074074 -69.860435,43.999924 -69.792038,43.756001 -69.830902,43.727901 -69.852295,43.744244 -69.846664,43.842262 -69.887299,43.876633 -69.903641,43.790649 -69.973412,43.768764 -70.000008,43.786125 -69.987877,43.845657 -70.026909,43.84552 -70.157135,43.78973 -70.236305,43.685715 -70.222748,43.577156 -70.342117,43.534824 -70.366432,43.430218 -70.457481,43.349384 -70.539444,43.335632 -70.666176,43.090961 -70.819168,43.121784 -70.831047,43.159088 -70.813705,43.235138 -70.901581,43.280937 -70.906296,43.301987 -70.970192,43.366299 -70.979591,43.396103 -70.961975,43.438046 -70.971283,43.470131 -70.95977,43.516308 -70.96476,43.53191 -70.950111,43.548874 -70.957016,43.564064 -70.974365,43.571751 -70.984932,43.791088 -71.009079,44.282082 -71.029205,44.668484 -71.08799,45.301422 -70.959862,45.338818 -70.87693,45.225395 -70.843361,45.278088 -70.813148,45.35463 -70.829613,45.390678 -70.797447,45.425125 -70.635414,45.391918 -70.72039,45.512909 -70.55275,45.660618 -70.396866,45.722 -70.416695,45.790264 -70.254448,45.898964 -70.247948,45.94458 -70.310776,45.968742 -70.280502,46.053116 -70.305328,46.06662 -70.229805,46.137398 -70.283974,46.190212 -70.191536,46.334805 -70.047089,46.426083 -70.014626,46.570564 -69.985458,46.69133 -69.230789,47.453297 -69.047478,47.421993 -69.037231,47.257328 -68.895386,47.18222 -68.515182,47.296925 -68.391769,47.285057 -68.335327,47.357334 -68.231323,47.352108 -67.79155,47.060959 -67.78083,45.947006 -67.756157,45.916523 -67.795113,45.878418 -67.759911,45.82774 -67.803596,45.794449 -67.803978,45.678051 -67.753502,45.659225 -67.718582,45.681236 -67.615692,45.605133 -67.439857,45.592495 -67.416641,45.503487 -67.504662,45.485748 -67.419113,45.375782 -67.478508,45.280209 -67.439995,45.18951 -67.346169,45.122177 -67.274658,45.182709 -67.166473,45.156189 -67.15123,45.121914 -67.065933,44.959217 -67.147278,44.904503 -66.969849,44.828575 -67.008293,44.780544 -67.200935,44.653702 -67.309036,44.653442 -67.389076,44.691322 -67.571556,44.598255 -67.6194,44.540161 -67.811775,44.553932 -67.859116,44.535999 -67.900597,44.45232 -67.968895,44.471149 -67.963989,44.505249 -67.987076,44.484734 -68.016945,44.384876 -68.074928,44.381294 -68.13681,44.475159 -68.246155,44.49057 -68.364304,44.431309 -68.429108,44.465229 -68.552719,44.398972 -68.530609,44.289757 -68.559959,44.259808 -68.740837,44.346252 -68.813377,44.327354 -68.814293,44.413914 -68.741875,44.50721 -68.745804,44.552246 -68.824074,44.608833 -68.824333,44.664017 -68.86113,44.610897 -68.808426,44.56958 -68.812202,44.494518 -68.959702,44.430256 -68.98555,44.271034 -69.022003,44.244015 -69.074974,44.068985 -69.21965,43.946705 -69.294159,43.942108 -69.346962,44.015888 -69.394997,44.025047 -69.483742,43.887077 -69.589836,43.84478 -69.664963,43.852142 -69.655754,43.980171 -69.613441,44.033535 -69.721146,43.937901 -69.749039,43.893295 -69.725182,43.784393 -69.75087,43.76162 -69.778183,43.791187 -69.800522,44.026791 -69.767265,44.047657 -69.777786,44.074074-68.388458,44.377174 -68.350792,44.398872 -68.355988,44.42878 -68.23925,44.437485 -68.165314,44.334415 -68.305244,44.289951 -68.321251,44.224998 -68.403427,44.270721 -68.388458,44.377174Maine23N EngME79939.20710236.7791227928.0328685.0465312.0597850.0630078.0456299.0424101.079763.05084.0571842.040722.0172830.094926.00.4870.513274322.0-98.730057,45.938297 -99.006447,45.939583 -99.716949,45.94278 -99.875389,45.943562 -100.514,45.940392 -102.00235,45.942505 -102.945953,45.941662 -102.994377,45.941113 -104.048416,45.942993 -104.047348,46.280876 -104.046219,46.54253 -104.046951,46.642937 -104.045441,47.333817 -104.046822,47.400002 -104.047935,48.000061 -104.05162,48.390995 -104.051826,48.645798 -104.0625,49 -102.9375,48.999996 -102.02182,49 -101.5,49 -100.1875,48.999996 -99.53315,49 -99,49 -97.9375,48.999996 -97.229095,49 -97.216026,48.931843 -97.175385,48.873772 -97.17086,48.835995 -97.180077,48.815552 -97.164368,48.810383 -97.173599,48.801529 -97.147171,48.781185 -97.138901,48.763557 -97.147552,48.755669 -97.132156,48.747234 -97.13446,48.726254 -97.109756,48.708599 -97.116394,48.695259 -97.096825,48.674545 -97.107285,48.629963 -97.127098,48.62981 -97.122612,48.620785 -97.144371,48.61404 -97.140465,48.586922 -97.157845,48.583656 -97.151779,48.572872 -97.167595,48.562279 -97.146271,48.549553 -97.160088,48.545094 -97.15519,48.538414 -97.139038,48.534664 -97.14798,48.517967 -97.134247,48.51733 -97.143265,48.438126 -97.119286,48.437119 -97.122253,48.416126 -97.151299,48.419628 -97.149475,48.410007 -97.128777,48.407902 -97.15847,48.388222 -97.134857,48.384426 -97.133438,48.372471 -97.150047,48.363232 -97.130775,48.361507 -97.136787,48.326008 -97.112244,48.319942 -97.132286,48.310986 -97.114403,48.303635 -97.113373,48.294899 -97.130165,48.293056 -97.112335,48.286163 -97.111366,48.277893 -97.136307,48.2645 -97.123436,48.25919 -97.127205,48.23354 -97.108887,48.228065 -97.139404,48.221771 -97.11055,48.207623 -97.130478,48.203758 -97.136925,48.19508 -97.135941,48.175243 -97.137093,48.167786 -97.115715,48.159241 -97.136162,48.148415 -97.120567,48.142792 -97.121521,48.116386 -97.098679,48.10099 -97.092369,48.070362 -97.066719,48.048183 -97.047699,47.954945 -97.014977,47.917912 -97.02021,47.875591 -96.999985,47.87022 -96.976875,47.828053 -96.983536,47.809685 -96.957474,47.794464 -96.931656,47.763531 -96.923302,47.714119 -96.889069,47.67395 -96.872978,47.61528 -96.85186,47.601177 -96.858307,47.563004 -96.848831,47.544594 -96.860329,47.521381 -96.851257,47.500645 -96.866325,47.461563 -96.855469,47.436779 -96.86689,47.413113 -96.849648,47.408962 -96.83947,47.384144 -96.850273,47.360981 -96.838104,47.34227 -96.84639,47.314629 -96.837357,47.293911 -96.849266,47.25687 -96.836708,47.240486 -96.826134,47.170094 -96.838806,47.151917 -96.818794,47.092636 -96.826607,47.078865 -96.82225,47.033966 -96.834938,47.010265 -96.824173,47.003471 -96.816414,46.969814 -96.793068,46.969677 -96.801529,46.955879 -96.789352,46.948238 -96.787567,46.93222 -96.762711,46.936298 -96.756554,46.922817 -96.777702,46.867386 -96.767891,46.844898 -96.796837,46.812069 -96.780022,46.762348 -96.781197,46.707081 -96.793335,46.678841 -96.789886,46.62981 -96.783958,46.624149 -96.770683,46.600021 -96.75087,46.588657 -96.73996,46.489471 -96.714539,46.468758 -96.709328,46.427208 -96.687874,46.412258 -96.651749,46.359474 -96.61451,46.350853 -96.601723,46.336365 -96.597832,46.238724 -96.586105,46.215454 -96.58754,46.191959 -96.570816,46.177216 -96.551582,46.09557 -96.575867,46.02132 -96.561455,45.947723 -96.566574,45.934151 -97.232941,45.936543 -97.97834,45.930859 -98.014328,45.931534 -98.730057,45.938297North Dakota38W N CenND178695.2134427.798638800.0166270.0240878.0318201.0320599.0237047.0209546.031332.01638.0287558.016083.0104938.033936.00.4980.502155209.0-102.787933,42.995323 -103.005409,42.999374 -103.500984,42.99865 -104.05571,43.003094 -104.05867,43.47916 -104.057426,43.503738 -104.05899,43.852928 -104.059242,44.145844 -104.060547,44.181843 -104.058975,44.574368 -104.059349,44.997349 -104.04258,44.997818 -104.043358,45.212887 -104.049026,45.883053 -104.048416,45.942993 -102.994377,45.941113 -102.945953,45.941662 -102.00235,45.942505 -100.514,45.940392 -99.875389,45.943562 -99.716949,45.94278 -99.006447,45.939583 -98.730057,45.938297 -98.014328,45.931534 -97.97834,45.930859 -97.232941,45.936543 -96.566574,45.934151 -96.587608,45.817894 -96.604263,45.808304 -96.657043,45.73901 -96.832443,45.650726 -96.854637,45.609161 -96.842735,45.584129 -96.768898,45.517517 -96.737686,45.458233 -96.692825,45.410675 -96.604744,45.396561 -96.532211,45.375168 -96.477257,45.328545 -96.457268,45.298885 -96.454163,45.27523 -96.45575,44.972031 -96.454887,44.801384 -96.45639,44.628845 -96.454781,44.53838 -96.457077,44.199093 -96.456284,43.84877 -96.460136,43.499744 -96.597992,43.499874 -96.583473,43.481945 -96.588791,43.435562 -96.557388,43.400749 -96.524734,43.384247 -96.522575,43.356987 -96.540245,43.307678 -96.578812,43.290092 -96.570404,43.26363 -96.55925,43.253281 -96.566673,43.239651 -96.558289,43.225506 -96.486931,43.217926 -96.472801,43.209099 -96.451195,43.126324 -96.460495,43.087887 -96.461784,43.075596 -96.479263,43.061897 -96.519699,43.051521 -96.498711,43.012062 -96.516838,42.986469 -96.514626,42.952393 -96.543953,42.913876 -96.537201,42.896915 -96.555901,42.846668 -96.572815,42.834354 -96.587334,42.835388 -96.600563,42.799564 -96.632668,42.77684 -96.640396,42.748608 -96.626228,42.708359 -96.562729,42.668518 -96.540855,42.662411 -96.512535,42.629761 -96.48819,42.580486 -96.500633,42.573891 -96.489029,42.564034 -96.479935,42.517136 -96.439087,42.489246 -96.494392,42.488464 -96.546906,42.520504 -96.584442,42.518291 -96.605156,42.50724 -96.628983,42.522697 -96.63636,42.550735 -96.713745,42.612305 -96.714958,42.62191 -96.694283,42.641167 -96.698746,42.657719 -96.722343,42.668594 -96.799026,42.670021 -96.81012,42.681343 -96.809822,42.704086 -96.907913,42.731701 -96.970451,42.721149 -96.977547,42.72731 -96.969681,42.752068 -96.979271,42.758316 -97.014816,42.759544 -97.130142,42.773926 -97.161095,42.798622 -97.211502,42.812576 -97.224113,42.841206 -97.242859,42.85183 -97.271126,42.850018 -97.311081,42.861774 -97.388969,42.867435 -97.456924,42.850445 -97.482819,42.857159 -97.505791,42.860138 -97.570312,42.847992 -97.634628,42.861286 -97.68541,42.836838 -97.724907,42.858009 -97.771843,42.846165 -97.796684,42.849598 -97.818298,42.866589 -97.888313,42.855808 -97.889595,42.831272 -97.929131,42.792324 -97.963211,42.773689 -97.994797,42.766811 -98.032791,42.769192 -98.121468,42.808361 -98.122765,42.820225 -98.144516,42.835796 -98.167473,42.839573 -98.309982,42.881798 -98.390846,42.920139 -98.457085,42.937164 -98.497292,42.991783 -99.253593,42.99239 -99.532402,42.992332 -100.197739,42.991089 -101.231308,42.986835 -102.086273,42.989891 -102.787933,42.995323South Dakota46W N CenSD196575.213169.429696004.0180306.0259034.0342498.0353506.0250825.0233478.032610.0971.0321891.013983.0119594.041921.00.4920.508162746.0-104.053108,41.698246 -104.054993,41.564247 -104.053505,41.388107 -104.051201,41.003227 -104.933968,40.994305 -105.278259,40.996365 -106.202896,41.000111 -106.328545,41.001316 -106.864838,40.998489 -107.303436,41.000168 -107.918037,41.00341 -109.047638,40.998474 -110.001457,40.997646 -110.062477,40.99794 -111.050285,40.996635 -111.050911,41.25848 -111.050323,41.578648 -111.047951,41.996265 -111.046028,42.503323 -111.048447,43.019962 -111.04673,43.284813 -111.045998,43.515606 -111.049629,43.982632 -111.050789,44.473396 -111.050842,44.664562 -111.05265,44.995766 -110.428894,44.992348 -110.392006,44.998688 -109.994789,45.002853 -109.798653,44.99958 -108.624573,44.997643 -108.258568,45.00016 -107.893715,44.999813 -106.258644,44.996174 -106.020576,44.997227 -105.084465,44.999832 -105.04126,45.001091 -104.059349,44.997349 -104.058975,44.574368 -104.060547,44.181843 -104.059242,44.145844 -104.05899,43.852928 -104.057426,43.503738 -104.05867,43.47916 -104.05571,43.003094 -104.055725,42.614704 -104.053009,41.999851 -104.053108,41.698246Wyoming56MtnWY251500.8011848.149453588.0119825.0168839.0227007.0226581.0164561.0153679.028109.02963.0207868.013112.071419.029157.00.50.583202.0-87.748451,44.961628 -87.83989,44.927334 -87.830917,44.873356 -87.985687,44.720482 -87.983078,44.677273 -88.013184,44.639126 -87.975655,44.595821 -88.012917,44.622242 -88.040314,44.571457 -87.966125,44.535503 -87.926308,44.539146 -87.868683,44.616913 -87.76413,44.644054 -87.723724,44.689293 -87.614365,44.833054 -87.552689,44.851341 -87.551575,44.823029 -87.433647,44.891102 -87.367363,44.811569 -87.314369,44.79472 -87.372978,44.676918 -87.473442,44.533947 -87.537407,44.327854 -87.517242,44.175758 -87.644287,44.097836 -87.726036,43.893909 -87.702644,43.67318 -87.785957,43.546299 -87.802872,43.458714 -87.875244,43.358589 -87.889748,43.197208 -87.859985,43.075863 -87.891899,43.025761 -87.836357,42.964577 -87.819771,42.841545 -87.756729,42.777527 -87.791435,42.666622 -87.79731,42.489132 -88.194702,42.489613 -88.297897,42.49197 -88.70652,42.489655 -88.764954,42.490906 -88.939079,42.490864 -89.359444,42.497906 -89.400497,42.49749 -89.834618,42.50346 -89.923569,42.504108 -90.419975,42.508362 -90.638329,42.509361 -90.62558,42.528561 -90.639091,42.555714 -90.664253,42.571392 -90.694664,42.637932 -90.745483,42.657005 -90.892418,42.678246 -90.919281,42.680683 -90.999054,42.707066 -91.06604,42.744923 -91.081902,42.783375 -91.0933,42.871452 -91.138992,42.925907 -91.152084,43.001331 -91.159622,43.0812 -91.168442,43.082905 -91.161224,43.147594 -91.068924,43.257919 -91.066299,43.280704 -91.078369,43.31332 -91.176918,43.35397 -91.198112,43.370537 -91.210785,43.424076 -91.235771,43.46471 -91.223434,43.500835 -91.240425,43.54874 -91.232857,43.598919 -91.258255,43.677353 -91.258781,43.722427 -91.250969,43.788109 -91.291809,43.847225 -91.373215,43.947227 -91.425758,43.985657 -91.528275,44.034252 -91.569016,44.034992 -91.601639,44.040859 -91.652084,44.066933 -91.753067,44.137264 -91.848587,44.191223 -91.888535,44.25753 -91.922188,44.288376 -91.922592,44.317554 -91.938705,44.339146 -91.972221,44.364521 -92.091164,44.415623 -92.205963,44.438427 -92.248924,44.456249 -92.296509,44.492214 -92.320297,44.540524 -92.340691,44.552868 -92.509026,44.575191 -92.60878,44.610325 -92.630173,44.642685 -92.736946,44.713627 -92.805382,44.746193 -92.760826,44.835403 -92.764061,44.862267 -92.771667,44.899529 -92.753723,44.915035 -92.749565,44.935688 -92.766922,45.001038 -92.762787,45.022152 -92.796555,45.065643 -92.745216,45.113037 -92.744728,45.156456 -92.762375,45.186646 -92.755211,45.21241 -92.746384,45.297638 -92.707176,45.318237 -92.684662,45.363113 -92.648544,45.395504 -92.644768,45.439491 -92.65461,45.455261 -92.685211,45.470093 -92.727943,45.547283 -92.761963,45.564304 -92.834824,45.563442 -92.876617,45.578876 -92.885185,45.644997 -92.85981,45.710606 -92.833427,45.730934 -92.7789,45.763386 -92.748558,45.837349 -92.733894,45.845028 -92.706039,45.891006 -92.666008,45.915752 -92.552475,45.951321 -92.523781,45.982635 -92.462151,45.981251 -92.424805,46.025558 -92.364769,46.016304 -92.346031,46.022652 -92.327179,46.056934 -92.289177,46.073288 -92.28875,46.156658 -92.28849,46.416042 -92.287079,46.658844 -92.208961,46.646931 -92.095779,46.742687 -92.003967,46.683861 -91.921272,46.680195 -91.555588,46.756924 -90.861542,46.952549 -90.7743,46.920303 -90.77726,46.88319 -90.926056,46.58556 -90.73053,46.645756 -90.540695,46.587582 -90.40802,46.568665 -90.385345,46.539711 -90.31353,46.551617 -90.302216,46.54435 -90.300003,46.525105 -90.269608,46.522533 -90.258224,46.508842 -90.211349,46.506348 -90.161217,46.442432 -90.141624,46.393951 -90.115005,46.365208 -90.111488,46.340481 -89.924973,46.304077 -89.09967,46.145691 -88.985168,46.100437 -88.925064,46.073647 -88.804268,46.026848 -88.793686,46.036404 -88.777351,46.032658 -88.772888,46.021191 -88.72628,46.029625 -88.703476,46.018967 -88.677254,46.020187 -88.643539,45.993431 -88.615372,45.994164 -88.597404,46.01556 -88.575226,46.009003 -88.548225,46.019344 -88.51548,46.018654 -88.49395,46.013004 -88.483681,45.999195 -88.454185,46.000805 -88.403389,45.983467 -88.369804,45.994633 -88.32119,45.966759 -88.299019,45.96199 -88.257034,45.967102 -88.214859,45.947948 -88.180061,45.953564 -88.150307,45.93634 -88.111259,45.926334 -88.093719,45.920662 -88.095634,45.89185 -88.065292,45.873688 -88.121658,45.834923 -88.129822,45.819447 -88.088608,45.791576 -88.051514,45.786156 -87.989944,45.79509 -87.969055,45.766491 -87.873505,45.75074 -87.842239,45.722458 -87.80143,45.71143 -87.801033,45.701363 -87.777351,45.684139 -87.780823,45.675953 -87.816933,45.665428 -87.819817,45.654488 -87.775925,45.613235 -87.774956,45.600422 -87.786194,45.568554 -87.828484,45.568626 -87.805023,45.544559 -87.789268,45.4991 -87.813499,45.466492 -87.860153,45.445129 -87.849419,45.406147 -87.883499,45.365883 -87.873863,45.362114 -87.868423,45.372101 -87.861984,45.370193 -87.841171,45.346176 -87.827896,45.358349 -87.759926,45.352924 -87.689484,45.391296 -87.64357,45.361881 -87.645248,45.348194 -87.704361,45.272228 -87.705032,45.247108 -87.719559,45.236794 -87.721519,45.211693 -87.736092,45.199093 -87.729561,45.176624 -87.672707,45.14069 -87.66478,45.10907 -87.581169,45.094654 -87.618416,45.05682 -87.620232,44.992008 -87.748451,44.961628-87.034409,45.290421 -86.986137,45.298672 -86.967598,45.240288 -86.995621,45.218422 -87.044998,45.249031 -87.025337,45.149982 -87.079765,45.147316 -87.044792,45.09552 -87.08757,45.092186 -87.083794,45.053291 -87.11245,45.06477 -87.178589,44.982811 -87.168686,44.933327 -87.205551,44.873241 -87.311028,44.798775 -87.378639,44.837746 -87.405319,44.911205 -87.342056,45.015221 -87.283379,45.052628 -87.230804,45.175076 -87.177803,45.154984 -87.065948,45.296478 -87.034409,45.290421Wisconsin55E N CenWI139556.5728223.2954796441.01249223.01789141.02345442.02450999.01763163.01710612.0264651.057559.02335941.0129191.0688168.0425748.00.4890.5111180518.0-117.025307,43.67915 -117.022804,43.753819 -117.036125,43.800259 -117.026634,43.831684 -117.009514,43.839886 -117.015228,43.853088 -116.984779,43.859467 -116.977158,43.873585 -116.97715,43.904556 -116.958725,43.928692 -116.966965,43.96331 -116.932602,44.014317 -116.975822,44.074009 -116.962448,44.090412 -116.945892,44.09314 -116.90126,44.146427 -116.912056,44.177418 -116.980873,44.197956 -116.975128,44.225296 -116.991707,44.247177 -117.02935,44.249451 -117.051025,44.23167 -117.080383,44.243961 -117.099556,44.267193 -117.111687,44.26992 -117.142273,44.250748 -117.169716,44.253448 -117.212563,44.284836 -117.216446,44.300781 -117.200592,44.339554 -117.235909,44.390099 -117.216209,44.427971 -117.223396,44.473103 -117.20295,44.485901 -117.186378,44.511921 -117.14415,44.534771 -117.142929,44.559402 -117.129494,44.572639 -117.078346,44.689453 -117.065506,44.697674 -117.038567,44.749233 -116.950493,44.776154 -116.908623,44.82906 -116.89637,44.848675 -116.866081,44.868729 -116.834404,44.920265 -116.846565,44.954971 -116.830406,44.972755 -116.847168,44.971863 -116.854897,44.980087 -116.847107,45.000164 -116.853523,45.017067 -116.80632,45.049877 -116.786224,45.075874 -116.777107,45.099602 -116.760284,45.106422 -116.735603,45.137428 -116.687836,45.26247 -116.671288,45.335529 -116.564796,45.45998 -116.553528,45.493763 -116.477577,45.566174 -116.469444,45.606373 -116.513939,45.664608 -116.527298,45.710846 -116.559654,45.747543 -116.653419,45.78075 -116.702202,45.81929 -116.772728,45.819885 -116.790283,45.845989 -116.855492,45.903721 -116.897217,45.98064 -116.918152,45.9953 -116.956741,46.065811 -116.986229,46.078632 -116.960655,46.097397 -116.928444,46.165604 -116.966507,46.197674 -116.971741,46.249428 -117.000656,46.302567 -117.026985,46.335545 -117.063194,46.348816 -117.04348,46.388691 -117.037567,46.428097 -117.040932,46.536716 -117.039963,47.119423 -117.041382,47.258602 -117.040779,47.361542 -117.036438,47.971191 -117.037834,48.046284 -117.028046,48.83815 -117.030975,49 -116.0625,48.999996 -116.055679,48.498726 -116.054497,48.208549 -116.052483,47.976269 -116.024307,47.965015 -115.997925,47.925217 -115.936836,47.867199 -115.902916,47.841148 -115.868805,47.827526 -115.84832,47.805256 -115.835739,47.756355 -115.789536,47.744911 -115.774727,47.709805 -115.732666,47.695625 -115.73307,47.63995 -115.697289,47.61615 -115.691093,47.59079 -115.741837,47.53376 -115.700531,47.520962 -115.69178,47.489609 -115.639153,47.475304 -115.642197,47.457863 -115.655098,47.449249 -115.731491,47.445374 -115.749115,47.434036 -115.749336,47.422546 -115.665489,47.399239 -115.637794,47.380116 -115.598549,47.370075 -115.554535,47.334686 -115.522079,47.292057 -115.500946,47.281719 -115.425659,47.274448 -115.407227,47.263668 -115.342682,47.255096 -115.324249,47.245224 -115.295258,47.179626 -115.192101,47.124104 -115.171524,47.097649 -115.147713,47.09182 -115.134537,47.063629 -115.080368,47.026604 -115.054672,46.973438 -115.036369,46.963081 -115.00061,46.958889 -114.963768,46.925293 -114.923164,46.907246 -114.939606,46.890968 -114.947449,46.852528 -114.901367,46.799515 -114.865646,46.797127 -114.839836,46.77562 -114.793076,46.766613 -114.776878,46.755798 -114.781967,46.703121 -114.747154,46.695213 -114.697479,46.733841 -114.672935,46.734802 -114.624977,46.687187 -114.644089,46.671001 -114.643791,46.660904 -114.609879,46.629128 -114.539444,46.63797 -114.483772,46.623653 -114.44059,46.645794 -114.383072,46.661674 -114.33374,46.654305 -114.323769,46.622917 -114.342377,46.587959 -114.349174,46.517467 -114.359528,46.506203 -114.409775,46.48745 -114.383087,46.428257 -114.39608,46.399624 -114.408859,46.39299 -114.430862,46.28479 -114.472862,46.25304 -114.471901,46.243862 -114.438622,46.220333 -114.439949,46.169048 -114.466087,46.155342 -114.508682,46.157497 -114.518013,46.136143 -114.505638,46.116222 -114.47644,46.107437 -114.455101,46.08231 -114.464828,46.050896 -114.493393,46.023491 -114.473602,46.009846 -114.483528,45.989887 -114.411522,45.972054 -114.404366,45.95406 -114.428535,45.921558 -114.412605,45.910732 -114.391914,45.870968 -114.406601,45.846535 -114.442307,45.852703 -114.472878,45.83955 -114.498238,45.842766 -114.516449,45.81015 -114.562614,45.762482 -114.541031,45.746082 -114.53405,45.72308 -114.496635,45.694485 -114.509781,45.674141 -114.500816,45.652477 -114.563751,45.624355 -114.540031,45.596481 -114.559998,45.548824 -114.526466,45.558277 -114.495667,45.546734 -114.461784,45.547932 -114.432632,45.527718 -114.418129,45.499092 -114.370537,45.485825 -114.349327,45.463467 -114.325516,45.457508 -114.261322,45.485943 -114.246964,45.503029 -114.241081,45.535374 -114.193893,45.528 -114.171753,45.544006 -114.131134,45.550465 -114.117226,45.571209 -114.082054,45.58646 -114.055603,45.625225 -114.01712,45.640854 -114.010078,45.652592 -114.018967,45.672459 -114.00856,45.686413 -113.970238,45.697456 -113.963234,45.679459 -113.925789,45.671291 -113.922623,45.655205 -113.901291,45.637333 -113.902397,45.613571 -113.85112,45.609642 -113.821579,45.600716 -113.802849,45.583809 -113.832809,45.514988 -113.780029,45.516945 -113.7714,45.507133 -113.768265,45.477787 -113.78476,45.445713 -113.774124,45.410252 -113.74041,45.382465 -113.738182,45.321609 -113.687813,45.277866 -113.689224,45.26236 -113.644699,45.206867 -113.600037,45.181068 -113.593208,45.149818 -113.570694,45.134621 -113.573486,45.117786 -113.551384,45.107624 -113.509338,45.10791 -113.519722,45.082138 -113.489273,45.071293 -113.48542,45.058395 -113.454552,45.043423 -113.45797,45.027523 -113.440147,44.998268 -113.447884,44.949596 -113.462532,44.940849 -113.486465,44.939648 -113.495308,44.930744 -113.444695,44.851315 -113.420502,44.833775 -113.349152,44.807644 -113.33976,44.779076 -113.31781,44.780304 -113.256287,44.810562 -113.239471,44.811916 -113.137413,44.761517 -113.126572,44.737457 -113.100845,44.715252 -113.098099,44.695995 -113.072289,44.675606 -113.053436,44.624371 -113.082184,44.582764 -113.038811,44.556377 -113.036972,44.533043 -113.006866,44.510696 -113.019463,44.481861 -113.005814,44.452702 -113.011169,44.437801 -112.984406,44.435627 -112.937439,44.40728 -112.886467,44.392941 -112.869942,44.370068 -112.843437,44.353729 -112.816559,44.364292 -112.817871,44.394909 -112.825851,44.421173 -112.795387,44.458099 -112.779022,44.47401 -112.732872,44.484409 -112.713486,44.497025 -112.652351,44.480892 -112.53849,44.477589 -112.501007,44.463089 -112.457687,44.468925 -112.419922,44.449375 -112.366753,44.44936 -112.339745,44.497269 -112.341675,44.525188 -112.281509,44.54179 -112.255844,44.560059 -112.229568,44.559578 -112.216934,44.538582 -112.19883,44.531536 -112.123367,44.528339 -112.099075,44.518318 -112.058548,44.528698 -112.02626,44.52293 -112.022797,44.53513 -111.977005,44.529762 -111.939575,44.549812 -111.871696,44.556351 -111.807037,44.504066 -111.791809,44.518547 -111.766121,44.518909 -111.716202,44.533844 -111.684067,44.550835 -111.604454,44.543072 -111.566437,44.552948 -111.489449,44.528778 -111.481781,44.536224 -111.458534,44.538002 -111.462036,44.550022 -111.492111,44.55127 -111.513733,44.593277 -111.500954,44.616051 -111.506897,44.637768 -111.469376,44.640789 -111.457474,44.652634 -111.4599,44.670101 -111.480011,44.691494 -111.474632,44.70224 -111.442841,44.713257 -111.394295,44.708946 -111.384171,44.73777 -111.371521,44.745163 -111.34919,44.726254 -111.318436,44.72794 -111.31469,44.705269 -111.294884,44.683014 -111.269424,44.673878 -111.269882,44.642288 -111.22319,44.626984 -111.219017,44.618057 -111.233452,44.602638 -111.218727,44.573246 -111.177986,44.564926 -111.169464,44.545261 -111.133583,44.527977 -111.128143,44.500832 -111.093857,44.486198 -111.050789,44.473396 -111.049629,43.982632 -111.045998,43.515606 -111.04673,43.284813 -111.048447,43.019962 -111.046028,42.503323 -111.047951,41.996265 -111.49382,42.00024 -112.099724,42.002377 -112.146324,41.99913 -112.988754,42.001228 -114.038223,41.995476 -114.268616,41.99601 -115.023979,41.996597 -115.946617,41.994698 -116.991356,41.994904 -117.017906,41.994904 -117.025307,43.67915Idaho16MtnID214324.9782131.1441006749.0263194.0360723.0500956.0505793.0359136.0329881.052958.08572.0443703.029070.0144809.068391.00.4980.502201595.0-73.258507,42.745979 -73.269722,42.747402 -73.296616,42.803471 -73.280029,42.837025 -73.276451,42.940216 -73.250519,43.31078 -73.238838,43.512764 -73.260429,43.559315 -73.291847,43.574966 -73.282181,43.593121 -73.294548,43.619587 -73.303978,43.624649 -73.364128,43.614933 -73.388557,43.569077 -73.418762,43.582413 -73.423401,43.63205 -73.371429,43.714218 -73.357109,43.756496 -73.359436,43.778366 -73.385178,43.804447 -73.375557,43.885918 -73.405769,43.914749 -73.417839,43.98814 -73.408684,44.018166 -73.436432,44.045624 -73.435646,44.063843 -73.409187,44.106556 -73.408295,44.136173 -73.382492,44.172054 -73.377762,44.201195 -73.305756,44.26009 -73.330215,44.36734 -73.300423,44.405483 -73.293747,44.432804 -73.334877,44.544281 -73.348236,44.553925 -73.371719,44.579121 -73.382248,44.619762 -73.37056,44.634304 -73.37352,44.661232 -73.358574,44.680325 -73.373581,44.724194 -73.327209,44.799252 -73.369476,44.819077 -73.382729,44.847893 -73.336838,44.932564 -73.351181,44.981934 -73.345146,45.0061 -73.188972,45.008446 -72.547668,45.005325 -71.902328,45.007294 -71.505844,45.013306 -71.541397,44.976517 -71.517448,44.943649 -71.506836,44.899624 -71.575569,44.815971 -71.583969,44.779148 -71.631599,44.741661 -71.608147,44.677811 -71.589218,44.650547 -71.568497,44.637394 -71.554573,44.596535 -71.537262,44.578876 -71.592758,44.551147 -71.591911,44.538818 -71.575714,44.525749 -71.58709,44.49448 -71.614693,44.474449 -71.637024,44.476673 -71.648178,44.469116 -71.656868,44.440079 -71.677353,44.421284 -71.767036,44.39819 -71.798195,44.384113 -71.821663,44.3503 -71.835281,44.344139 -71.928825,44.336052 -71.939369,44.325726 -71.994896,44.327488 -72.035957,44.299374 -72.060028,44.261433 -72.044853,44.234318 -72.059746,44.182114 -72.045189,44.156372 -72.035385,44.120682 -72.04998,44.100388 -72.032913,44.096035 -72.035194,44.083309 -72.077385,44.031975 -72.08567,44.008858 -72.110374,43.989162 -72.113274,43.976448 -72.092178,43.957924 -72.11367,43.939098 -72.122116,43.909149 -72.170555,43.878849 -72.185303,43.80162 -72.206558,43.764565 -72.219589,43.750622 -72.260521,43.735229 -72.304504,43.69846 -72.333549,43.597294 -72.373962,43.572304 -72.395462,43.517483 -72.38298,43.484558 -72.396713,43.410084 -72.412605,43.377052 -72.398094,43.350933 -72.410698,43.32333 -72.402885,43.307308 -72.436066,43.232178 -72.452866,43.155945 -72.438072,43.116192 -72.443932,43.07896 -72.462219,43.046425 -72.457626,42.999523 -72.473808,42.976063 -72.50473,42.965504 -72.520683,42.951591 -72.525276,42.912533 -72.553894,42.860561 -72.539383,42.807652 -72.513535,42.789177 -72.507736,42.76865 -72.47979,42.761505 -72.462639,42.746758 -72.456238,42.725769 -72.923454,42.737282 -73.020149,42.740314 -73.258507,42.745979Vermont50N EngVT23955.748947.04562758.0144895.0210650.0275492.0287266.0209604.0199808.035731.02033.0283146.017600.084759.038046.00.490.51146370.0-91.730217,43.499603 -92.07737,43.499187 -92.452995,43.499496 -92.557831,43.500294 -93.027016,43.501316 -93.054184,43.501495 -93.500618,43.500534 -93.653481,43.500809 -93.973717,43.500343 -94.246544,43.498993 -94.454987,43.498146 -94.859573,43.500072 -94.920197,43.499413 -95.396278,43.50037 -95.464493,43.499577 -95.866615,43.498978 -96.060738,43.498566 -96.460136,43.499744 -96.456284,43.84877 -96.457077,44.199093 -96.454781,44.53838 -96.45639,44.628845 -96.454887,44.801384 -96.45575,44.972031 -96.454163,45.27523 -96.457268,45.298885 -96.477257,45.328545 -96.532211,45.375168 -96.604744,45.396561 -96.692825,45.410675 -96.737686,45.458233 -96.768898,45.517517 -96.842735,45.584129 -96.854637,45.609161 -96.832443,45.650726 -96.657043,45.73901 -96.604263,45.808304 -96.587608,45.817894 -96.566574,45.934151 -96.561455,45.947723 -96.575867,46.02132 -96.551582,46.09557 -96.570816,46.177216 -96.58754,46.191959 -96.586105,46.215454 -96.597832,46.238724 -96.601723,46.336365 -96.61451,46.350853 -96.651749,46.359474 -96.687874,46.412258 -96.709328,46.427208 -96.714539,46.468758 -96.73996,46.489471 -96.75087,46.588657 -96.770683,46.600021 -96.783958,46.624149 -96.789886,46.62981 -96.793335,46.678841 -96.781197,46.707081 -96.780022,46.762348 -96.796837,46.812069 -96.767891,46.844898 -96.777702,46.867386 -96.756554,46.922817 -96.762711,46.936298 -96.787567,46.93222 -96.789352,46.948238 -96.801529,46.955879 -96.793068,46.969677 -96.816414,46.969814 -96.824173,47.003471 -96.834938,47.010265 -96.82225,47.033966 -96.826607,47.078865 -96.818794,47.092636 -96.838806,47.151917 -96.826134,47.170094 -96.836708,47.240486 -96.849266,47.25687 -96.837357,47.293911 -96.84639,47.314629 -96.838104,47.34227 -96.850273,47.360981 -96.83947,47.384144 -96.849648,47.408962 -96.86689,47.413113 -96.855469,47.436779 -96.866325,47.461563 -96.851257,47.500645 -96.860329,47.521381 -96.848831,47.544594 -96.858307,47.563004 -96.85186,47.601177 -96.872978,47.61528 -96.889069,47.67395 -96.923302,47.714119 -96.931656,47.763531 -96.957474,47.794464 -96.983536,47.809685 -96.976875,47.828053 -96.999985,47.87022 -97.02021,47.875591 -97.014977,47.917912 -97.047699,47.954945 -97.066719,48.048183 -97.092369,48.070362 -97.098679,48.10099 -97.121521,48.116386 -97.120567,48.142792 -97.136162,48.148415 -97.115715,48.159241 -97.137093,48.167786 -97.135941,48.175243 -97.136925,48.19508 -97.130478,48.203758 -97.11055,48.207623 -97.139404,48.221771 -97.108887,48.228065 -97.127205,48.23354 -97.123436,48.25919 -97.136307,48.2645 -97.111366,48.277893 -97.112335,48.286163 -97.130165,48.293056 -97.113373,48.294899 -97.114403,48.303635 -97.132286,48.310986 -97.112244,48.319942 -97.136787,48.326008 -97.130775,48.361507 -97.150047,48.363232 -97.133438,48.372471 -97.134857,48.384426 -97.15847,48.388222 -97.128777,48.407902 -97.149475,48.410007 -97.151299,48.419628 -97.122253,48.416126 -97.119286,48.437119 -97.143265,48.438126 -97.134247,48.51733 -97.14798,48.517967 -97.139038,48.534664 -97.15519,48.538414 -97.160088,48.545094 -97.146271,48.549553 -97.167595,48.562279 -97.151779,48.572872 -97.157845,48.583656 -97.140465,48.586922 -97.144371,48.61404 -97.122612,48.620785 -97.127098,48.62981 -97.107285,48.629963 -97.096825,48.674545 -97.116394,48.695259 -97.109756,48.708599 -97.13446,48.726254 -97.132156,48.747234 -97.147552,48.755669 -97.138901,48.763557 -97.147171,48.781185 -97.173599,48.801529 -97.164368,48.810383 -97.180077,48.815552 -97.17086,48.835995 -97.175385,48.873772 -97.216026,48.931843 -97.229095,49 -96.406616,49 -95.276421,49 -95.157516,49.000004 -95.151627,49.371735 -94.83181,49.330811 -94.681038,48.877178 -94.694221,48.777637 -94.570107,48.713703 -94.430435,48.710815 -94.292145,48.707745 -94.230637,48.652023 -93.843735,48.624783 -93.812515,48.525455 -93.780937,48.511639 -93.513985,48.534328 -93.465187,48.54958 -93.457619,48.59277 -93.304092,48.63723 -93.091301,48.626663 -92.946785,48.628441 -92.728851,48.540306 -92.64167,48.540443 -92.626228,48.502918 -92.698669,48.494816 -92.70649,48.460464 -92.497375,48.440166 -92.456192,48.402264 -92.473167,48.357594 -92.369965,48.220875 -92.276772,48.244438 -92.300125,48.298409 -92.275986,48.352417 -92.125824,48.366856 -92.035049,48.35561 -91.979401,48.2505 -91.788689,48.206249 -91.711815,48.19688 -91.703606,48.114941 -91.568657,48.104565 -91.571442,48.043678 -91.239334,48.081406 -91.027039,48.19545 -90.864388,48.254311 -90.743256,48.088554 -90.567352,48.121811 -90.556732,48.092861 -90.14518,48.112885 -90.026611,48.086193 -89.986931,48.02367 -89.900299,47.992619 -89.749222,48.0266 -89.530586,48.00177 -89.625557,47.992676 -89.636284,47.959503 -89.99958,47.824673 -90.509514,47.710045 -91.021317,47.461151 -91.468483,47.125008 -91.800789,46.927151 -92.088303,46.791958 -92.214432,46.668262 -92.302956,46.666634 -92.287079,46.658844 -92.28849,46.416042 -92.28875,46.156658 -92.289177,46.073288 -92.327179,46.056934 -92.346031,46.022652 -92.364769,46.016304 -92.424805,46.025558 -92.462151,45.981251 -92.523781,45.982635 -92.552475,45.951321 -92.666008,45.915752 -92.706039,45.891006 -92.733894,45.845028 -92.748558,45.837349 -92.7789,45.763386 -92.833427,45.730934 -92.85981,45.710606 -92.885185,45.644997 -92.876617,45.578876 -92.834824,45.563442 -92.761963,45.564304 -92.727943,45.547283 -92.685211,45.470093 -92.65461,45.455261 -92.644768,45.439491 -92.648544,45.395504 -92.684662,45.363113 -92.707176,45.318237 -92.746384,45.297638 -92.755211,45.21241 -92.762375,45.186646 -92.744728,45.156456 -92.745216,45.113037 -92.796555,45.065643 -92.762787,45.022152 -92.766922,45.001038 -92.749565,44.935688 -92.753723,44.915035 -92.771667,44.899529 -92.764061,44.862267 -92.760826,44.835403 -92.805382,44.746193 -92.736946,44.713627 -92.630173,44.642685 -92.60878,44.610325 -92.509026,44.575191 -92.340691,44.552868 -92.320297,44.540524 -92.296509,44.492214 -92.248924,44.456249 -92.205963,44.438427 -92.091164,44.415623 -91.972221,44.364521 -91.938705,44.339146 -91.922592,44.317554 -91.922188,44.288376 -91.888535,44.25753 -91.848587,44.191223 -91.753067,44.137264 -91.652084,44.066933 -91.601639,44.040859 -91.569016,44.034992 -91.528275,44.034252 -91.425758,43.985657 -91.373215,43.947227 -91.291809,43.847225 -91.250969,43.788109 -91.258781,43.722427 -91.258255,43.677353 -91.232857,43.598919 -91.240425,43.54874 -91.223434,43.500835 -91.610954,43.500656 -91.730217,43.499603Minnesota27W N CenMN206207.09912845.4114375099.01130683.01647853.02145183.02229916.01605702.01593019.0246546.077722.02192417.0118919.0606584.0303141.00.490.511043304.0-121.440407,41.994457 -122.283577,42.0009 -123.22094,42.002346 -123.512032,41.997993 -123.817963,41.993114 -124.205246,41.997814 -124.351036,42.098843 -124.413841,42.246059 -124.4366,42.429775 -124.390549,42.553196 -124.399864,42.622868 -124.558395,42.832626 -124.484123,42.955624 -124.385544,43.261757 -124.404846,43.300365 -124.272766,43.45927 -124.224777,43.605167 -124.157097,43.857277 -124.117088,44.269672 -124.053177,44.6623 -124.074341,44.814903 -124.006348,45.036274 -123.955376,45.29314 -123.979317,45.48526 -123.935432,45.508141 -123.890869,45.474224 -123.858269,45.499256 -123.952171,45.568703 -123.93483,45.703007 -123.97538,45.775654 -123.955025,45.871212 -123.995255,45.942093 -123.919937,46.012493 -123.976082,46.202881 -123.792847,46.111618 -123.775833,46.1446 -123.819725,46.193821 -123.760162,46.21011 -123.715912,46.170063 -123.668999,46.174667 -123.515785,46.236259 -123.36232,46.144321 -123.303482,46.144905 -123.247566,46.144188 -123.211205,46.170174 -123.174965,46.183754 -123.117325,46.179478 -123.04937,46.155903 -122.972946,46.110649 -122.898537,46.079494 -122.874199,46.027348 -122.806526,45.944054 -122.805008,45.904236 -122.78286,45.86805 -122.783302,45.850613 -122.786797,45.800507 -122.763077,45.760731 -122.771339,45.727848 -122.759331,45.649559 -122.695114,45.631207 -122.650002,45.606991 -122.564224,45.594978 -122.435951,45.564938 -122.355255,45.56633 -122.301949,45.543251 -122.243721,45.548271 -122.080841,45.590664 -121.998817,45.617985 -121.971466,45.635937 -121.925629,45.642189 -121.887093,45.677017 -121.809853,45.700844 -121.757507,45.689877 -121.705231,45.688953 -121.52787,45.719727 -121.441368,45.695126 -121.420845,45.690762 -121.366631,45.699844 -121.318794,45.6968 -121.275208,45.678497 -121.213089,45.665802 -121.202126,45.657444 -121.190872,45.6134 -121.173134,45.600674 -121.124023,45.607216 -121.07235,45.646767 -121.032303,45.653 -120.9673,45.645309 -120.947395,45.650471 -120.906761,45.635632 -120.860245,45.66534 -120.695824,45.710663 -120.657234,45.732765 -120.622589,45.743763 -120.568916,45.74107 -120.497993,45.695782 -120.442223,45.68943 -120.282478,45.716732 -120.206291,45.719933 -120.154755,45.76141 -120.067497,45.78035 -119.993172,45.811287 -119.868591,45.831844 -119.832413,45.841755 -119.677307,45.852684 -119.620979,45.899555 -119.588158,45.91346 -119.511086,45.899345 -119.437729,45.914413 -119.378311,45.917755 -119.301636,45.932808 -119.17762,45.922497 -119.13913,45.925854 -119.031105,45.966419 -118.981018,45.999203 -117.991478,46.001778 -117.981628,46.000019 -117.601807,46.000401 -117.480652,45.999966 -116.918152,45.9953 -116.897217,45.98064 -116.855492,45.903721 -116.790283,45.845989 -116.772728,45.819885 -116.702202,45.81929 -116.653419,45.78075 -116.559654,45.747543 -116.527298,45.710846 -116.513939,45.664608 -116.469444,45.606373 -116.477577,45.566174 -116.553528,45.493763 -116.564796,45.45998 -116.671288,45.335529 -116.687836,45.26247 -116.735603,45.137428 -116.760284,45.106422 -116.777107,45.099602 -116.786224,45.075874 -116.80632,45.049877 -116.853523,45.017067 -116.847107,45.000164 -116.854897,44.980087 -116.847168,44.971863 -116.830406,44.972755 -116.846565,44.954971 -116.834404,44.920265 -116.866081,44.868729 -116.89637,44.848675 -116.908623,44.82906 -116.950493,44.776154 -117.038567,44.749233 -117.065506,44.697674 -117.078346,44.689453 -117.129494,44.572639 -117.142929,44.559402 -117.14415,44.534771 -117.186378,44.511921 -117.20295,44.485901 -117.223396,44.473103 -117.216209,44.427971 -117.235909,44.390099 -117.200592,44.339554 -117.216446,44.300781 -117.212563,44.284836 -117.169716,44.253448 -117.142273,44.250748 -117.111687,44.26992 -117.099556,44.267193 -117.080383,44.243961 -117.051025,44.23167 -117.02935,44.249451 -116.991707,44.247177 -116.975128,44.225296 -116.980873,44.197956 -116.912056,44.177418 -116.90126,44.146427 -116.945892,44.09314 -116.962448,44.090412 -116.975822,44.074009 -116.932602,44.014317 -116.966965,43.96331 -116.958725,43.928692 -116.97715,43.904556 -116.977158,43.873585 -116.984779,43.859467 -117.015228,43.853088 -117.009514,43.839886 -117.026634,43.831684 -117.036125,43.800259 -117.022804,43.753819 -117.025307,43.67915 -117.017906,41.994904 -118.184326,41.996742 -119.309906,41.989243 -119.350655,41.98896 -119.992401,41.989315 -120.870827,41.987789 -121.440407,41.994457Oregon41PacificOR248646.6726172.3312842321.0750844.01103313.01397073.01445248.01063797.0949326.0165256.043435.01319960.087183.0380532.0206287.00.4920.508452821.0-72.280388,42.720383 -72.456238,42.725769 -72.462639,42.746758 -72.47979,42.761505 -72.507736,42.76865 -72.513535,42.789177 -72.539383,42.807652 -72.553894,42.860561 -72.525276,42.912533 -72.520683,42.951591 -72.50473,42.965504 -72.473808,42.976063 -72.457626,42.999523 -72.462219,43.046425 -72.443932,43.07896 -72.438072,43.116192 -72.452866,43.155945 -72.436066,43.232178 -72.402885,43.307308 -72.410698,43.32333 -72.398094,43.350933 -72.412605,43.377052 -72.396713,43.410084 -72.38298,43.484558 -72.395462,43.517483 -72.373962,43.572304 -72.333549,43.597294 -72.304504,43.69846 -72.260521,43.735229 -72.219589,43.750622 -72.206558,43.764565 -72.185303,43.80162 -72.170555,43.878849 -72.122116,43.909149 -72.11367,43.939098 -72.092178,43.957924 -72.113274,43.976448 -72.110374,43.989162 -72.08567,44.008858 -72.077385,44.031975 -72.035194,44.083309 -72.032913,44.096035 -72.04998,44.100388 -72.035385,44.120682 -72.045189,44.156372 -72.059746,44.182114 -72.044853,44.234318 -72.060028,44.261433 -72.035957,44.299374 -71.994896,44.327488 -71.939369,44.325726 -71.928825,44.336052 -71.835281,44.344139 -71.821663,44.3503 -71.798195,44.384113 -71.767036,44.39819 -71.677353,44.421284 -71.656868,44.440079 -71.648178,44.469116 -71.637024,44.476673 -71.614693,44.474449 -71.58709,44.49448 -71.575714,44.525749 -71.591911,44.538818 -71.592758,44.551147 -71.537262,44.578876 -71.554573,44.596535 -71.568497,44.637394 -71.589218,44.650547 -71.608147,44.677811 -71.631599,44.741661 -71.583969,44.779148 -71.575569,44.815971 -71.506836,44.899624 -71.517448,44.943649 -71.541397,44.976517 -71.505844,45.013306 -71.503471,45.059845 -71.430885,45.116947 -71.403,45.202759 -71.447037,45.236038 -71.386856,45.234886 -71.297714,45.293449 -71.153572,45.237923 -71.08799,45.301422 -71.029205,44.668484 -71.009079,44.282082 -70.984932,43.791088 -70.974365,43.571751 -70.957016,43.564064 -70.950111,43.548874 -70.96476,43.53191 -70.95977,43.516308 -70.971283,43.470131 -70.961975,43.438046 -70.979591,43.396103 -70.970192,43.366299 -70.906296,43.301987 -70.901581,43.280937 -70.813705,43.235138 -70.831047,43.159088 -70.819168,43.121784 -70.885246,43.127621 -70.87513,43.10144 -70.905914,43.083935 -70.886993,43.058796 -70.810928,43.089653 -70.734642,43.058674 -70.814384,42.866974 -70.850243,42.863338 -70.898613,42.886787 -70.921837,42.885059 -71.025925,42.851082 -71.066063,42.80423 -71.121101,42.818192 -71.181557,42.807228 -71.186844,42.73867 -71.240974,42.743465 -71.252907,42.725979 -71.287689,42.698513 -71.901421,42.705292 -71.930695,42.707123 -72.280388,42.720383New Hampshire33N EngNH23230.674875.2651109252.0292601.0411186.0543544.0565708.0415538.0443317.069904.04067.0574237.038108.0148720.078699.00.490.51193338.0-91.119987,40.705402 -91.129158,40.682148 -91.162498,40.656311 -91.214912,40.643818 -91.262062,40.639545 -91.37561,40.603439 -91.411118,40.572971 -91.412872,40.547993 -91.382103,40.528496 -91.374794,40.503654 -91.385399,40.44725 -91.372757,40.402988 -91.385757,40.392361 -91.418816,40.386875 -91.448593,40.371902 -91.476883,40.390968 -91.490158,40.390762 -91.500221,40.405117 -91.527534,40.410126 -91.529449,40.435043 -91.538689,40.441246 -91.533051,40.455399 -91.579224,40.463718 -91.585869,40.484478 -91.616699,40.504833 -91.622375,40.532864 -91.691917,40.55164 -91.689796,40.581165 -91.716812,40.593399 -91.741547,40.609749 -91.946198,40.608234 -92.192993,40.60006 -92.361328,40.599548 -92.64624,40.591438 -92.717621,40.589645 -93.100731,40.584335 -93.370056,40.580482 -93.562691,40.580807 -93.786079,40.578445 -94.01783,40.574024 -94.238159,40.570972 -94.484993,40.574215 -94.639633,40.575756 -94.920364,40.577229 -95.217171,40.581898 -95.382294,40.584335 -95.767204,40.589046 -95.757271,40.620903 -95.767723,40.643116 -95.876335,40.730434 -95.851509,40.792599 -95.846153,40.848331 -95.834114,40.8703 -95.836258,40.901108 -95.837318,40.974258 -95.860611,41.002651 -95.859253,41.035004 -95.878517,41.065872 -95.857986,41.109188 -95.876396,41.164204 -95.859512,41.166866 -95.85891,41.180538 -95.91581,41.194065 -95.921959,41.207855 -95.91069,41.225246 -95.929939,41.302059 -95.910912,41.308472 -95.897301,41.286865 -95.888817,41.301392 -95.942604,41.34008 -95.939766,41.39481 -95.934776,41.462387 -95.952896,41.472393 -96.006607,41.48196 -96.013161,41.493 -95.996399,41.511524 -95.993675,41.528111 -96.004303,41.536671 -96.049881,41.524342 -96.085548,41.537529 -96.091644,41.563152 -96.080544,41.576008 -96.111015,41.599014 -96.099014,41.65469 -96.119972,41.684105 -96.12191,41.694923 -96.085266,41.704998 -96.09948,41.731575 -96.09903,41.752987 -96.076126,41.791481 -96.13533,41.862633 -96.159676,41.904163 -96.145576,41.924919 -96.147034,41.966267 -96.184921,41.980698 -96.202545,41.996628 -96.235794,42.00127 -96.238426,42.02845 -96.265182,42.048908 -96.284821,42.123463 -96.35186,42.168194 -96.363205,42.21405 -96.337402,42.22953 -96.332352,42.260315 -96.342575,42.282089 -96.368393,42.298031 -96.389473,42.328796 -96.423866,42.349285 -96.411453,42.380924 -96.41732,42.414783 -96.397583,42.441799 -96.395767,42.467407 -96.439087,42.489246 -96.479935,42.517136 -96.489029,42.564034 -96.500633,42.573891 -96.48819,42.580486 -96.512535,42.629761 -96.540855,42.662411 -96.562729,42.668518 -96.626228,42.708359 -96.640396,42.748608 -96.632668,42.77684 -96.600563,42.799564 -96.587334,42.835388 -96.572815,42.834354 -96.555901,42.846668 -96.537201,42.896915 -96.543953,42.913876 -96.514626,42.952393 -96.516838,42.986469 -96.498711,43.012062 -96.519699,43.051521 -96.479263,43.061897 -96.461784,43.075596 -96.460495,43.087887 -96.451195,43.126324 -96.472801,43.209099 -96.486931,43.217926 -96.558289,43.225506 -96.566673,43.239651 -96.55925,43.253281 -96.570404,43.26363 -96.578812,43.290092 -96.540245,43.307678 -96.522575,43.356987 -96.524734,43.384247 -96.557388,43.400749 -96.588791,43.435562 -96.583473,43.481945 -96.597992,43.499874 -96.460136,43.499744 -96.060738,43.498566 -95.866615,43.498978 -95.464493,43.499577 -95.396278,43.50037 -94.920197,43.499413 -94.859573,43.500072 -94.454987,43.498146 -94.246544,43.498993 -93.973717,43.500343 -93.653481,43.500809 -93.500618,43.500534 -93.054184,43.501495 -93.027016,43.501316 -92.557831,43.500294 -92.452995,43.499496 -92.07737,43.499187 -91.730217,43.499603 -91.610954,43.500656 -91.223434,43.500835 -91.235771,43.46471 -91.210785,43.424076 -91.198112,43.370537 -91.176918,43.35397 -91.078369,43.31332 -91.066299,43.280704 -91.068924,43.257919 -91.161224,43.147594 -91.168442,43.082905 -91.159622,43.0812 -91.152084,43.001331 -91.138992,42.925907 -91.0933,42.871452 -91.081902,42.783375 -91.06604,42.744923 -90.999054,42.707066 -90.919281,42.680683 -90.892418,42.678246 -90.745483,42.657005 -90.694664,42.637932 -90.664253,42.571392 -90.639091,42.555714 -90.62558,42.528561 -90.638329,42.509361 -90.651772,42.494698 -90.648346,42.475643 -90.605827,42.46056 -90.563583,42.421837 -90.491043,42.388783 -90.441597,42.360073 -90.427681,42.340633 -90.417984,42.263924 -90.407173,42.242645 -90.367729,42.210209 -90.323601,42.197319 -90.230934,42.159721 -90.191574,42.122688 -90.176086,42.120502 -90.166649,42.103745 -90.168098,42.061043 -90.150536,42.033428 -90.14267,41.983963 -90.154518,41.930775 -90.195839,41.806137 -90.25531,41.781738 -90.304886,41.756466 -90.326027,41.722736 -90.341133,41.64909 -90.339348,41.602798 -90.348366,41.586849 -90.423004,41.567272 -90.434967,41.543579 -90.454994,41.527546 -90.54084,41.52597 -90.6007,41.509586 -90.658791,41.462318 -90.708214,41.450062 -90.7799,41.449821 -90.844139,41.444622 -90.949654,41.421234 -91.000694,41.431084 -91.027489,41.423508 -91.055786,41.401379 -91.07328,41.334896 -91.102348,41.267818 -91.101524,41.231522 -91.05632,41.176258 -91.018257,41.165825 -90.990341,41.144371 -90.957787,41.104359 -90.954651,41.070362 -90.960709,40.950504 -90.983276,40.923927 -91.04921,40.879585 -91.088905,40.833729 -91.092751,40.761547 -91.119987,40.705402Iowa19W N CenIA144715.9891037.6592776755.0740819.01064325.01344802.01431953.01013757.0970933.0156930.016373.01340242.063641.0429860.0217271.00.4840.516579075.0-71.319832,41.772095 -71.340302,41.784325 -71.345985,41.813061 -71.335045,41.857803 -71.342995,41.875683 -71.333588,41.895931 -71.384453,41.88834 -71.382904,41.979164 -71.379143,42.013615 -71.497925,42.009155 -71.798317,42.004177 -71.802826,42.017879 -72.095451,42.025703 -72.136826,42.026306 -72.508041,42.03067 -72.571693,42.030029 -72.582375,42.021511 -72.608292,42.022705 -72.609993,42.030441 -72.756355,42.033752 -72.768036,42.002071 -72.818138,41.997089 -72.81691,42.033413 -73.006546,42.035915 -73.046082,42.036217 -73.484665,42.047337 -73.499275,42.07737 -73.351273,42.504673 -73.258507,42.745979 -73.020149,42.740314 -72.923454,42.737282 -72.456238,42.725769 -72.280388,42.720383 -71.930695,42.707123 -71.901421,42.705292 -71.287689,42.698513 -71.252907,42.725979 -71.240974,42.743465 -71.186844,42.73867 -71.181557,42.807228 -71.121101,42.818192 -71.066063,42.80423 -71.025925,42.851082 -70.921837,42.885059 -70.898613,42.886787 -70.850243,42.863338 -70.814384,42.866974 -70.740204,42.663429 -70.593712,42.64621 -70.633965,42.582546 -70.813637,42.546341 -70.894112,42.447971 -70.961128,42.432297 -71.034668,42.28553 -70.923714,42.234417 -70.893181,42.265667 -70.825172,42.260406 -70.775108,42.248539 -70.686554,42.153065 -70.619225,41.968086 -70.540863,41.930847 -70.538231,41.805656 -70.424042,41.743515 -70.274368,41.721554 -70.34166,41.711704 -70.205795,41.712463 -70.019753,41.78141 -70.000984,41.856243 -70.101028,42.00209 -70.255676,42.060017 -70.13562,42.072392 -70.051003,42.026196 -69.964706,41.903988 -69.91832,41.767544 -69.954964,41.671383 -70.398148,41.612461 -70.433449,41.569645 -70.637665,41.539696 -70.665413,41.556019 -70.620285,41.735531 -70.839951,41.626587 -70.892647,41.633808 -71.001701,41.52002 -71.117645,41.492958 -71.141724,41.65517 -71.199318,41.678398 -71.229485,41.707592 -71.267136,41.749641 -71.319832,41.772095-70.604858,41.42955 -70.568222,41.464455 -70.55336,41.417274 -70.576385,41.410172 -70.515686,41.398544 -70.486671,41.341442 -70.739204,41.334042 -70.770241,41.29805 -70.844444,41.348488 -70.783051,41.352406 -70.771454,41.324867 -70.752296,41.382057 -70.668015,41.454826 -70.606369,41.474552 -70.604858,41.42955-70.032257,41.31181 -70.00705,41.324654 -70.027161,41.33709 -70.088173,41.296726 -70.035027,41.349598 -70.049805,41.391842 -69.966522,41.294769 -69.968987,41.251694 -70.103645,41.238155 -70.213806,41.270081 -70.207634,41.293964 -70.098412,41.277508 -70.032257,41.31181Massachusetts25N EngMA20300.3492606.7386016425.01514746.02247110.02888745.03127680.02268095.02148065.0318026.0247381.03027950.0218000.0718354.0345333.00.480.52808423.0-101.406952,40.001007 -102.051071,39.998928 -102.047081,40.342651 -102.047157,40.431084 -102.04557,40.697323 -102.046532,40.743134 -102.047279,40.998077 -102.620789,41.000225 -102.651802,40.998135 -103.382469,41.000332 -103.571823,40.999664 -104.051201,41.003227 -104.053505,41.388107 -104.054993,41.564247 -104.053108,41.698246 -104.053009,41.999851 -104.055725,42.614704 -104.05571,43.003094 -103.500984,42.99865 -103.005409,42.999374 -102.787933,42.995323 -102.086273,42.989891 -101.231308,42.986835 -100.197739,42.991089 -99.532402,42.992332 -99.253593,42.99239 -98.497292,42.991783 -98.457085,42.937164 -98.390846,42.920139 -98.309982,42.881798 -98.167473,42.839573 -98.144516,42.835796 -98.122765,42.820225 -98.121468,42.808361 -98.032791,42.769192 -97.994797,42.766811 -97.963211,42.773689 -97.929131,42.792324 -97.889595,42.831272 -97.888313,42.855808 -97.818298,42.866589 -97.796684,42.849598 -97.771843,42.846165 -97.724907,42.858009 -97.68541,42.836838 -97.634628,42.861286 -97.570312,42.847992 -97.505791,42.860138 -97.482819,42.857159 -97.456924,42.850445 -97.388969,42.867435 -97.311081,42.861774 -97.271126,42.850018 -97.242859,42.85183 -97.224113,42.841206 -97.211502,42.812576 -97.161095,42.798622 -97.130142,42.773926 -97.014816,42.759544 -96.979271,42.758316 -96.969681,42.752068 -96.977547,42.72731 -96.970451,42.721149 -96.907913,42.731701 -96.809822,42.704086 -96.81012,42.681343 -96.799026,42.670021 -96.722343,42.668594 -96.698746,42.657719 -96.694283,42.641167 -96.714958,42.62191 -96.713745,42.612305 -96.63636,42.550735 -96.628983,42.522697 -96.605156,42.50724 -96.584442,42.518291 -96.546906,42.520504 -96.494392,42.488464 -96.439087,42.489246 -96.395767,42.467407 -96.397583,42.441799 -96.41732,42.414783 -96.411453,42.380924 -96.423866,42.349285 -96.389473,42.328796 -96.368393,42.298031 -96.342575,42.282089 -96.332352,42.260315 -96.337402,42.22953 -96.363205,42.21405 -96.35186,42.168194 -96.284821,42.123463 -96.265182,42.048908 -96.238426,42.02845 -96.235794,42.00127 -96.202545,41.996628 -96.184921,41.980698 -96.147034,41.966267 -96.145576,41.924919 -96.159676,41.904163 -96.13533,41.862633 -96.076126,41.791481 -96.09903,41.752987 -96.09948,41.731575 -96.085266,41.704998 -96.12191,41.694923 -96.119972,41.684105 -96.099014,41.65469 -96.111015,41.599014 -96.080544,41.576008 -96.091644,41.563152 -96.085548,41.537529 -96.049881,41.524342 -96.004303,41.536671 -95.993675,41.528111 -95.996399,41.511524 -96.013161,41.493 -96.006607,41.48196 -95.952896,41.472393 -95.934776,41.462387 -95.939766,41.39481 -95.942604,41.34008 -95.888817,41.301392 -95.897301,41.286865 -95.910912,41.308472 -95.929939,41.302059 -95.91069,41.225246 -95.921959,41.207855 -95.91581,41.194065 -95.85891,41.180538 -95.859512,41.166866 -95.876396,41.164204 -95.857986,41.109188 -95.878517,41.065872 -95.859253,41.035004 -95.860611,41.002651 -95.837318,40.974258 -95.836258,40.901108 -95.834114,40.8703 -95.846153,40.848331 -95.851509,40.792599 -95.876335,40.730434 -95.767723,40.643116 -95.757271,40.620903 -95.767204,40.589046 -95.763138,40.549706 -95.736763,40.532372 -95.691795,40.524128 -95.687141,40.561169 -95.675423,40.565834 -95.662674,40.558727 -95.657791,40.530331 -95.6847,40.512203 -95.695091,40.485336 -95.636551,40.396389 -95.633919,40.358799 -95.615936,40.346497 -95.617668,40.331417 -95.645287,40.322346 -95.646561,40.309109 -95.595268,40.309776 -95.546875,40.266216 -95.476562,40.226856 -95.466377,40.213257 -95.460693,40.173996 -95.422218,40.131744 -95.392555,40.115417 -95.384285,40.095364 -95.403526,40.080379 -95.413506,40.048111 -95.390274,40.043751 -95.370987,40.028751 -95.34481,40.024975 -95.308441,39.999409 -95.329445,39.992596 -95.780434,39.993488 -96.000977,39.995159 -96.240311,39.994503 -96.453743,39.994171 -96.801117,39.994473 -96.907982,39.996151 -97.361595,39.997375 -97.816269,39.999718 -97.929268,39.99844 -98.26384,39.998421 -98.504143,39.997116 -98.720284,39.998447 -99.064384,39.998325 -99.177834,39.999565 -99.627472,40.002979 -100.180496,40.000473 -100.190697,40.00058 -100.734619,39.999168 -100.754425,40.000195 -101.321709,40.001823 -101.406952,40.001007Nebraska31W N CenNE199113.2031244.9571578385.0415427.0602363.0769439.0808946.0571600.0590216.086820.08988.0772813.029326.0249094.0108841.00.4870.513328831.0-79.763466,42.267269 -79.444252,42.419304 -79.355118,42.493404 -79.142471,42.574558 -79.043991,42.699188 -78.859444,42.792686 -78.93679,42.974174 -78.883034,43.022301 -78.925835,43.06657 -79.061348,43.090549 -79.039558,43.144684 -79.062469,43.268162 -78.464905,43.371937 -77.992271,43.365513 -77.745277,43.33511 -77.575989,43.241486 -77.377602,43.27565 -76.914841,43.27853 -76.737152,43.342667 -76.718796,43.323376 -76.619957,43.414085 -76.454994,43.500652 -76.223114,43.554085 -76.184921,43.633129 -76.206017,43.682632 -76.240341,43.835064 -76.194069,43.91243 -76.129417,43.932148 -76.134872,44.013172 -76.201889,44.065544 -76.297226,44.041962 -76.363213,44.098301 -75.848351,44.390209 -75.758972,44.517475 -75.329201,44.81057 -74.968819,44.948578 -74.736481,44.992867 -74.021935,44.990803 -73.345146,45.0061 -73.351181,44.981934 -73.336838,44.932564 -73.382729,44.847893 -73.369476,44.819077 -73.327209,44.799252 -73.373581,44.724194 -73.358574,44.680325 -73.37352,44.661232 -73.37056,44.634304 -73.382248,44.619762 -73.371719,44.579121 -73.348236,44.553925 -73.334877,44.544281 -73.293747,44.432804 -73.300423,44.405483 -73.330215,44.36734 -73.305756,44.26009 -73.377762,44.201195 -73.382492,44.172054 -73.408295,44.136173 -73.409187,44.106556 -73.435646,44.063843 -73.436432,44.045624 -73.408684,44.018166 -73.417839,43.98814 -73.405769,43.914749 -73.375557,43.885918 -73.385178,43.804447 -73.359436,43.778366 -73.357109,43.756496 -73.371429,43.714218 -73.423401,43.63205 -73.418762,43.582413 -73.388557,43.569077 -73.364128,43.614933 -73.303978,43.624649 -73.294548,43.619587 -73.282181,43.593121 -73.291847,43.574966 -73.260429,43.559315 -73.238838,43.512764 -73.250519,43.31078 -73.276451,42.940216 -73.280029,42.837025 -73.296616,42.803471 -73.269722,42.747402 -73.258507,42.745979 -73.351273,42.504673 -73.499275,42.07737 -73.484665,42.047337 -73.517578,41.665592 -73.530823,41.522652 -73.544724,41.365204 -73.55069,41.293526 -73.478554,41.210659 -73.725662,41.100258 -73.654152,41.01252 -73.65358,40.998295 -73.780464,40.886589 -73.796768,40.832233 -73.92028,40.802704 -74.006599,40.703899 -74.006676,40.737629 -73.977478,40.797386 -73.922813,40.885941 -73.909386,40.927216 -73.896568,40.960773 -73.897118,40.998432 -74.213448,41.123516 -74.242767,41.137531 -74.372383,41.195755 -74.700455,41.350479 -74.705666,41.374966 -74.740829,41.401543 -74.740433,41.421967 -74.755219,41.430054 -74.79319,41.429825 -74.864456,41.447063 -74.895668,41.44458 -74.898949,41.461803 -74.932953,41.484261 -74.972176,41.483513 -75.015274,41.539467 -75.025475,41.565712 -75.070251,41.604389 -75.072838,41.612991 -75.051712,41.637226 -75.065788,41.714748 -75.057358,41.72662 -75.061707,41.770172 -75.097542,41.778954 -75.097214,41.797119 -75.080231,41.81406 -75.118164,41.836899 -75.125137,41.849094 -75.148666,41.855701 -75.171669,41.867752 -75.254898,41.868786 -75.284073,41.947517 -75.324448,41.961189 -75.346039,41.99276 -75.383194,41.998272 -75.48011,41.996284 -76.105186,41.999424 -76.14537,42.00058 -76.564247,42.002937 -76.928711,42.00246 -76.968887,42.002907 -77.613136,41.99876 -77.745293,41.997265 -78.204529,41.998135 -78.305351,41.999355 -78.918777,41.999786 -79.059723,42.001099 -79.612595,42.00053 -79.761887,42.003052 -79.763466,42.267269-73.752632,40.594482 -73.928009,40.557545 -73.761818,40.618134 -73.765358,40.636829 -73.846481,40.652496 -73.916153,40.631027 -73.880234,40.590164 -74.004456,40.581154 -74.028137,40.639233 -73.956024,40.739281 -73.899437,40.797016 -73.754341,40.78875 -73.749901,40.844898 -73.598701,40.903046 -73.478523,40.879646 -73.431084,40.922459 -73.214966,40.900944 -73.141426,40.951298 -73.021721,40.968334 -72.632034,40.981186 -72.317505,41.149235 -72.281624,41.142437 -72.354752,41.110104 -72.416817,41.02594 -72.551437,40.96608 -72.605278,40.905201 -72.476578,40.920048 -72.293556,41.023918 -72.203827,41.035275 -72.077492,41.000473 -71.924187,41.08477 -71.870476,41.074406 -71.919189,41.030472 -72.521629,40.814941 -73.422958,40.661224 -73.752632,40.594482-73.293495,40.626282 -73.29158,40.632977 -73.240875,40.632977 -73.051468,40.675068 -72.877357,40.737247 -72.782654,40.764034 -72.757782,40.76786 -72.764481,40.758293 -72.956764,40.69994 -73.03138,40.671242 -73.249489,40.625324 -73.293495,40.626282-74.23735,40.505898 -74.23735,40.5378 -74.16671,40.624393 -74.07328,40.64946 -74.059608,40.601604 -74.123413,40.544636 -74.194054,40.510456 -74.23735,40.505898New York36Mid AtlNY120316.1716262.711.8235907E74548344.06746555.08739138.09496769.06763332.04467866.0881693.02113133.08498119.0636280.02104413.01035767.00.4790.5212564485.0-77.476082,39.719528 -78.096222,39.725368 -78.334816,39.724007 -78.385048,39.72366 -78.818016,39.72303 -78.930428,39.722252 -79.396851,39.719234 -79.481209,39.720196 -79.765358,39.721729 -79.918488,39.721588 -80.429283,39.719761 -80.524467,39.721127 -80.524857,39.958344 -80.525169,40.022751 -80.526253,40.162449 -80.523773,40.402966 -80.524567,40.478718 -80.522209,40.637138 -80.520515,40.854107 -80.521133,40.897209 -80.52314,41.12957 -80.520203,41.489235 -80.524132,41.495049 -80.52285,41.850719 -80.520798,41.986816 -79.763466,42.267269 -79.761887,42.003052 -79.612595,42.00053 -79.059723,42.001099 -78.918777,41.999786 -78.305351,41.999355 -78.204529,41.998135 -77.745293,41.997265 -77.613136,41.99876 -76.968887,42.002907 -76.928711,42.00246 -76.564247,42.002937 -76.14537,42.00058 -76.105186,41.999424 -75.48011,41.996284 -75.383194,41.998272 -75.346039,41.99276 -75.324448,41.961189 -75.284073,41.947517 -75.254898,41.868786 -75.171669,41.867752 -75.148666,41.855701 -75.125137,41.849094 -75.118164,41.836899 -75.080231,41.81406 -75.097214,41.797119 -75.097542,41.778954 -75.061707,41.770172 -75.057358,41.72662 -75.065788,41.714748 -75.051712,41.637226 -75.072838,41.612991 -75.070251,41.604389 -75.025475,41.565712 -75.015274,41.539467 -74.972176,41.483513 -74.932953,41.484261 -74.898949,41.461803 -74.895668,41.44458 -74.864456,41.447063 -74.79319,41.429825 -74.755219,41.430054 -74.740433,41.421967 -74.740829,41.401543 -74.705666,41.374966 -74.700455,41.350479 -74.792053,41.311871 -74.794533,41.29512 -74.825584,41.282612 -74.866798,41.226723 -74.863274,41.206676 -74.915154,41.14101 -74.950378,41.111759 -74.984978,41.099285 -74.989265,41.081665 -74.966675,41.082581 -75.001534,41.062389 -75.035637,41.028107 -75.070358,41.01062 -75.116997,41.000153 -75.139679,40.977432 -75.135902,40.962841 -75.080116,40.903252 -75.074066,40.884529 -75.05687,40.871948 -75.055,40.855576 -75.099922,40.839188 -75.089592,40.821293 -75.100922,40.791561 -75.130699,40.77261 -75.170692,40.774712 -75.194023,40.747906 -75.188133,40.723759 -75.205734,40.685963 -75.184441,40.669693 -75.209297,40.650639 -75.198318,40.634106 -75.200768,40.614643 -75.193893,40.583668 -75.197952,40.570583 -75.182663,40.556698 -75.124908,40.564697 -75.08017,40.545254 -75.064064,40.520901 -75.070503,40.45615 -75.057838,40.420067 -75.021652,40.401218 -75.000862,40.408516 -74.973228,40.404343 -74.950577,40.345367 -74.932892,40.333668 -74.921539,40.313927 -74.88105,40.299484 -74.843155,40.248344 -74.73922,40.177616 -74.725876,40.149197 -74.746689,40.124249 -74.829414,40.116051 -74.872314,40.077946 -74.956589,40.057903 -74.983871,40.033962 -75.046059,40.007523 -75.068428,39.985279 -75.084969,39.97562 -75.111343,39.976578 -75.140244,39.955807 -75.147537,39.934628 -75.136185,39.896774 -75.14328,39.881489 -75.185982,39.877293 -75.247368,39.850292 -75.254112,39.845425 -75.346298,39.848404 -75.42083,39.79887 -75.470345,39.826435 -75.583794,39.840008 -75.644341,39.838196 -75.695114,39.820347 -75.745934,39.774818 -75.775269,39.724442 -75.791435,39.723755 -76.139549,39.722122 -76.233444,39.721748 -76.570145,39.720161 -76.790794,39.721153 -76.997108,39.720791 -77.221344,39.720581 -77.464722,39.719978 -77.476082,39.719528Pennsylvania42Mid AtlPA116082.7371274.5841.1881643E73155989.04495966.05694265.06187378.04416669.03818385.0689656.0343724.05434532.0344795.01426851.0916786.00.4790.5212147891.0-73.530823,41.522652 -73.517578,41.665592 -73.484665,42.047337 -73.046082,42.036217 -73.006546,42.035915 -72.81691,42.033413 -72.818138,41.997089 -72.768036,42.002071 -72.756355,42.033752 -72.609993,42.030441 -72.608292,42.022705 -72.582375,42.021511 -72.571693,42.030029 -72.508041,42.03067 -72.136826,42.026306 -72.095451,42.025703 -71.802826,42.017879 -71.798317,42.004177 -71.788734,41.721504 -71.793091,41.641659 -71.79068,41.601208 -71.80323,41.41573 -71.846481,41.403755 -71.837357,41.341862 -71.848259,41.325249 -71.867165,41.32267 -72.281891,41.281048 -72.326828,41.289543 -72.378883,41.35825 -72.378624,41.278004 -72.52771,41.263603 -72.907188,41.269966 -73.104866,41.160942 -73.65358,40.998295 -73.654152,41.01252 -73.725662,41.100258 -73.478554,41.210659 -73.55069,41.293526 -73.544724,41.365204 -73.530823,41.522652Connecticut09N EngCT12549.571748.4953287116.0864493.01230479.01592873.01694243.01248972.01300825.0186944.065805.01692874.095819.0402039.0195403.00.4850.515446558.0-71.79068,41.601208 -71.793091,41.641659 -71.788734,41.721504 -71.798317,42.004177 -71.497925,42.009155 -71.379143,42.013615 -71.382904,41.979164 -71.384453,41.88834 -71.333588,41.895931 -71.342995,41.875683 -71.335045,41.857803 -71.345985,41.813061 -71.340302,41.784325 -71.319832,41.772095 -71.267136,41.749641 -71.229485,41.707592 -71.284508,41.679447 -71.367889,41.741249 -71.394081,41.761055 -71.369514,41.70319 -71.419746,41.652111 -71.427818,41.486588 -71.490387,41.391983 -71.722755,41.327164 -71.867165,41.32267 -71.848259,41.325249 -71.837357,41.341862 -71.846481,41.403755 -71.80323,41.41573 -71.79068,41.601208-71.199318,41.678398 -71.141724,41.65517 -71.117645,41.492958 -71.200447,41.463215 -71.199318,41.678398-71.269676,41.621166 -71.219955,41.63554 -71.239182,41.474747 -71.288513,41.483517 -71.350029,41.445755 -71.269676,41.621166Rhode Island44N EngRI2706.52538.0561003464.0258886.0377977.0481496.0521968.0377122.0375766.058141.012187.0487913.034690.0131213.075612.00.480.52128740.0-75.489639,39.714745 -75.476334,39.719971 -75.475128,39.741718 -75.460754,39.763248 -75.428009,39.77813 -75.412117,39.789658 -75.42083,39.79887 -75.346298,39.848404 -75.254112,39.845425 -75.247368,39.850292 -75.185982,39.877293 -75.14328,39.881489 -75.136185,39.896774 -75.147537,39.934628 -75.140244,39.955807 -75.111343,39.976578 -75.084969,39.97562 -75.068428,39.985279 -75.046059,40.007523 -74.983871,40.033962 -74.956589,40.057903 -74.872314,40.077946 -74.829414,40.116051 -74.746689,40.124249 -74.725876,40.149197 -74.73922,40.177616 -74.843155,40.248344 -74.88105,40.299484 -74.921539,40.313927 -74.932892,40.333668 -74.950577,40.345367 -74.973228,40.404343 -75.000862,40.408516 -75.021652,40.401218 -75.057838,40.420067 -75.070503,40.45615 -75.064064,40.520901 -75.08017,40.545254 -75.124908,40.564697 -75.182663,40.556698 -75.197952,40.570583 -75.193893,40.583668 -75.200768,40.614643 -75.198318,40.634106 -75.209297,40.650639 -75.184441,40.669693 -75.205734,40.685963 -75.188133,40.723759 -75.194023,40.747906 -75.170692,40.774712 -75.130699,40.77261 -75.100922,40.791561 -75.089592,40.821293 -75.099922,40.839188 -75.055,40.855576 -75.05687,40.871948 -75.074066,40.884529 -75.080116,40.903252 -75.135902,40.962841 -75.139679,40.977432 -75.116997,41.000153 -75.070358,41.01062 -75.035637,41.028107 -75.001534,41.062389 -74.966675,41.082581 -74.989265,41.081665 -74.984978,41.099285 -74.950378,41.111759 -74.915154,41.14101 -74.863274,41.206676 -74.866798,41.226723 -74.825584,41.282612 -74.794533,41.29512 -74.792053,41.311871 -74.700455,41.350479 -74.372383,41.195755 -74.242767,41.137531 -74.213448,41.123516 -73.897118,40.998432 -73.896568,40.960773 -73.909386,40.927216 -73.922813,40.885941 -73.977478,40.797386 -74.006676,40.737629 -74.006599,40.703899 -74.129471,40.646969 -74.115944,40.705524 -74.14727,40.675377 -74.208664,40.591084 -74.27932,40.514198 -74.269325,40.463642 -74.224915,40.443478 -74.122299,40.451351 -73.978859,40.323505 -74.03965,40.101727 -74.091843,40.115971 -74.08419,40.088066 -74.034714,40.091251 -74.050209,40.05674 -74.122597,40.051445 -74.077751,40.042156 -74.159645,39.878487 -74.171844,39.718155 -74.238091,39.623928 -74.323753,39.571968 -74.329262,39.52351 -74.412796,39.542503 -74.401527,39.50251 -74.460823,39.42664 -74.447906,39.380959 -74.65863,39.287136 -74.622925,39.281517 -74.624985,39.250713 -74.802681,39.02626 -74.879639,38.989731 -74.876686,38.95657 -74.968506,38.971626 -74.890587,39.113747 -74.917038,39.170525 -75.014786,39.19825 -75.120331,39.184578 -75.416031,39.374859 -75.553116,39.490402 -75.517044,39.566456 -75.570587,39.617622 -75.489639,39.714745New Jersey34Mid AtlNJ21208.3681128.5957484736.01962314.02687478.03622220.03862516.02817265.02723918.0451438.0266063.03741297.0218598.0846794.0460013.00.4840.5161052748.0-86.341629,38.177223 -86.364372,38.193226 -86.388329,38.194744 -86.387123,38.167957 -86.343147,38.155495 -86.335442,38.143963 -86.344063,38.134205 -86.3937,38.12323 -86.407204,38.108154 -86.452545,38.129692 -86.464867,38.129093 -86.474358,38.111645 -86.442543,38.088634 -86.44249,38.075932 -86.458389,38.059097 -86.503136,38.051586 -86.519112,38.046986 -86.527855,38.018631 -86.530869,37.987415 -86.516922,37.942181 -86.522758,37.927811 -86.541107,37.921455 -86.581802,37.925606 -86.598328,37.921013 -86.614799,37.857918 -86.645584,37.845943 -86.665939,37.847324 -86.670685,37.860584 -86.660324,37.902515 -86.668671,37.913139 -86.68914,37.911797 -86.728889,37.894566 -86.753838,37.898304 -86.802826,37.978745 -86.826317,37.991505 -86.863281,37.986866 -86.900085,37.953644 -86.93158,37.937988 -86.989037,37.930565 -87.013161,37.924713 -87.036484,37.907955 -87.071312,37.807087 -87.10643,37.784203 -87.131882,37.789688 -87.158081,37.82692 -87.175781,37.838593 -87.226761,37.849072 -87.272743,37.870773 -87.310555,37.893673 -87.387543,37.934925 -87.452278,37.936478 -87.504791,37.915585 -87.604309,37.971115 -87.627121,37.923412 -87.594704,37.890724 -87.59362,37.864868 -87.607574,37.843777 -87.65168,37.828133 -87.6847,37.83633 -87.679703,37.897007 -87.709389,37.899712 -87.72818,37.894543 -87.753761,37.898087 -87.823624,37.878212 -87.857162,37.890903 -87.89901,37.924553 -87.921867,37.919865 -87.934456,37.90416 -87.936821,37.875179 -87.910202,37.83857 -87.920143,37.809685 -87.939583,37.799507 -87.95871,37.77618 -88.011192,37.801308 -88.035576,37.805683 -88.086029,37.817612 -88.089264,37.831249 -88.042137,37.827522 -88.034241,37.843746 -88.075737,37.867809 -88.101456,37.895306 -88.100082,37.90617 -88.044868,37.896004 -88.026588,37.905758 -88.030441,37.917591 -88.084,37.92366 -88.078941,37.944 -88.064621,37.929783 -88.041771,37.934498 -88.042511,37.956264 -88.021706,37.975056 -88.029213,38.008236 -88.021698,38.033531 -88.041473,38.038303 -88.043091,38.04512 -88.034729,38.054085 -87.975296,38.073307 -87.964867,38.096748 -88.012329,38.092346 -88.018547,38.103302 -87.973503,38.13176 -87.950569,38.136913 -87.931992,38.157528 -87.932289,38.171131 -87.977928,38.200714 -87.986008,38.234814 -87.980019,38.241085 -87.925919,38.304771 -87.913651,38.302345 -87.914108,38.281048 -87.888466,38.300659 -87.883446,38.315552 -87.874039,38.316788 -87.863007,38.285362 -87.850082,38.286098 -87.834503,38.352524 -87.784019,38.378124 -87.748428,38.417965 -87.738953,38.44548 -87.758659,38.457096 -87.756096,38.466125 -87.692818,38.481533 -87.679909,38.504005 -87.653534,38.500443 -87.65139,38.515369 -87.672943,38.547424 -87.652855,38.573872 -87.640594,38.593178 -87.619827,38.599209 -87.628647,38.622917 -87.625191,38.642811 -87.588478,38.672169 -87.543892,38.685974 -87.508316,38.736633 -87.508003,38.769722 -87.519028,38.776699 -87.507889,38.795559 -87.550507,38.857891 -87.559059,38.869812 -87.5392,38.904861 -87.530182,38.931919 -87.53347,38.963703 -87.547905,38.977077 -87.591858,38.994083 -87.581749,38.995743 -87.58532,39.062435 -87.612007,39.084606 -87.630867,39.088974 -87.631668,39.103943 -87.662262,39.113468 -87.659454,39.130653 -87.670326,39.146679 -87.644257,39.168507 -87.607925,39.196068 -87.594208,39.198128 -87.588593,39.208466 -87.584564,39.248753 -87.606895,39.258163 -87.615799,39.281418 -87.610619,39.297661 -87.625237,39.307404 -87.597664,39.338268 -87.540215,39.350525 -87.538567,39.477448 -87.535576,39.609341 -87.535774,39.887302 -87.535339,40.166195 -87.535675,40.483246 -87.53717,40.49461 -87.532669,40.745411 -87.532021,41.00993 -87.531731,41.173756 -87.532448,41.301304 -87.532646,41.469715 -87.529861,41.723591 -87.463669,41.671589 -87.419266,41.676331 -87.441933,41.658077 -87.394707,41.634155 -87.233818,41.626152 -86.942429,41.716465 -86.834801,41.765465 -86.525162,41.765495 -86.234558,41.764816 -86.068298,41.76458 -85.799232,41.763485 -85.65947,41.762577 -85.297234,41.763531 -85.193169,41.762817 -84.82605,41.761826 -84.788521,41.76091 -84.790421,41.697445 -84.791412,41.530441 -84.791939,41.427849 -84.791016,41.283768 -84.791626,41.253082 -84.790565,40.988293 -84.791061,40.93766 -84.793098,40.728813 -84.793289,40.588692 -84.794594,40.353004 -84.795425,40.319454 -84.803604,40.013943 -84.80619,39.917118 -84.808739,39.73325 -84.811081,39.563999 -84.81115,39.513111 -84.812073,39.312279 -84.812119,39.302975 -84.811531,39.102528 -84.827911,39.10363 -84.886757,39.064987 -84.890045,39.050591 -84.876343,39.032837 -84.844276,39.005772 -84.834496,38.982716 -84.846367,38.954571 -84.875931,38.927544 -84.875305,38.90937 -84.859795,38.901981 -84.803276,38.897129 -84.788719,38.884323 -84.787498,38.866581 -84.824478,38.8344 -84.818832,38.793346 -84.975662,38.780579 -85.025124,38.764229 -85.068504,38.750362 -85.119705,38.714077 -85.16098,38.695114 -85.205208,38.695755 -85.271439,38.744316 -85.335052,38.736946 -85.418228,38.738358 -85.446732,38.724781 -85.45372,38.694614 -85.424446,38.584778 -85.417503,38.561413 -85.432411,38.536953 -85.466423,38.518112 -85.50724,38.471355 -85.612679,38.446606 -85.643631,38.383621 -85.654266,38.337685 -85.681427,38.300884 -85.746964,38.270245 -85.786247,38.282322 -85.806587,38.28611 -85.839943,38.276222 -85.852371,38.238491 -85.912109,38.179932 -85.914787,38.064804 -85.930908,38.033978 -85.958618,38.011768 -86.006699,38.001694 -86.031654,37.992878 -86.05275,37.966713 -86.105019,38.011265 -86.190651,38.017689 -86.252182,38.040653 -86.277725,38.058105 -86.291466,38.078423 -86.297699,38.150238 -86.341629,38.177223Indiana18E N CenIN92903.666882.3275544159.01480351.02065355.02688281.02855878.02023242.02040232.0332386.034117.02628695.0160143.0746029.0518252.00.4850.515891110.0-119.151466,38.411884 -119.317833,38.527195 -119.574684,38.703003 -119.888329,38.922344 -119.99424,38.994198 -119.994133,39.063583 -119.993523,39.106224 -119.994507,39.158806 -119.994278,39.311638 -119.99498,39.443592 -119.995132,39.720703 -119.995277,41.17767 -119.992401,41.989315 -119.350655,41.98896 -119.309906,41.989243 -118.184326,41.996742 -117.017906,41.994904 -116.991356,41.994904 -115.946617,41.994698 -115.023979,41.996597 -114.268616,41.99601 -114.038223,41.995476 -114.037308,40.997761 -114.03727,40.111111 -114.039009,39.90884 -114.039276,39.538742 -114.043449,38.679043 -114.044273,38.57114 -114.046463,38.137691 -114.046448,37.598507 -114.043137,36.996563 -114.042915,36.841873 -114.036598,36.216038 -114.044312,36.193993 -114.106979,36.121105 -114.128227,36.041744 -114.205971,36.017269 -114.232674,36.018345 -114.306786,36.062248 -114.303055,36.087124 -114.315292,36.111454 -114.34343,36.137497 -114.379997,36.151009 -114.443138,36.121071 -114.465805,36.124729 -114.529762,36.155109 -114.598122,36.138355 -114.620796,36.141987 -114.711945,36.105202 -114.727333,36.085983 -114.728149,36.058773 -114.716858,36.036777 -114.735397,35.987667 -114.698463,35.911629 -114.660789,35.880489 -114.661652,35.870975 -114.689056,35.847458 -114.681931,35.764717 -114.688011,35.732609 -114.664284,35.693111 -114.667679,35.65641 -114.653259,35.646595 -114.639061,35.611359 -114.652328,35.584843 -114.648987,35.546646 -114.67141,35.515762 -114.644592,35.450768 -114.588783,35.358383 -114.58709,35.304771 -114.558784,35.220184 -114.560242,35.174347 -114.571457,35.140068 -114.581818,35.132561 -114.625641,35.133907 -114.635109,35.118656 -114.594833,35.076057 -114.63298,35.041862 -114.62027,34.998913 -115.625359,35.795723 -115.884918,36.001259 -117.159523,36.959656 -117.837761,37.457367 -118.416466,37.886745 -119.151466,38.411884Nevada32MtnNV284397.1911971.0491201833.0307400.0466297.0611880.0589953.0475643.0443571.093635.016096.0607437.040083.0222792.067743.00.5090.491159997.0-114.046463,38.137691 -114.044273,38.57114 -114.043449,38.679043 -114.039276,39.538742 -114.039009,39.90884 -114.03727,40.111111 -114.037308,40.997761 -114.038223,41.995476 -112.988754,42.001228 -112.146324,41.99913 -112.099724,42.002377 -111.49382,42.00024 -111.047951,41.996265 -111.050323,41.578648 -111.050911,41.25848 -111.050285,40.996635 -110.062477,40.99794 -110.001457,40.997646 -109.047638,40.998474 -109.045479,40.665329 -109.050591,40.210545 -109.051888,39.65741 -109.052864,39.518196 -109.050751,39.360989 -109.053284,38.494663 -109.055199,38.24493 -109.042801,38.152943 -109.042542,37.887428 -109.044937,37.630829 -109.047821,36.996643 -109.996399,36.992065 -110.451546,36.991749 -110.483398,37.003929 -110.739372,37.002491 -111.355453,37.00172 -112.236511,36.995506 -112.541763,36.998009 -112.899216,36.996243 -114.043137,36.996563 -114.046448,37.598507 -114.046463,38.137691Utah49MtnUT212815.5467086.1521722850.0410862.0537273.0855759.0867091.0564185.0541226.0111197.016971.0736059.041389.0196289.0102232.00.4970.503304592.0-121.664154,38.169369 -121.781296,38.066856 -121.901695,38.07299 -121.983475,38.139584 -122.231163,38.071159 -122.271919,38.1595 -122.314674,38.206017 -122.337822,38.193665 -122.284271,38.159393 -122.27169,38.097565 -122.397377,38.161419 -122.428116,38.113888 -122.487846,38.113495 -122.527557,38.150753 -122.473457,38.085537 -122.505363,38.01873 -122.440697,37.983032 -122.488937,37.931843 -122.457176,37.834293 -122.514641,37.822178 -122.665298,37.906994 -122.690628,37.894466 -122.821091,38.007748 -122.920074,38.030697 -122.95549,37.990829 -123.009621,37.994537 -122.938164,38.153343 -122.993538,38.29731 -123.047684,38.294224 -123.12043,38.433685 -123.296822,38.547421 -123.522766,38.757748 -123.720772,38.924862 -123.68232,39.041901 -123.812592,39.347912 -123.753525,39.551994 -123.782402,39.687229 -123.836975,39.826523 -124.0065,39.998714 -124.093414,40.100513 -124.344147,40.252571 -124.334946,40.327698 -124.391472,40.435383 -124.108269,40.978363 -124.148521,41.128986 -124.070419,41.313988 -124.05677,41.458321 -124.143021,41.727356 -124.241905,41.77692 -124.206306,41.848492 -124.205246,41.997814 -123.817963,41.993114 -123.512032,41.997993 -123.22094,42.002346 -122.283577,42.0009 -121.440407,41.994457 -120.870827,41.987789 -119.992401,41.989315 -119.995277,41.17767 -119.995132,39.720703 -119.99498,39.443592 -119.994278,39.311638 -119.994507,39.158806 -119.993523,39.106224 -119.994133,39.063583 -119.99424,38.994198 -119.888329,38.922344 -119.574684,38.703003 -119.317833,38.527195 -119.151466,38.411884 -118.416466,37.886745 -117.837761,37.457367 -117.159523,36.959656 -115.884918,36.001259 -115.625359,35.795723 -114.62027,34.998913 -114.631477,34.99765 -114.620209,34.943607 -114.629677,34.919498 -114.626465,34.87553 -114.56942,34.831856 -114.541245,34.759953 -114.524757,34.748905 -114.497009,34.744751 -114.464844,34.709866 -114.421478,34.610886 -114.43351,34.598953 -114.408951,34.583714 -114.376038,34.536552 -114.383072,34.477074 -114.375717,34.459667 -114.331848,34.454861 -114.302078,34.435741 -114.282608,34.412056 -114.257057,34.405476 -114.181297,34.365192 -114.152634,34.336433 -114.133347,34.314533 -114.124451,34.272606 -114.149132,34.266964 -114.234993,34.186207 -114.284584,34.171215 -114.322014,34.141281 -114.409378,34.102638 -114.423241,34.078316 -114.428192,34.029827 -114.517418,33.965046 -114.524841,33.952396 -114.497398,33.925018 -114.520172,33.862907 -114.510933,33.841946 -114.520332,33.826012 -114.503769,33.771694 -114.509499,33.743179 -114.494888,33.708347 -114.535645,33.682713 -114.524475,33.665482 -114.526382,33.622112 -114.539459,33.580482 -114.528633,33.560047 -114.586273,33.509418 -114.597298,33.486099 -114.6203,33.468571 -114.629784,33.439396 -114.644302,33.419086 -114.724144,33.41103 -114.702812,33.352386 -114.734634,33.305676 -114.676903,33.267982 -114.68692,33.239223 -114.67926,33.22456 -114.67733,33.167213 -114.708672,33.122337 -114.710564,33.095345 -114.663162,33.038883 -114.644371,33.044373 -114.633179,33.033527 -114.609138,33.026962 -114.558304,33.036743 -114.519844,33.027668 -114.467606,32.977749 -114.475662,32.935867 -114.460655,32.845379 -114.525436,32.809868 -114.534294,32.788002 -114.529312,32.771366 -114.542404,32.771187 -114.542221,32.760704 -114.560799,32.760708 -114.559967,32.74889 -114.571426,32.748783 -114.571175,32.737392 -114.602737,32.73584 -114.603157,32.726238 -114.693253,32.741379 -114.711906,32.734966 -114.72126,32.72081 -116.106125,32.619408 -117.127235,32.535725 -117.198944,32.718391 -117.119743,32.602818 -117.123665,32.678879 -117.197906,32.738884 -117.247337,32.680042 -117.284454,32.851173 -117.253998,32.888126 -117.327568,33.111443 -117.409271,33.234055 -117.596451,33.394505 -118.10582,33.747547 -118.245712,33.773907 -118.285988,33.703888 -118.404182,33.738434 -118.428047,33.775433 -118.387268,33.812309 -118.411201,33.882954 -118.540939,34.037243 -118.787193,34.01825 -118.938431,34.040073 -119.215393,34.146336 -119.265823,34.238094 -119.482056,34.374866 -119.605331,34.416439 -119.868462,34.4048 -120.010521,34.46167 -120.139183,34.471912 -120.455208,34.442513 -120.508408,34.521389 -120.640289,34.572353 -120.600624,34.704041 -120.630669,34.759926 -120.607155,34.855637 -120.66494,34.903831 -120.643333,34.97266 -120.615761,35.074841 -120.637405,35.140053 -120.860329,35.209278 -120.882584,35.25943 -120.848984,35.364563 -120.874199,35.427792 -120.990929,35.456608 -121.145531,35.629353 -121.269226,35.663567 -121.328041,35.801067 -121.444496,35.879887 -121.688751,36.181171 -121.88121,36.30698 -121.954216,36.582813 -121.910355,36.640469 -121.866318,36.607754 -121.807503,36.648262 -121.76033,36.819035 -121.790649,36.850372 -121.882469,36.962147 -122.060257,36.947556 -122.172363,37.000919 -122.273552,37.106834 -122.413551,37.239182 -122.388168,37.35247 -122.440376,37.479542 -122.504593,37.522964 -122.497124,37.700321 -122.497131,37.783012 -122.399849,37.808697 -122.34539,37.725292 -122.36525,37.702518 -122.358589,37.609852 -122.088234,37.452602 -121.974266,37.460781 -122.091949,37.497375 -122.198654,37.735271 -122.311333,37.778534 -122.306473,37.891838 -122.370415,37.90942 -122.378601,37.973522 -122.294441,38.014874 -121.99955,38.057232 -121.697891,38.023575 -121.656685,38.086182 -121.575821,38.094219 -121.568481,38.063747 -121.54641,38.063553 -121.57177,38.11388 -121.553085,38.137444 -121.658516,38.096546 -121.664154,38.169369-119.866859,34.075226 -119.666962,34.021339 -119.571632,34.055779 -119.522141,34.034588 -119.538422,34.006493 -119.711578,33.965279 -119.846313,33.96841 -119.8881,34.004665 -119.873024,34.031872 -119.926727,34.059177 -119.866859,34.075226-120.16642,33.92416 -120.237579,34.010887 -120.045837,34.041103 -119.962425,33.947758 -120.108215,33.89481 -120.16642,33.92416-118.593864,33.480793 -118.361488,33.410984 -118.293686,33.334419 -118.303131,33.307465 -118.454475,33.324757 -118.480431,33.419525 -118.555519,33.434456 -118.593864,33.480793-118.350052,32.819157 -118.419197,32.806076 -118.510765,32.89204 -118.598602,33.020988 -118.570572,33.035938 -118.540672,32.98735 -118.350052,32.819157California06PacificCA403970.14320023.3682.9760021E77139394.01.0381206E71.4897627E71.4862394E71.1306576E79982242.02036025.0685797.01.3996309E7996502.03664771.01798201.00.5010.4993792553.0-83.27285,38.60918 -83.290138,38.596561 -83.306625,38.596241 -83.320419,38.606487 -83.330116,38.631912 -83.371513,38.654922 -83.453705,38.6637 -83.50016,38.690063 -83.526642,38.696037 -83.618462,38.677898 -83.633324,38.664898 -83.643272,38.635788 -83.655838,38.623806 -83.678612,38.620853 -83.712906,38.635479 -83.770302,38.650745 -83.790543,38.693771 -83.837608,38.711807 -83.857628,38.744846 -83.912613,38.757889 -83.962234,38.777576 -84.053871,38.763664 -84.088936,38.765434 -84.176819,38.788429 -84.228767,38.812622 -84.235359,38.874489 -84.261589,38.917412 -84.290199,38.944473 -84.313377,39.014011 -84.34584,39.03775 -84.391373,39.035683 -84.4198,39.047276 -84.425743,39.084663 -84.444977,39.111767 -84.492111,39.107304 -84.515358,39.094135 -84.593124,39.070206 -84.622704,39.074875 -84.667542,39.089565 -84.742928,39.142006 -84.789978,39.106976 -84.811531,39.102528 -84.812119,39.302975 -84.812073,39.312279 -84.81115,39.513111 -84.811081,39.563999 -84.808739,39.73325 -84.80619,39.917118 -84.803604,40.013943 -84.795425,40.319454 -84.794594,40.353004 -84.793289,40.588692 -84.793098,40.728813 -84.791061,40.93766 -84.790565,40.988293 -84.791626,41.253082 -84.791016,41.283768 -84.791939,41.427849 -84.791412,41.530441 -84.790421,41.697445 -84.384445,41.7071 -84.359261,41.707989 -83.868698,41.715942 -83.764015,41.716991 -83.482758,41.725082 -83.153824,41.626041 -83.003517,41.538143 -82.795921,41.537598 -82.784798,41.507366 -83.07048,41.456059 -82.909019,41.429417 -82.717041,41.450474 -82.548943,41.391289 -82.341499,41.431458 -82.015739,41.51527 -81.962044,41.501877 -81.738647,41.491104 -81.478424,41.631668 -81.362434,41.724239 -80.999954,41.850204 -80.520798,41.986816 -80.52285,41.850719 -80.524132,41.495049 -80.520203,41.489235 -80.52314,41.12957 -80.521133,40.897209 -80.520515,40.854107 -80.522209,40.637138 -80.574623,40.61591 -80.611755,40.619999 -80.637543,40.613918 -80.667931,40.582073 -80.668823,40.568214 -80.633644,40.539139 -80.625458,40.504398 -80.602036,40.480473 -80.628052,40.398159 -80.629448,40.388596 -80.609451,40.373207 -80.604721,40.306175 -80.614891,40.276432 -80.650314,40.245609 -80.678757,40.19408 -80.701088,40.16811 -80.702263,40.154018 -80.738434,40.035591 -80.739082,39.983402 -80.763252,39.946941 -80.759079,39.921192 -80.768318,39.913239 -80.796211,39.919765 -80.808029,39.915829 -80.812325,39.904827 -80.791039,39.872272 -80.798714,39.856647 -80.826103,39.839592 -80.81929,39.808926 -80.870911,39.759918 -80.856636,39.736259 -80.832481,39.718758 -80.83297,39.703323 -80.863594,39.680275 -80.872925,39.662334 -80.881287,39.624004 -80.912766,39.607277 -80.932785,39.606865 -80.983818,39.58173 -81.032738,39.544067 -81.037552,39.532589 -81.098412,39.496376 -81.117256,39.467709 -81.180733,39.437725 -81.20047,39.415821 -81.225113,39.408283 -81.237785,39.388397 -81.28418,39.386997 -81.338997,39.353569 -81.376076,39.345615 -81.434135,39.405949 -81.448112,39.410954 -81.465164,39.406784 -81.540802,39.352634 -81.557541,39.332581 -81.572838,39.265842 -81.667671,39.27042 -81.689674,39.260151 -81.698051,39.219944 -81.723221,39.213192 -81.759056,39.175674 -81.74485,39.125797 -81.753708,39.094643 -81.786507,39.077179 -81.81971,39.076939 -81.824417,39.066338 -81.813606,39.044029 -81.775826,39.01675 -81.781876,38.968449 -81.762444,38.930099 -81.783371,38.923481 -81.823921,38.948387 -81.841057,38.937809 -81.866943,38.885628 -81.892838,38.873371 -81.91539,38.884365 -81.931992,38.894661 -81.89875,38.932144 -81.927971,38.984192 -81.937874,38.991096 -81.975327,38.992928 -81.999817,39.015182 -82.043022,39.014061 -82.05864,38.988987 -82.085152,38.977119 -82.101341,38.952015 -82.13945,38.899319 -82.146233,38.838707 -82.197853,38.804539 -82.216881,38.778858 -82.184105,38.71022 -82.18911,38.677811 -82.17379,38.632107 -82.18438,38.594948 -82.213791,38.584751 -82.271027,38.594807 -82.2901,38.579998 -82.314369,38.465145 -82.329308,38.441868 -82.39489,38.428387 -82.415016,38.430309 -82.49511,38.40575 -82.547668,38.400429 -82.575539,38.40382 -82.586723,38.412437 -82.613861,38.472588 -82.669876,38.50206 -82.695694,38.539063 -82.742058,38.552986 -82.802475,38.557209 -82.827103,38.571583 -82.853966,38.60038 -82.860138,38.652317 -82.880119,38.683224 -82.873299,38.718929 -82.890419,38.742699 -82.92141,38.746338 -82.972588,38.719566 -83.027046,38.714436 -83.060982,38.68565 -83.111343,38.664757 -83.14325,38.619263 -83.182037,38.609764 -83.24511,38.624096 -83.27285,38.60918Ohio39E N CenOH105012.0732001.6179980887.02673875.03748665.04816445.05164442.03638837.03581182.0477421.098938.04524383.0324867.01206763.0830481.00.4830.5171727359.0-122.400749,48.225395 -122.461586,48.228542 -122.453156,48.128674 -122.360077,48.06028 -122.513245,48.134155 -122.540802,48.21064 -122.507858,48.253971 -122.403137,48.246773 -122.377052,48.289898 -122.563087,48.414421 -122.665749,48.413071 -122.698128,48.494503 -122.606895,48.518997 -122.52195,48.458576 -122.472557,48.462368 -122.504021,48.559616 -122.428268,48.599567 -122.486519,48.638741 -122.525276,48.711895 -122.515572,48.758091 -122.696114,48.803185 -122.752953,48.910156 -122.821129,48.950893 -122.742653,48.955975 -122.763832,48.999912 -120.855827,48.999973 -118.842453,49 -118.199234,49.000004 -117.4375,48.999996 -117.030975,49 -117.028046,48.83815 -117.037834,48.046284 -117.036438,47.971191 -117.040779,47.361542 -117.041382,47.258602 -117.039963,47.119423 -117.040932,46.536716 -117.037567,46.428097 -117.04348,46.388691 -117.063194,46.348816 -117.026985,46.335545 -117.000656,46.302567 -116.971741,46.249428 -116.966507,46.197674 -116.928444,46.165604 -116.960655,46.097397 -116.986229,46.078632 -116.956741,46.065811 -116.918152,45.9953 -117.480652,45.999966 -117.601807,46.000401 -117.981628,46.000019 -117.991478,46.001778 -118.981018,45.999203 -119.031105,45.966419 -119.13913,45.925854 -119.17762,45.922497 -119.301636,45.932808 -119.378311,45.917755 -119.437729,45.914413 -119.511086,45.899345 -119.588158,45.91346 -119.620979,45.899555 -119.677307,45.852684 -119.832413,45.841755 -119.868591,45.831844 -119.993172,45.811287 -120.067497,45.78035 -120.154755,45.76141 -120.206291,45.719933 -120.282478,45.716732 -120.442223,45.68943 -120.497993,45.695782 -120.568916,45.74107 -120.622589,45.743763 -120.657234,45.732765 -120.695824,45.710663 -120.860245,45.66534 -120.906761,45.635632 -120.947395,45.650471 -120.9673,45.645309 -121.032303,45.653 -121.07235,45.646767 -121.124023,45.607216 -121.173134,45.600674 -121.190872,45.6134 -121.202126,45.657444 -121.213089,45.665802 -121.275208,45.678497 -121.318794,45.6968 -121.366631,45.699844 -121.420845,45.690762 -121.441368,45.695126 -121.52787,45.719727 -121.705231,45.688953 -121.757507,45.689877 -121.809853,45.700844 -121.887093,45.677017 -121.925629,45.642189 -121.971466,45.635937 -121.998817,45.617985 -122.080841,45.590664 -122.243721,45.548271 -122.301949,45.543251 -122.355255,45.56633 -122.435951,45.564938 -122.564224,45.594978 -122.650002,45.606991 -122.695114,45.631207 -122.759331,45.649559 -122.771339,45.727848 -122.763077,45.760731 -122.786797,45.800507 -122.783302,45.850613 -122.78286,45.86805 -122.805008,45.904236 -122.806526,45.944054 -122.874199,46.027348 -122.898537,46.079494 -122.972946,46.110649 -123.04937,46.155903 -123.117325,46.179478 -123.174965,46.183754 -123.211205,46.170174 -123.247566,46.144188 -123.303482,46.144905 -123.469528,46.275192 -123.618828,46.258835 -123.724205,46.285595 -123.884514,46.240612 -123.992065,46.310452 -124.077843,46.267437 -124.064232,46.639927 -124.021767,46.583721 -124.011734,46.383858 -123.840187,46.404518 -123.939423,46.481293 -123.892296,46.511257 -123.956436,46.617405 -123.925194,46.673241 -123.839691,46.718468 -123.894264,46.745167 -124.041878,46.716038 -124.089767,46.729206 -124.100784,46.789654 -124.137543,46.900173 -124.104477,46.908337 -124.103455,46.874332 -124.027527,46.823952 -124.045647,46.88744 -123.811378,46.964149 -123.994583,46.976574 -124.033112,47.031223 -124.111076,47.042866 -124.160751,46.929802 -124.191444,47.167175 -124.230133,47.275265 -124.31813,47.349434 -124.347778,47.527107 -124.372299,47.638962 -124.482719,47.808456 -124.605362,47.87394 -124.731422,48.150204 -124.703857,48.232212 -124.71582,48.377773 -124.562202,48.357487 -123.989899,48.159355 -123.395561,48.111217 -123.121933,48.148918 -122.920311,48.094364 -122.923561,48.066982 -122.839828,48.13332 -122.767601,48.144176 -122.801651,48.085506 -122.660294,47.917343 -122.652321,47.864616 -122.744598,47.809174 -122.788528,47.802734 -122.808243,47.857262 -122.857529,47.827515 -122.898094,47.672703 -122.981476,47.605659 -123.112648,47.456459 -123.152794,47.348732 -123.009209,47.35321 -122.831993,47.438648 -123.034943,47.356236 -123.11142,47.371754 -123.02507,47.516121 -122.915703,47.614792 -122.751678,47.660873 -122.721794,47.757084 -122.609901,47.850193 -122.611954,47.936375 -122.530632,47.909645 -122.472343,47.755161 -122.620255,47.697151 -122.585213,47.571373 -122.554016,47.583687 -122.541458,47.522915 -122.50322,47.507397 -122.557205,47.398544 -122.542885,47.374107 -122.587013,47.33411 -122.551918,47.283512 -122.579292,47.251568 -122.610306,47.293579 -122.605675,47.270752 -122.698502,47.292267 -122.62751,47.398735 -122.636192,47.398762 -122.740303,47.341633 -122.768463,47.266338 -122.718559,47.223312 -122.759995,47.162678 -122.82386,47.235008 -122.772087,47.337543 -122.800934,47.360924 -122.87912,47.299416 -123.114174,47.208164 -123.079941,47.09024 -123.03009,47.100956 -122.921898,47.048145 -122.788803,47.126041 -122.726944,47.082623 -122.698837,47.098507 -122.590569,47.180241 -122.529526,47.287636 -122.545349,47.316456 -122.422859,47.259651 -122.391609,47.277901 -122.440369,47.301304 -122.419601,47.319023 -122.324142,47.344501 -122.318504,47.390293 -122.391396,47.510422 -122.380981,47.595589 -122.413574,47.66436 -122.39325,47.774357 -122.301674,47.950397 -122.228874,47.969296 -122.215744,48.007622 -122.367073,48.128323 -122.400749,48.225395-122.96669,48.443974 -123.093941,48.479603 -123.158424,48.522022 -123.168602,48.562744 -123.139755,48.623825 -123.102425,48.608555 -123.010803,48.557655 -123.007408,48.533897 -122.96669,48.527111 -123.020981,48.513538 -123.017593,48.489784 -122.96669,48.443974-122.731903,48.276825 -122.66433,48.396954 -122.603104,48.404964 -122.524475,48.32122 -122.527374,48.283688 -122.622231,48.296528 -122.730751,48.225594 -122.60965,48.206501 -122.544937,48.077042 -122.494949,48.094254 -122.378738,48.03233 -122.354149,47.964069 -122.385712,47.904732 -122.441536,47.91824 -122.47036,47.987694 -122.543701,47.967716 -122.607361,48.031616 -122.694275,48.181366 -122.767494,48.218998 -122.731903,48.276825Washington53PacificWA172447.20512226.634866692.01264934.01872431.02413747.02452945.01830031.01700872.0282240.0104403.02293961.0139216.0637487.0302635.00.4960.504736744.0 \ No newline at end of file + + + + + -124.731422,24.955967 + -66.969849,49.371735 + + + + + + + + + + + + + -88.071564,37.51099 -88.087883,37.476273 -88.311707,37.442852 + -88.359177,37.409309 -88.419853,37.420292 -88.467644,37.400757 + -88.511322,37.296852 -88.501427,37.257782 -88.450699,37.205669 + -88.422516,37.15691 -88.45047,37.098671 -88.476799,37.072144 -88.4907,37.06818 + -88.517273,37.06477 -88.559273,37.072815 -88.61422,37.109047 -88.68837,37.13541 + -88.739113,37.141182 -88.746506,37.152107 -88.863289,37.202194 + -88.932503,37.218407 -88.993172,37.220036 -89.065033,37.18586 + -89.116821,37.112137 -89.146347,37.093185 -89.169548,37.064236 + -89.174332,37.025711 -89.150246,36.99844 -89.12986,36.988113 + -89.193512,36.986771 -89.210052,37.028973 -89.237679,37.041733 + -89.264053,37.087124 -89.284233,37.091244 -89.303291,37.085384 + -89.3097,37.060909 -89.264244,37.027733 -89.262001,37.008686 + -89.282768,36.999207 -89.310982,37.009682 -89.38295,37.049213 + -89.37999,37.099083 -89.423798,37.137203 -89.440521,37.165318 + -89.468216,37.224266 -89.465309,37.253731 -89.489594,37.256001 + -89.513885,37.276402 -89.513885,37.304962 -89.50058,37.329441 + -89.468742,37.339409 -89.435738,37.355717 -89.427574,37.411018 + -89.453621,37.453186 -89.494781,37.491726 -89.524971,37.571957 + -89.513367,37.615929 -89.51918,37.650375 -89.513374,37.67984 + -89.521523,37.694798 -89.581436,37.706104 -89.666458,37.745453 + -89.675858,37.78397 -89.691055,37.804794 -89.728447,37.840992 + -89.851715,37.905064 -89.861046,37.905487 -89.866814,37.891876 + -89.900551,37.875904 -89.937874,37.878044 -89.978912,37.911884 + -89.958229,37.963634 -90.010811,37.969318 -90.041924,37.993206 + -90.119339,38.032272 -90.134712,38.053951 -90.207527,38.088905 + -90.254059,38.122169 -90.289635,38.166817 -90.336716,38.188713 + -90.364769,38.234299 -90.369347,38.323559 -90.358688,38.36533 + -90.339607,38.390846 -90.301842,38.427357 -90.265785,38.518688 + -90.26123,38.532768 -90.240944,38.562805 -90.183708,38.610271 + -90.183578,38.658772 -90.20224,38.700363 -90.196571,38.723965 + -90.163399,38.773098 -90.135178,38.785484 -90.121727,38.80051 + -90.113121,38.830467 -90.132812,38.853031 -90.243927,38.914509 + -90.278931,38.924717 -90.31974,38.924908 -90.413071,38.96233 + -90.469841,38.959179 -90.530426,38.891609 -90.570328,38.871326 + -90.627213,38.880795 -90.668877,38.935253 -90.70607,39.037792 + -90.707588,39.058178 -90.690399,39.0937 -90.716736,39.144211 + -90.718193,39.195873 -90.732338,39.224747 -90.738083,39.24781 + -90.779343,39.296803 -90.850494,39.350452 -90.947891,39.400585 + -91.036339,39.444412 -91.064384,39.473984 -91.093613,39.528927 + -91.156189,39.552593 -91.203247,39.600021 -91.317665,39.685917 + -91.367088,39.72464 -91.373421,39.761272 -91.381714,39.803772 + -91.449188,39.863049 -91.450989,39.885242 -91.434052,39.901829 + -91.430389,39.921837 -91.447243,39.946064 -91.487289,40.005753 + -91.504005,40.066711 -91.516129,40.134544 -91.506546,40.200459 + -91.498932,40.251377 -91.486694,40.309624 -91.448593,40.371902 + -91.418816,40.386875 -91.385757,40.392361 -91.372757,40.402988 + -91.385399,40.44725 -91.374794,40.503654 -91.382103,40.528496 + -91.412872,40.547993 -91.411118,40.572971 -91.37561,40.603439 + -91.262062,40.639545 -91.214912,40.643818 -91.162498,40.656311 + -91.129158,40.682148 -91.119987,40.705402 -91.092751,40.761547 + -91.088905,40.833729 -91.04921,40.879585 -90.983276,40.923927 + -90.960709,40.950504 -90.954651,41.070362 -90.957787,41.104359 + -90.990341,41.144371 -91.018257,41.165825 -91.05632,41.176258 + -91.101524,41.231522 -91.102348,41.267818 -91.07328,41.334896 + -91.055786,41.401379 -91.027489,41.423508 -91.000694,41.431084 + -90.949654,41.421234 -90.844139,41.444622 -90.7799,41.449821 + -90.708214,41.450062 -90.658791,41.462318 -90.6007,41.509586 -90.54084,41.52597 + -90.454994,41.527546 -90.434967,41.543579 -90.423004,41.567272 + -90.348366,41.586849 -90.339348,41.602798 -90.341133,41.64909 + -90.326027,41.722736 -90.304886,41.756466 -90.25531,41.781738 + -90.195839,41.806137 -90.154518,41.930775 -90.14267,41.983963 + -90.150536,42.033428 -90.168098,42.061043 -90.166649,42.103745 + -90.176086,42.120502 -90.191574,42.122688 -90.230934,42.159721 + -90.323601,42.197319 -90.367729,42.210209 -90.407173,42.242645 + -90.417984,42.263924 -90.427681,42.340633 -90.441597,42.360073 + -90.491043,42.388783 -90.563583,42.421837 -90.605827,42.46056 + -90.648346,42.475643 -90.651772,42.494698 -90.638329,42.509361 + -90.419975,42.508362 -89.923569,42.504108 -89.834618,42.50346 + -89.400497,42.49749 -89.359444,42.497906 -88.939079,42.490864 + -88.764954,42.490906 -88.70652,42.489655 -88.297897,42.49197 + -88.194702,42.489613 -87.79731,42.489132 -87.836945,42.314213 + -87.760239,42.156456 -87.670547,42.059822 -87.612625,41.847332 + -87.529861,41.723591 -87.532646,41.469715 -87.532448,41.301304 + -87.531731,41.173756 -87.532021,41.00993 -87.532669,40.745411 -87.53717,40.49461 + -87.535675,40.483246 -87.535339,40.166195 -87.535774,39.887302 + -87.535576,39.609341 -87.538567,39.477448 -87.540215,39.350525 + -87.597664,39.338268 -87.625237,39.307404 -87.610619,39.297661 + -87.615799,39.281418 -87.606895,39.258163 -87.584564,39.248753 + -87.588593,39.208466 -87.594208,39.198128 -87.607925,39.196068 + -87.644257,39.168507 -87.670326,39.146679 -87.659454,39.130653 + -87.662262,39.113468 -87.631668,39.103943 -87.630867,39.088974 + -87.612007,39.084606 -87.58532,39.062435 -87.581749,38.995743 + -87.591858,38.994083 -87.547905,38.977077 -87.53347,38.963703 + -87.530182,38.931919 -87.5392,38.904861 -87.559059,38.869812 + -87.550507,38.857891 -87.507889,38.795559 -87.519028,38.776699 + -87.508003,38.769722 -87.508316,38.736633 -87.543892,38.685974 + -87.588478,38.672169 -87.625191,38.642811 -87.628647,38.622917 + -87.619827,38.599209 -87.640594,38.593178 -87.652855,38.573872 + -87.672943,38.547424 -87.65139,38.515369 -87.653534,38.500443 + -87.679909,38.504005 -87.692818,38.481533 -87.756096,38.466125 + -87.758659,38.457096 -87.738953,38.44548 -87.748428,38.417965 + -87.784019,38.378124 -87.834503,38.352524 -87.850082,38.286098 + -87.863007,38.285362 -87.874039,38.316788 -87.883446,38.315552 + -87.888466,38.300659 -87.914108,38.281048 -87.913651,38.302345 + -87.925919,38.304771 -87.980019,38.241085 -87.986008,38.234814 + -87.977928,38.200714 -87.932289,38.171131 -87.931992,38.157528 + -87.950569,38.136913 -87.973503,38.13176 -88.018547,38.103302 + -88.012329,38.092346 -87.964867,38.096748 -87.975296,38.073307 + -88.034729,38.054085 -88.043091,38.04512 -88.041473,38.038303 + -88.021698,38.033531 -88.029213,38.008236 -88.021706,37.975056 + -88.042511,37.956264 -88.041771,37.934498 -88.064621,37.929783 -88.078941,37.944 + -88.084,37.92366 -88.030441,37.917591 -88.026588,37.905758 -88.044868,37.896004 + -88.100082,37.90617 -88.101456,37.895306 -88.075737,37.867809 + -88.034241,37.843746 -88.042137,37.827522 -88.089264,37.831249 + -88.086029,37.817612 -88.035576,37.805683 -88.072472,37.735401 + -88.133636,37.700745 -88.15937,37.660686 -88.157631,37.628479 + -88.134171,37.583572 -88.071564,37.51099 + + + + + + + + Illinois + 17 + E N Cen + IL + 143986.61 + 1993.335 + 1.1430602E7 + 2924880.0 + 4202240.0 + 5552233.0 + 5878369.0 + 4199206.0 + 3741715.0 + 652603.0 + 538071.0 + 5417967.0 + 385040.0 + 1360159.0 + 828906.0 + 0.486 + 0.514 + 1747776.0 + + + + + + + + + + + + -77.008232,38.966557 -76.911209,38.889988 -77.045448,38.78812 + -77.035248,38.813915 -77.045189,38.829365 -77.040405,38.838413 + -77.039078,38.862431 -77.067886,38.886101 -77.078949,38.9156 -77.122627,38.93206 + -77.042389,38.993431 -77.008232,38.966557 + + + + + + + + District of Columbia + 11 + S Atl + DC + 159.055 + 17.991 + 606900.0 + 122087.0 + 249634.0 + 282970.0 + 323930.0 + 229975.0 + 106694.0 + 36621.0 + 111422.0 + 303994.0 + 23442.0 + 65498.0 + 22407.0 + 0.466 + 0.534 + 72696.0 + + + + + + + + + + + + -75.70742,38.557476 -75.71106,38.649551 -75.724937,38.83017 -75.752922,39.141548 + -75.761658,39.247753 -75.764664,39.295849 -75.772697,39.383007 + -75.791435,39.723755 -75.775269,39.724442 -75.745934,39.774818 + -75.695114,39.820347 -75.644341,39.838196 -75.583794,39.840008 + -75.470345,39.826435 -75.42083,39.79887 -75.412117,39.789658 -75.428009,39.77813 + -75.460754,39.763248 -75.475128,39.741718 -75.476334,39.719971 + -75.489639,39.714745 -75.610725,39.612793 -75.562996,39.566723 + -75.590187,39.463768 -75.515572,39.36694 -75.402481,39.257637 + -75.397728,39.073036 -75.324852,39.012386 -75.307899,38.945911 + -75.190941,38.80867 -75.083138,38.799812 -75.045998,38.44949 + -75.068298,38.449963 -75.093094,38.450451 -75.350204,38.455208 + -75.69915,38.463066 -75.70742,38.557476 + + + + + + + + Delaware + 10 + S Atl + DE + 5062.456 + 1385.022 + 666168.0 + 175867.0 + 247497.0 + 322968.0 + 343200.0 + 247566.0 + 258087.0 + 42968.0 + 8069.0 + 335147.0 + 13945.0 + 87973.0 + 44140.0 + 0.485 + 0.515 + 102776.0 + + + + + + + + + + + + -79.231903,38.480373 -79.272598,38.437183 -79.317238,38.41251 + -79.48658,38.462025 -79.536743,38.553688 -79.642632,38.592239 + -79.669655,38.55006 -79.66584,38.52066 -79.692879,38.500237 -79.684319,38.430119 + -79.720261,38.394566 -79.733055,38.351719 -79.764229,38.35387 + -79.800552,38.314205 -79.803001,38.298748 -79.786736,38.284996 + -79.793846,38.268543 -79.831375,38.250156 -79.916382,38.179142 + -79.910561,38.162483 -79.935547,38.121185 -79.928513,38.103188 + -79.957733,38.067242 -79.966713,38.038498 -80.000717,37.989746 + -80.055023,37.955524 -80.106705,37.914536 -80.118721,37.891155 + -80.160217,37.877106 -80.172432,37.860062 -80.171806,37.842846 + -80.223946,37.802242 -80.220757,37.778736 -80.254898,37.757111 + -80.250244,37.725929 -80.303322,37.682549 -80.295914,37.671379 + -80.305077,37.652122 -80.301147,37.640423 -80.254639,37.640579 + -80.219147,37.624142 -80.246613,37.596771 -80.31694,37.566593 + -80.326126,37.533276 -80.308525,37.528244 -80.280952,37.536133 + -80.288139,37.511024 -80.347733,37.491051 -80.352379,37.475975 + -80.388527,37.465599 -80.425598,37.43478 -80.474983,37.422695 + -80.487015,37.433735 -80.488098,37.460472 -80.50898,37.474922 + -80.542969,37.469086 -80.597702,37.44593 -80.705414,37.388256 + -80.729942,37.392597 -80.746529,37.387615 -80.747894,37.37896 + -80.763199,37.371292 -80.770226,37.386074 -80.799446,37.391632 + -80.799812,37.412941 -80.850723,37.42334 -80.877556,37.388577 + -80.848618,37.350822 -80.855629,37.339291 -80.93438,37.30125 + -80.968086,37.291672 -80.978729,37.296356 -80.98613,37.306122 + -81.025124,37.285942 -81.140923,37.274807 -81.223114,37.240097 + -81.31205,37.293591 -81.358971,37.338837 -81.391121,37.311039 + -81.403519,37.282509 -81.475533,37.254307 -81.495705,37.252735 + -81.505707,37.234257 -81.556824,37.206238 -81.666054,37.204796 + -81.701897,37.235321 -81.738625,37.250378 -81.752022,37.272144 + -81.792824,37.287041 -81.815544,37.279427 -81.83905,37.285393 + -81.858841,37.306919 -81.863976,37.325344 -81.897316,37.340477 + -81.926979,37.371616 -81.920891,37.415405 -81.988358,37.466476 + -81.976578,37.482796 -81.948151,37.492916 -81.935608,37.506535 + -81.959732,37.531063 -81.97673,37.543144 -82.026505,37.530411 + -82.049286,37.551346 -82.055817,37.525234 -82.084541,37.548203 + -82.142654,37.557346 -82.146667,37.565815 -82.137619,37.56979 + -82.131927,37.590431 -82.159454,37.593464 -82.185692,37.640564 + -82.205582,37.623913 -82.23851,37.656673 -82.295761,37.668957 + -82.329536,37.744072 -82.319633,37.758327 -82.339981,37.784302 + -82.405937,37.811623 -82.421638,37.872261 -82.437737,37.89476 + -82.500336,37.922169 -82.493523,37.942421 -82.480301,37.954304 + -82.475906,37.975815 -82.524803,38.015572 -82.59333,38.109875 + -82.646248,38.146244 -82.647278,38.16935 -82.613884,38.178009 + -82.606766,38.193741 -82.616348,38.238728 -82.589233,38.245304 + -82.574699,38.25589 -82.58017,38.292427 -82.572418,38.307728 + -82.598358,38.368382 -82.586723,38.412437 -82.575539,38.40382 + -82.547668,38.400429 -82.49511,38.40575 -82.415016,38.430309 -82.39489,38.428387 + -82.329308,38.441868 -82.314369,38.465145 -82.2901,38.579998 + -82.271027,38.594807 -82.213791,38.584751 -82.18438,38.594948 + -82.17379,38.632107 -82.18911,38.677811 -82.184105,38.71022 -82.216881,38.778858 + -82.197853,38.804539 -82.146233,38.838707 -82.13945,38.899319 + -82.101341,38.952015 -82.085152,38.977119 -82.05864,38.988987 + -82.043022,39.014061 -81.999817,39.015182 -81.975327,38.992928 + -81.937874,38.991096 -81.927971,38.984192 -81.89875,38.932144 + -81.931992,38.894661 -81.91539,38.884365 -81.892838,38.873371 + -81.866943,38.885628 -81.841057,38.937809 -81.823921,38.948387 + -81.783371,38.923481 -81.762444,38.930099 -81.781876,38.968449 + -81.775826,39.01675 -81.813606,39.044029 -81.824417,39.066338 + -81.81971,39.076939 -81.786507,39.077179 -81.753708,39.094643 + -81.74485,39.125797 -81.759056,39.175674 -81.723221,39.213192 + -81.698051,39.219944 -81.689674,39.260151 -81.667671,39.27042 + -81.572838,39.265842 -81.557541,39.332581 -81.540802,39.352634 + -81.465164,39.406784 -81.448112,39.410954 -81.434135,39.405949 + -81.376076,39.345615 -81.338997,39.353569 -81.28418,39.386997 + -81.237785,39.388397 -81.225113,39.408283 -81.20047,39.415821 + -81.180733,39.437725 -81.117256,39.467709 -81.098412,39.496376 + -81.037552,39.532589 -81.032738,39.544067 -80.983818,39.58173 + -80.932785,39.606865 -80.912766,39.607277 -80.881287,39.624004 + -80.872925,39.662334 -80.863594,39.680275 -80.83297,39.703323 + -80.832481,39.718758 -80.856636,39.736259 -80.870911,39.759918 + -80.81929,39.808926 -80.826103,39.839592 -80.798714,39.856647 + -80.791039,39.872272 -80.812325,39.904827 -80.808029,39.915829 + -80.796211,39.919765 -80.768318,39.913239 -80.759079,39.921192 + -80.763252,39.946941 -80.739082,39.983402 -80.738434,40.035591 + -80.702263,40.154018 -80.701088,40.16811 -80.678757,40.19408 + -80.650314,40.245609 -80.614891,40.276432 -80.604721,40.306175 + -80.609451,40.373207 -80.629448,40.388596 -80.628052,40.398159 + -80.602036,40.480473 -80.625458,40.504398 -80.633644,40.539139 + -80.668823,40.568214 -80.667931,40.582073 -80.637543,40.613918 + -80.611755,40.619999 -80.574623,40.61591 -80.522209,40.637138 + -80.524567,40.478718 -80.523773,40.402966 -80.526253,40.162449 + -80.525169,40.022751 -80.524857,39.958344 -80.524467,39.721127 + -80.429283,39.719761 -79.918488,39.721588 -79.765358,39.721729 + -79.481209,39.720196 -79.490089,39.197289 -79.461418,39.213158 + -79.449509,39.211987 -79.385078,39.269196 -79.346428,39.291988 + -79.295509,39.300438 -79.28006,39.325142 -79.260406,39.348541 + -79.163261,39.393398 -79.158371,39.413864 -79.131645,39.416935 + -79.104324,39.447212 -79.096962,39.464535 -79.104843,39.470779 + -79.070877,39.470757 -79.064659,39.485733 -79.049103,39.483723 + -78.970688,39.438431 -78.955643,39.460365 -78.871071,39.5257 + -78.838371,39.563229 -78.806808,39.566734 -78.82267,39.585609 + -78.798729,39.61533 -78.798409,39.630745 -78.772964,39.644154 + -78.767876,39.626526 -78.732643,39.626877 -78.730759,39.621456 + -78.736511,39.608704 -78.774002,39.601528 -78.761711,39.581703 + -78.732979,39.576553 -78.716576,39.559483 -78.666687,39.536839 + -78.649406,39.537907 -78.637344,39.529858 -78.60463,39.535591 + -78.564453,39.520981 -78.509048,39.525066 -78.481544,39.519844 + -78.456078,39.533642 -78.446136,39.548225 -78.421089,39.549316 + -78.462082,39.580742 -78.450897,39.592613 -78.404266,39.587521 + -78.432159,39.620861 -78.384903,39.614403 -78.377937,39.631226 + -78.357048,39.632278 -78.34819,39.640499 -78.273285,39.618317 + -78.257996,39.641075 -78.2295,39.658474 -78.227867,39.673897 + -78.204575,39.675846 -78.183243,39.69455 -78.094612,39.675507 + -78.026695,39.622772 -77.995483,39.598873 -77.964516,39.611229 + -77.945259,39.585915 -77.935738,39.591843 -77.947823,39.614918 + -77.938889,39.618122 -77.903534,39.596027 -77.891022,39.600605 + -77.888718,39.616474 -77.855804,39.60207 -77.84269,39.605278 + -77.840149,39.572643 -77.853241,39.565357 -77.885452,39.564354 + -77.890198,39.557995 -77.869843,39.545815 -77.864914,39.514553 + -77.844131,39.531834 -77.835747,39.525513 -77.829208,39.529156 + -77.825546,39.51194 -77.84816,39.501907 -77.82547,39.493809 -77.771835,39.498016 + -77.799782,39.480728 -77.785393,39.459003 -77.804474,39.463039 + -77.796082,39.450817 -77.804977,39.439919 -77.802559,39.432217 + -77.757271,39.425064 -77.741119,39.403339 -77.737518,39.396095 + -77.756508,39.378376 -77.745735,39.360271 -77.754585,39.338493 + -77.750374,39.326717 -77.727753,39.317696 -77.759743,39.284542 + -77.768517,39.246449 -77.805733,39.196503 -77.820328,39.141621 + -77.830963,39.132076 -78.033607,39.265537 -78.229782,39.391014 + -78.277153,39.423367 -78.347816,39.456902 -78.350502,39.38073 + -78.365746,39.361588 -78.3442,39.350857 -78.341118,39.341358 + -78.413818,39.257439 -78.399399,39.24485 -78.42334,39.21204 -78.424339,39.197525 + -78.402634,39.17049 -78.43084,39.148521 -78.44825,39.118931 -78.485519,39.111839 + -78.501869,39.093578 -78.536919,39.057026 -78.564445,39.035038 + -78.549469,39.02338 -78.553474,39.013828 -78.598961,38.967197 + -78.631111,38.979603 -78.647232,38.950443 -78.680489,38.921574 + -78.719246,38.904881 -78.724403,38.930214 -78.737991,38.929173 + -78.749512,38.911381 -78.793312,38.880108 -78.816116,38.833633 + -78.866814,38.76329 -78.987701,38.846649 -79.033989,38.799847 + -79.055046,38.79052 -79.056801,38.76194 -79.087479,38.707153 + -79.088791,38.659088 -79.121307,38.663651 -79.12767,38.658127 + -79.231903,38.480373 + + + + + + + + West Virginia + 54 + S Atl + WV + 62384.2 + 375.199 + 1793477.0 + 500259.0 + 688557.0 + 861536.0 + 931941.0 + 661702.0 + 493164.0 + 106918.0 + 7237.0 + 671085.0 + 71142.0 + 205950.0 + 124172.0 + 0.48 + 0.52 + 317564.0 + + + + + + + + + + + + -75.71106,38.649551 -75.70742,38.557476 -75.69915,38.463066 -75.350204,38.455208 + -75.093094,38.450451 -75.155243,38.369625 -75.150986,38.273766 + -75.262863,38.201416 -75.373428,38.06892 -75.37278,38.016712 + -75.626434,37.996418 -75.648216,37.970131 -75.86573,37.979656 + -75.769554,38.097248 -75.897797,38.174934 -75.838074,38.231594 + -75.861671,38.240044 -75.794174,38.263603 -75.894958,38.258873 + -75.872437,38.357231 -75.886826,38.375462 -75.949928,38.282055 + -75.995285,38.282524 -76.020805,38.321896 -76.06546,38.258934 + -76.294273,38.436935 -76.291985,38.478729 -76.192215,38.543343 + -76.251053,38.595081 -76.031937,38.571922 -76.028061,38.622005 + -76.046921,38.591858 -76.075996,38.610783 -76.124039,38.707977 + -76.174042,38.709095 -76.223312,38.762791 -76.26712,38.769886 + -76.337624,38.679375 -76.350533,38.699024 -76.272415,38.834 -76.195175,38.765255 + -76.165855,38.788609 -76.114372,38.885456 -76.075867,38.889549 + -76.102898,38.898018 -76.095497,38.948132 -76.113869,38.920715 + -76.199669,38.973354 -76.111282,39.118595 -76.221771,39.092918 + -76.238892,39.130825 -76.218437,39.204853 -76.112373,39.321297 + -76.037422,39.358368 -75.849739,39.379139 -75.978798,39.39455 + -75.952637,39.47118 -75.974762,39.524021 -76.03141,39.569927 + -76.078506,39.542362 -76.154526,39.401936 -76.226662,39.374889 + -76.364029,39.39328 -76.39904,39.231144 -76.531296,39.242619 + -76.604027,39.259354 -76.565132,39.231445 -76.576981,39.19812 + -76.60733,39.180984 -76.595139,39.158688 -76.563919,39.196266 + -76.423935,39.118355 -76.472038,38.908237 -76.549126,38.758972 + -76.525253,38.709633 -76.508896,38.522099 -76.385811,38.391281 + -76.405457,38.34602 -76.421463,38.320499 -76.471924,38.335659 + -76.520081,38.410137 -76.647255,38.450424 -76.343781,38.213062 + -76.33017,38.045704 -76.577271,38.222637 -76.760239,38.23428 + -76.864182,38.391346 -76.908577,38.29985 -76.97303,38.331028 + -77.002396,38.426853 -77.220924,38.390663 -77.255875,38.413593 + -77.277756,38.487099 -77.12999,38.648125 -77.125114,38.677799 + -77.093147,38.703983 -77.081879,38.715279 -77.057121,38.712021 + -77.046471,38.718781 -77.045448,38.78812 -76.911209,38.889988 + -77.008232,38.966557 -77.042389,38.993431 -77.122627,38.93206 + -77.152046,38.964779 -77.243729,38.97588 -77.255989,39.027573 -77.3246,39.062588 + -77.346519,39.068512 -77.433037,39.066776 -77.459694,39.080837 + -77.479248,39.103958 -77.513046,39.116653 -77.516617,39.157444 + -77.478638,39.176933 -77.461998,39.218632 -77.464958,39.229057 + -77.494064,39.249912 -77.542191,39.26894 -77.568962,39.298393 + -77.616524,39.299717 -77.679588,39.31868 -77.727753,39.317696 + -77.750374,39.326717 -77.754585,39.338493 -77.745735,39.360271 + -77.756508,39.378376 -77.737518,39.396095 -77.741119,39.403339 + -77.757271,39.425064 -77.802559,39.432217 -77.804977,39.439919 + -77.796082,39.450817 -77.804474,39.463039 -77.785393,39.459003 + -77.799782,39.480728 -77.771835,39.498016 -77.82547,39.493809 + -77.84816,39.501907 -77.825546,39.51194 -77.829208,39.529156 + -77.835747,39.525513 -77.844131,39.531834 -77.864914,39.514553 + -77.869843,39.545815 -77.890198,39.557995 -77.885452,39.564354 + -77.853241,39.565357 -77.840149,39.572643 -77.84269,39.605278 + -77.855804,39.60207 -77.888718,39.616474 -77.891022,39.600605 + -77.903534,39.596027 -77.938889,39.618122 -77.947823,39.614918 + -77.935738,39.591843 -77.945259,39.585915 -77.964516,39.611229 + -77.995483,39.598873 -78.026695,39.622772 -78.094612,39.675507 + -78.183243,39.69455 -78.204575,39.675846 -78.227867,39.673897 -78.2295,39.658474 + -78.257996,39.641075 -78.273285,39.618317 -78.34819,39.640499 + -78.357048,39.632278 -78.377937,39.631226 -78.384903,39.614403 + -78.432159,39.620861 -78.404266,39.587521 -78.450897,39.592613 + -78.462082,39.580742 -78.421089,39.549316 -78.446136,39.548225 + -78.456078,39.533642 -78.481544,39.519844 -78.509048,39.525066 + -78.564453,39.520981 -78.60463,39.535591 -78.637344,39.529858 + -78.649406,39.537907 -78.666687,39.536839 -78.716576,39.559483 + -78.732979,39.576553 -78.761711,39.581703 -78.774002,39.601528 + -78.736511,39.608704 -78.730759,39.621456 -78.732643,39.626877 + -78.767876,39.626526 -78.772964,39.644154 -78.798409,39.630745 + -78.798729,39.61533 -78.82267,39.585609 -78.806808,39.566734 + -78.838371,39.563229 -78.871071,39.5257 -78.955643,39.460365 + -78.970688,39.438431 -79.049103,39.483723 -79.064659,39.485733 + -79.070877,39.470757 -79.104843,39.470779 -79.096962,39.464535 + -79.104324,39.447212 -79.131645,39.416935 -79.158371,39.413864 + -79.163261,39.393398 -79.260406,39.348541 -79.28006,39.325142 + -79.295509,39.300438 -79.346428,39.291988 -79.385078,39.269196 + -79.449509,39.211987 -79.461418,39.213158 -79.490089,39.197289 + -79.481209,39.720196 -79.396851,39.719234 -78.930428,39.722252 + -78.818016,39.72303 -78.385048,39.72366 -78.334816,39.724007 + -78.096222,39.725368 -77.476082,39.719528 -77.464722,39.719978 + -77.221344,39.720581 -76.997108,39.720791 -76.790794,39.721153 + -76.570145,39.720161 -76.233444,39.721748 -76.139549,39.722122 + -75.791435,39.723755 -75.772697,39.383007 -75.764664,39.295849 + -75.761658,39.247753 -75.752922,39.141548 -75.724937,38.83017 + -75.71106,38.649551 + + + + + + + + + + + -76.293129,38.907722 -76.29451,38.967567 -76.339066,38.956661 + -76.314453,38.941925 -76.322632,38.912086 -76.342545,38.924057 + -76.329712,38.875889 -76.375565,38.854103 -76.356796,38.958187 + -76.299812,39.040596 -76.248146,38.978897 -76.246735,38.92358 + -76.273514,38.94923 -76.293129,38.907722 + + + + + + + + + + + -75.068298,38.449963 -75.045998,38.44949 -75.087692,38.322945 + -75.068298,38.449963 + + + + + + + + + + + -75.270721,38.027588 -75.244461,38.037903 -75.209755,38.094177 + -75.164742,38.204845 -75.094398,38.320202 -75.17318,38.124187 + -75.242584,38.028526 -75.270721,38.027588 + + + + + + + + Maryland + 24 + S Atl + MD + 25316.345 + 6188.794 + 4781468.0 + 1245814.0 + 1748991.0 + 2318671.0 + 2462797.0 + 1783061.0 + 1732837.0 + 376449.0 + 202169.0 + 2481342.0 + 111536.0 + 586994.0 + 260308.0 + 0.485 + 0.515 + 684773.0 + + + + + + + + + + + + -102.043999,37.64146 -102.041557,37.386261 -102.036758,36.988972 + -102.997223,36.998505 -103.077377,36.999741 -103.993111,36.994446 + -105.145615,36.993183 -105.212532,36.99258 -105.712891,36.994541 + -105.991425,36.992275 -106.471588,36.991493 -106.860657,36.989491 + -106.889778,36.999073 -107.410217,36.99752 -107.471855,36.998772 + -108.371834,36.999474 -109.047821,36.996643 -109.044937,37.630829 + -109.042542,37.887428 -109.042801,38.152943 -109.055199,38.24493 + -109.053284,38.494663 -109.050751,39.360989 -109.052864,39.518196 + -109.051888,39.65741 -109.050591,40.210545 -109.045479,40.665329 + -109.047638,40.998474 -107.918037,41.00341 -107.303436,41.000168 + -106.864838,40.998489 -106.328545,41.001316 -106.202896,41.000111 + -105.278259,40.996365 -104.933968,40.994305 -104.051201,41.003227 + -103.571823,40.999664 -103.382469,41.000332 -102.651802,40.998135 + -102.620789,41.000225 -102.047279,40.998077 -102.046532,40.743134 + -102.04557,40.697323 -102.047157,40.431084 -102.047081,40.342651 + -102.051071,39.998928 -102.048981,39.568699 -102.04834,39.562809 + -102.047417,39.126751 -102.048515,39.036999 -102.047112,38.692539 + -102.047127,38.615486 -102.04509,38.263329 -102.045601,38.253807 + -102.043518,37.734386 -102.043999,37.64146 + + + + + + + + Colorado + 08 + Mtn + CO + 268659.501 + 960.364 + 3294394.0 + 854214.0 + 1282489.0 + 1631295.0 + 1663099.0 + 1233023.0 + 1216639.0 + 210274.0 + 46983.0 + 1633281.0 + 99438.0 + 421079.0 + 181760.0 + 0.495 + 0.505 + 512677.0 + + + + + + + + + + + + -86.510674,36.655033 -86.770538,36.652058 -87.068184,36.650768 + -87.112701,36.651264 -87.346603,36.649231 -87.64064,36.645168 + -87.693512,36.64444 -87.853516,36.641472 -87.870689,36.669373 + -88.071312,36.67963 -88.041061,36.582668 -88.035049,36.538147 + -88.042732,36.496517 -88.495979,36.49815 -88.512634,36.499489 + -88.810661,36.498985 -88.826302,36.499847 -88.830315,36.499794 + -89.346596,36.502548 -89.414711,36.502617 -89.418137,36.510563 + -89.373878,36.616188 -89.363548,36.625702 -89.342323,36.628849 + -89.322273,36.622017 -89.283424,36.575249 -89.241615,36.569267 + -89.21006,36.581894 -89.200119,36.631298 -89.177094,36.653004 + -89.167831,36.67157 -89.197495,36.713367 -89.196297,36.727421 -89.1772,36.760925 + -89.151367,36.759041 -89.125473,36.768032 -89.125839,36.792412 + -89.164375,36.80442 -89.173462,36.829384 -89.166496,36.843422 + -89.129585,36.86644 -89.104965,36.953869 -89.107147,36.977451 + -89.12986,36.988113 -89.150246,36.99844 -89.174332,37.025711 + -89.169548,37.064236 -89.146347,37.093185 -89.116821,37.112137 + -89.065033,37.18586 -88.993172,37.220036 -88.932503,37.218407 + -88.863289,37.202194 -88.746506,37.152107 -88.739113,37.141182 + -88.68837,37.13541 -88.61422,37.109047 -88.559273,37.072815 -88.517273,37.06477 + -88.4907,37.06818 -88.476799,37.072144 -88.45047,37.098671 -88.422516,37.15691 + -88.450699,37.205669 -88.501427,37.257782 -88.511322,37.296852 + -88.467644,37.400757 -88.419853,37.420292 -88.359177,37.409309 + -88.311707,37.442852 -88.087883,37.476273 -88.071564,37.51099 + -88.134171,37.583572 -88.157631,37.628479 -88.15937,37.660686 + -88.133636,37.700745 -88.072472,37.735401 -88.035576,37.805683 + -88.011192,37.801308 -87.95871,37.77618 -87.939583,37.799507 + -87.920143,37.809685 -87.910202,37.83857 -87.936821,37.875179 + -87.934456,37.90416 -87.921867,37.919865 -87.89901,37.924553 + -87.857162,37.890903 -87.823624,37.878212 -87.753761,37.898087 + -87.72818,37.894543 -87.709389,37.899712 -87.679703,37.897007 -87.6847,37.83633 + -87.65168,37.828133 -87.607574,37.843777 -87.59362,37.864868 + -87.594704,37.890724 -87.627121,37.923412 -87.604309,37.971115 + -87.504791,37.915585 -87.452278,37.936478 -87.387543,37.934925 + -87.310555,37.893673 -87.272743,37.870773 -87.226761,37.849072 + -87.175781,37.838593 -87.158081,37.82692 -87.131882,37.789688 + -87.10643,37.784203 -87.071312,37.807087 -87.036484,37.907955 + -87.013161,37.924713 -86.989037,37.930565 -86.93158,37.937988 + -86.900085,37.953644 -86.863281,37.986866 -86.826317,37.991505 + -86.802826,37.978745 -86.753838,37.898304 -86.728889,37.894566 + -86.68914,37.911797 -86.668671,37.913139 -86.660324,37.902515 + -86.670685,37.860584 -86.665939,37.847324 -86.645584,37.845943 + -86.614799,37.857918 -86.598328,37.921013 -86.581802,37.925606 + -86.541107,37.921455 -86.522758,37.927811 -86.516922,37.942181 + -86.530869,37.987415 -86.527855,38.018631 -86.519112,38.046986 + -86.503136,38.051586 -86.458389,38.059097 -86.44249,38.075932 + -86.442543,38.088634 -86.474358,38.111645 -86.464867,38.129093 + -86.452545,38.129692 -86.407204,38.108154 -86.3937,38.12323 -86.344063,38.134205 + -86.335442,38.143963 -86.343147,38.155495 -86.387123,38.167957 + -86.388329,38.194744 -86.364372,38.193226 -86.341629,38.177223 + -86.297699,38.150238 -86.291466,38.078423 -86.277725,38.058105 + -86.252182,38.040653 -86.190651,38.017689 -86.105019,38.011265 + -86.05275,37.966713 -86.031654,37.992878 -86.006699,38.001694 + -85.958618,38.011768 -85.930908,38.033978 -85.914787,38.064804 + -85.912109,38.179932 -85.852371,38.238491 -85.839943,38.276222 + -85.806587,38.28611 -85.786247,38.282322 -85.746964,38.270245 + -85.681427,38.300884 -85.654266,38.337685 -85.643631,38.383621 + -85.612679,38.446606 -85.50724,38.471355 -85.466423,38.518112 + -85.432411,38.536953 -85.417503,38.561413 -85.424446,38.584778 + -85.45372,38.694614 -85.446732,38.724781 -85.418228,38.738358 + -85.335052,38.736946 -85.271439,38.744316 -85.205208,38.695755 + -85.16098,38.695114 -85.119705,38.714077 -85.068504,38.750362 + -85.025124,38.764229 -84.975662,38.780579 -84.818832,38.793346 + -84.824478,38.8344 -84.787498,38.866581 -84.788719,38.884323 + -84.803276,38.897129 -84.859795,38.901981 -84.875305,38.90937 + -84.875931,38.927544 -84.846367,38.954571 -84.834496,38.982716 + -84.844276,39.005772 -84.876343,39.032837 -84.890045,39.050591 + -84.886757,39.064987 -84.827911,39.10363 -84.811531,39.102528 + -84.789978,39.106976 -84.742928,39.142006 -84.667542,39.089565 + -84.622704,39.074875 -84.593124,39.070206 -84.515358,39.094135 + -84.492111,39.107304 -84.444977,39.111767 -84.425743,39.084663 + -84.4198,39.047276 -84.391373,39.035683 -84.34584,39.03775 -84.313377,39.014011 + -84.290199,38.944473 -84.261589,38.917412 -84.235359,38.874489 + -84.228767,38.812622 -84.176819,38.788429 -84.088936,38.765434 + -84.053871,38.763664 -83.962234,38.777576 -83.912613,38.757889 + -83.857628,38.744846 -83.837608,38.711807 -83.790543,38.693771 + -83.770302,38.650745 -83.712906,38.635479 -83.678612,38.620853 + -83.655838,38.623806 -83.643272,38.635788 -83.633324,38.664898 + -83.618462,38.677898 -83.526642,38.696037 -83.50016,38.690063 -83.453705,38.6637 + -83.371513,38.654922 -83.330116,38.631912 -83.320419,38.606487 + -83.306625,38.596241 -83.290138,38.596561 -83.27285,38.60918 -83.24511,38.624096 + -83.182037,38.609764 -83.14325,38.619263 -83.111343,38.664757 + -83.060982,38.68565 -83.027046,38.714436 -82.972588,38.719566 + -82.92141,38.746338 -82.890419,38.742699 -82.873299,38.718929 + -82.880119,38.683224 -82.860138,38.652317 -82.853966,38.60038 + -82.827103,38.571583 -82.802475,38.557209 -82.742058,38.552986 + -82.695694,38.539063 -82.669876,38.50206 -82.613861,38.472588 + -82.586723,38.412437 -82.598358,38.368382 -82.572418,38.307728 + -82.58017,38.292427 -82.574699,38.25589 -82.589233,38.245304 + -82.616348,38.238728 -82.606766,38.193741 -82.613884,38.178009 + -82.647278,38.16935 -82.646248,38.146244 -82.59333,38.109875 + -82.524803,38.015572 -82.475906,37.975815 -82.480301,37.954304 + -82.493523,37.942421 -82.500336,37.922169 -82.437737,37.89476 + -82.421638,37.872261 -82.405937,37.811623 -82.339981,37.784302 + -82.319633,37.758327 -82.329536,37.744072 -82.295761,37.668957 + -82.23851,37.656673 -82.205582,37.623913 -82.185692,37.640564 + -82.159454,37.593464 -82.131927,37.590431 -82.137619,37.56979 + -82.146667,37.565815 -82.142654,37.557346 -82.084541,37.548203 + -82.055817,37.525234 -82.049286,37.551346 -82.026505,37.530411 + -81.97673,37.543144 -81.959732,37.531063 -82.289085,37.304752 + -82.353973,37.26041 -82.406013,37.250595 -82.550163,37.199272 + -82.568146,37.193813 -82.719215,37.109917 -82.721497,37.093018 + -82.70929,37.075382 -82.720177,37.06583 -82.723717,37.033894 -82.81234,37.005505 + -82.866676,36.974491 -82.860748,36.932068 -82.878159,36.8936 -82.95092,36.863987 + -83.046745,36.858704 -83.068062,36.850906 -83.128326,36.779064 + -83.124496,36.75108 -83.138618,36.739971 -83.203758,36.734173 + -83.32148,36.709446 -83.385948,36.688133 -83.404243,36.672241 + -83.460312,36.661747 -83.530983,36.661396 -83.646889,36.616894 + -83.675262,36.598621 -83.695694,36.584167 -83.935677,36.591209 + -84.006821,36.592007 -84.254555,36.595371 -84.256844,36.595417 + -84.781929,36.605003 -84.791115,36.605366 -84.998512,36.620914 + -85.272537,36.625553 -85.300133,36.626038 -85.437408,36.618137 + -85.7855,36.626629 -85.980629,36.63306 -86.199005,36.643246 -86.415451,36.65089 + -86.510674,36.655033 + + + + + + + + + + + -89.533195,36.498108 -89.566986,36.518738 -89.568153,36.541409 + -89.556137,36.557743 -89.530365,36.564556 -89.493126,36.559116 + -89.481674,36.547775 -89.471375,36.525555 -89.481682,36.504696 + -89.475822,36.498547 -89.533195,36.498108 + + + + + + + + Kentucky + 21 + E S Cen + KY + 103961.904 + 1772.542 + 4551524.0 + 1237346.0 + 1718663.0 + 2195130.0 + 2356394.0 + 1656590.0 + 1502949.0 + 273091.0 + 48158.0 + 1970934.0 + 148125.0 + 556744.0 + 361621.0 + 0.482 + 0.518 + 646517.0 + + + + + + + + + + + + -95.071693,37.001408 -95.406372,37.000538 -95.525764,37.000938 + -95.785492,36.998035 -95.957703,37.000011 -96.005791,36.998264 + -96.518898,37.000538 -96.74839,37.000134 -97.137375,36.999779 + -97.46508,36.996441 -97.803917,36.998543 -98.104187,36.998646 + -98.346794,36.999035 -98.539864,36.998348 -98.999138,36.998043 + -99.43708,36.99453 -99.544243,36.995434 -99.998848,36.995388 + -100.088158,36.997623 -100.633812,36.997807 -100.950142,36.996635 + -101.071159,36.99744 -101.553238,36.996666 -102.024071,36.988853 + -102.036758,36.988972 -102.041557,37.386261 -102.043999,37.64146 + -102.043518,37.734386 -102.045601,38.253807 -102.04509,38.263329 + -102.047127,38.615486 -102.047112,38.692539 -102.048515,39.036999 + -102.047417,39.126751 -102.04834,39.562809 -102.048981,39.568699 + -102.051071,39.998928 -101.406952,40.001007 -101.321709,40.001823 + -100.754425,40.000195 -100.734619,39.999168 -100.190697,40.00058 + -100.180496,40.000473 -99.627472,40.002979 -99.177834,39.999565 + -99.064384,39.998325 -98.720284,39.998447 -98.504143,39.997116 + -98.26384,39.998421 -97.929268,39.99844 -97.816269,39.999718 + -97.361595,39.997375 -96.907982,39.996151 -96.801117,39.994473 + -96.453743,39.994171 -96.240311,39.994503 -96.000977,39.995159 + -95.780434,39.993488 -95.329445,39.992596 -95.308441,39.999409 + -95.240707,39.942108 -95.207344,39.938179 -95.19371,39.910183 + -95.150299,39.908058 -95.100471,39.869869 -95.062996,39.866543 + -95.033257,39.87785 -95.021523,39.896984 -94.964775,39.900829 + -94.937996,39.896088 -94.936264,39.849392 -94.92363,39.833138 + -94.898079,39.828339 -94.88826,39.817406 -94.899078,39.793781 + -94.933022,39.78278 -94.934868,39.775433 -94.921555,39.757847 + -94.876823,39.760685 -94.870941,39.754124 -94.877617,39.739311 + -94.905434,39.726761 -94.930611,39.727032 -94.952896,39.736507 + -94.96154,39.732044 -94.978325,39.684994 -95.028046,39.661919 + -95.055771,39.625694 -95.053368,39.586781 -95.108742,39.560696 + -95.101791,39.532852 -95.047356,39.485332 -95.040268,39.462944 + -94.985962,39.439465 -94.958252,39.411449 -94.925507,39.381268 + -94.898041,39.380642 -94.911102,39.340122 -94.90744,39.323029 + -94.880867,39.286045 -94.833237,39.261765 -94.82058,39.211002 -94.78981,39.19688 + -94.730293,39.171253 -94.675278,39.174919 -94.646172,39.158424 + -94.612419,39.151646 -94.60099,39.141224 -94.607903,39.112797 + -94.609047,39.044662 -94.612236,38.837101 -94.612915,38.737213 + -94.618484,38.471458 -94.61882,38.392014 -94.617096,38.055752 + -94.616501,38.030354 -94.619057,37.679825 -94.618759,37.65033 + -94.61853,37.360714 -94.618744,37.327679 -94.620438,37.060085 + -94.620155,36.996983 -95.032509,37.00071 -95.071693,37.001408 + + + + + + + + Kansas + 20 + W N Cen + KS + 211921.641 + 1188.865 + 2477574.0 + 658600.0 + 944726.0 + 1214645.0 + 1262929.0 + 907383.0 + 928575.0 + 135598.0 + 7585.0 + 1172214.0 + 57772.0 + 346339.0 + 166429.0 + 0.49 + 0.51 + 453411.0 + + + + + + + + + + + + -79.144325,36.546059 -79.217064,36.549782 -79.5103,36.547657 -79.717445,36.54789 + -80.024055,36.545025 -80.048096,36.547134 -80.43531,36.551044 + -80.611053,36.557297 -80.838158,36.563438 -80.903442,36.565212 + -81.345299,36.572865 -81.669998,36.589649 -81.652435,36.607555 + -81.829056,36.611481 -81.918449,36.613495 -81.929459,36.595837 + -82.154327,36.595043 -82.216805,36.593967 -82.296997,36.591698 + -82.610962,36.591446 -82.849937,36.590946 -82.986809,36.591198 + -83.211029,36.588001 -83.248489,36.589848 -83.275131,36.60038 + -83.464302,36.598755 -83.675262,36.598621 -83.646889,36.616894 + -83.530983,36.661396 -83.460312,36.661747 -83.404243,36.672241 + -83.385948,36.688133 -83.32148,36.709446 -83.203758,36.734173 + -83.138618,36.739971 -83.124496,36.75108 -83.128326,36.779064 + -83.068062,36.850906 -83.046745,36.858704 -82.95092,36.863987 -82.878159,36.8936 + -82.860748,36.932068 -82.866676,36.974491 -82.81234,37.005505 + -82.723717,37.033894 -82.720177,37.06583 -82.70929,37.075382 + -82.721497,37.093018 -82.719215,37.109917 -82.568146,37.193813 + -82.550163,37.199272 -82.406013,37.250595 -82.353973,37.26041 + -82.289085,37.304752 -81.959732,37.531063 -81.935608,37.506535 + -81.948151,37.492916 -81.976578,37.482796 -81.988358,37.466476 + -81.920891,37.415405 -81.926979,37.371616 -81.897316,37.340477 + -81.863976,37.325344 -81.858841,37.306919 -81.83905,37.285393 + -81.815544,37.279427 -81.792824,37.287041 -81.752022,37.272144 + -81.738625,37.250378 -81.701897,37.235321 -81.666054,37.204796 + -81.556824,37.206238 -81.505707,37.234257 -81.495705,37.252735 + -81.475533,37.254307 -81.403519,37.282509 -81.391121,37.311039 + -81.358971,37.338837 -81.31205,37.293591 -81.223114,37.240097 + -81.140923,37.274807 -81.025124,37.285942 -80.98613,37.306122 + -80.978729,37.296356 -80.968086,37.291672 -80.93438,37.30125 + -80.855629,37.339291 -80.848618,37.350822 -80.877556,37.388577 + -80.850723,37.42334 -80.799812,37.412941 -80.799446,37.391632 + -80.770226,37.386074 -80.763199,37.371292 -80.747894,37.37896 + -80.746529,37.387615 -80.729942,37.392597 -80.705414,37.388256 + -80.597702,37.44593 -80.542969,37.469086 -80.50898,37.474922 + -80.488098,37.460472 -80.487015,37.433735 -80.474983,37.422695 + -80.425598,37.43478 -80.388527,37.465599 -80.352379,37.475975 + -80.347733,37.491051 -80.288139,37.511024 -80.280952,37.536133 + -80.308525,37.528244 -80.326126,37.533276 -80.31694,37.566593 + -80.246613,37.596771 -80.219147,37.624142 -80.254639,37.640579 + -80.301147,37.640423 -80.305077,37.652122 -80.295914,37.671379 + -80.303322,37.682549 -80.250244,37.725929 -80.254898,37.757111 + -80.220757,37.778736 -80.223946,37.802242 -80.171806,37.842846 + -80.172432,37.860062 -80.160217,37.877106 -80.118721,37.891155 + -80.106705,37.914536 -80.055023,37.955524 -80.000717,37.989746 + -79.966713,38.038498 -79.957733,38.067242 -79.928513,38.103188 + -79.935547,38.121185 -79.910561,38.162483 -79.916382,38.179142 + -79.831375,38.250156 -79.793846,38.268543 -79.786736,38.284996 + -79.803001,38.298748 -79.800552,38.314205 -79.764229,38.35387 + -79.733055,38.351719 -79.720261,38.394566 -79.684319,38.430119 + -79.692879,38.500237 -79.66584,38.52066 -79.669655,38.55006 -79.642632,38.592239 + -79.536743,38.553688 -79.48658,38.462025 -79.317238,38.41251 + -79.272598,38.437183 -79.231903,38.480373 -79.12767,38.658127 + -79.121307,38.663651 -79.088791,38.659088 -79.087479,38.707153 + -79.056801,38.76194 -79.055046,38.79052 -79.033989,38.799847 + -78.987701,38.846649 -78.866814,38.76329 -78.816116,38.833633 + -78.793312,38.880108 -78.749512,38.911381 -78.737991,38.929173 + -78.724403,38.930214 -78.719246,38.904881 -78.680489,38.921574 + -78.647232,38.950443 -78.631111,38.979603 -78.598961,38.967197 + -78.553474,39.013828 -78.549469,39.02338 -78.564445,39.035038 + -78.536919,39.057026 -78.501869,39.093578 -78.485519,39.111839 + -78.44825,39.118931 -78.43084,39.148521 -78.402634,39.17049 -78.424339,39.197525 + -78.42334,39.21204 -78.399399,39.24485 -78.413818,39.257439 -78.341118,39.341358 + -78.3442,39.350857 -78.365746,39.361588 -78.350502,39.38073 -78.347816,39.456902 + -78.277153,39.423367 -78.229782,39.391014 -78.033607,39.265537 + -77.830963,39.132076 -77.820328,39.141621 -77.805733,39.196503 + -77.768517,39.246449 -77.759743,39.284542 -77.727753,39.317696 + -77.679588,39.31868 -77.616524,39.299717 -77.568962,39.298393 + -77.542191,39.26894 -77.494064,39.249912 -77.464958,39.229057 + -77.461998,39.218632 -77.478638,39.176933 -77.516617,39.157444 + -77.513046,39.116653 -77.479248,39.103958 -77.459694,39.080837 + -77.433037,39.066776 -77.346519,39.068512 -77.3246,39.062588 + -77.255989,39.027573 -77.243729,38.97588 -77.152046,38.964779 + -77.122627,38.93206 -77.078949,38.9156 -77.067886,38.886101 -77.039078,38.862431 + -77.040405,38.838413 -77.045189,38.829365 -77.035248,38.813915 + -77.045448,38.78812 -77.046471,38.718781 -77.057121,38.712021 + -77.081879,38.715279 -77.093147,38.703983 -77.125114,38.677799 + -77.12999,38.648125 -77.197258,38.6227 -77.194748,38.660767 -77.227592,38.650723 + -77.303619,38.501911 -77.338486,38.436825 -77.289482,38.362671 + -77.321823,38.343983 -77.2407,38.331371 -77.054535,38.375351 + -76.999359,38.280273 -76.936462,38.202473 -76.595604,38.120224 + -76.549034,38.074112 -76.558044,38.02533 -76.573692,38.00317 + -76.524544,38.012745 -76.367744,37.956951 -76.259201,37.89003 + -76.251923,37.850178 -76.324539,37.798813 -76.309944,37.719112 + -76.357002,37.70013 -76.323059,37.677814 -76.344872,37.622925 + -76.507088,37.656384 -76.58046,37.770115 -76.631775,37.796349 + -76.771851,37.916676 -76.818504,37.919506 -76.732353,37.798481 + -76.681732,37.774754 -76.569496,37.641907 -76.314644,37.551201 + -76.34864,37.52515 -76.512856,37.552574 -76.434181,37.515202 + -76.355667,37.515755 -76.254593,37.39019 -76.275192,37.330322 + -76.300972,37.334572 -76.33902,37.393547 -76.446869,37.457966 + -76.463936,37.418892 -76.417084,37.412136 -76.403755,37.373028 + -76.455551,37.377491 -76.392738,37.293427 -76.461136,37.255432 + -76.653488,37.412201 -76.704681,37.418491 -76.669983,37.371647 + -76.595039,37.291298 -76.424667,37.207298 -76.412994,37.152393 + -76.396873,37.173031 -76.363785,37.146427 -76.337318,37.17701 + -76.285675,37.122097 -76.395691,37.107708 -76.278931,37.074345 + -76.293343,37.020489 -76.384552,36.990414 -76.426117,36.96526 + -76.53112,37.067642 -76.515266,37.088367 -76.564491,37.117771 + -76.568443,37.080173 -76.624916,37.132275 -76.610031,37.178577 + -76.648094,37.225838 -76.697151,37.232521 -76.746101,37.19339 + -76.795929,37.240387 -76.85717,37.2439 -76.875488,37.322945 -76.878426,37.259426 + -76.94149,37.23661 -76.900864,37.201054 -76.797394,37.207302 -76.72921,37.150669 + -76.685966,37.197987 -76.671539,37.147713 -76.665642,37.054134 + -76.577827,37.024494 -76.613373,36.994843 -76.555046,37.006195 + -76.48951,36.961723 -76.517174,36.912186 -76.482178,36.919086 + -76.486618,36.895569 -76.560516,36.841801 -76.561852,36.795616 + -76.507195,36.869473 -76.410805,36.901413 -76.348145,36.913342 + -76.341919,36.860188 -76.394089,36.835926 -76.401184,36.826138 + -76.317436,36.845844 -76.292702,36.828342 -76.307617,36.942001 + -76.284225,36.962734 -76.202332,36.93507 -76.191666,36.904442 + -76.118431,36.931618 -75.995361,36.923134 -75.878166,36.555874 + -75.901985,36.556198 -75.892853,36.599022 -75.950798,36.721565 + -75.998665,36.556652 -76.027168,36.556717 -76.061859,36.603592 + -76.045959,36.556953 -76.127396,36.557163 -76.330254,36.556057 + -76.497559,36.555813 -76.563583,36.555252 -76.921631,36.554157 + -76.924133,36.554146 -77.177353,36.556286 -77.320053,36.553917 + -77.763931,36.55344 -77.898857,36.552944 -78.051666,36.552475 + -78.321251,36.545532 -78.458809,36.541481 -78.737389,36.546074 + -78.7967,36.543533 -79.144325,36.546059 + + + + + + + + + + + -75.270721,38.027588 -75.242584,38.028526 -75.298859,37.962875 + -75.33918,37.888783 -75.386078,37.875652 -75.34481,37.901913 + -75.378571,37.900974 -75.346687,37.918797 -75.270721,38.027588 + + + + + + + + + + + -75.867371,37.552181 -75.941101,37.561554 -75.929558,37.585884 + -75.887276,37.580345 -75.905991,37.592175 -75.799721,37.711792 + -75.7826,37.789833 -75.696083,37.824516 -75.686707,37.858124 + -75.733978,37.930569 -75.658447,37.941181 -75.648216,37.970131 + -75.626434,37.996418 -75.37278,38.016712 -75.61792,37.697132 + -75.589905,37.677193 -75.699493,37.589512 -75.650269,37.559753 + -75.727524,37.558182 -75.7565,37.51054 -75.705269,37.493473 -75.813026,37.469044 + -75.820488,37.426205 -75.790771,37.408108 -75.826675,37.418148 + -75.89711,37.367393 -75.931389,37.142502 -75.970985,37.126232 + -76.018471,37.308781 -75.934448,37.484642 -75.965446,37.479351 + -75.954704,37.521832 -75.930756,37.556889 -75.867371,37.552181 + + + + + + + + Virginia + 51 + S Atl + VA + 102537.328 + 4263.82 + 6180651.0 + 1627615.0 + 2289067.0 + 3030948.0 + 3149703.0 + 2343200.0 + 2278600.0 + 499251.0 + 125792.0 + 3025109.0 + 141926.0 + 777181.0 + 420070.0 + 0.49 + 0.51 + 898089.0 + + + + + + + + + + + + -89.104965,36.953869 -89.129585,36.86644 -89.166496,36.843422 + -89.173462,36.829384 -89.164375,36.80442 -89.125839,36.792412 + -89.125473,36.768032 -89.151367,36.759041 -89.1772,36.760925 + -89.196297,36.727421 -89.197495,36.713367 -89.167831,36.67157 + -89.177094,36.653004 -89.200119,36.631298 -89.21006,36.581894 + -89.241615,36.569267 -89.283424,36.575249 -89.322273,36.622017 + -89.342323,36.628849 -89.363548,36.625702 -89.373878,36.616188 + -89.418137,36.510563 -89.414711,36.502617 -89.448517,36.456379 + -89.470833,36.445953 -89.491989,36.465462 -89.475822,36.498547 + -89.481682,36.504696 -89.471375,36.525555 -89.481674,36.547775 + -89.493126,36.559116 -89.530365,36.564556 -89.556137,36.557743 + -89.568153,36.541409 -89.566986,36.518738 -89.533195,36.498108 + -89.516022,36.471809 -89.545181,36.44096 -89.520004,36.401058 + -89.519333,36.35593 -89.544556,36.345722 -89.60569,36.354752 + -89.622795,36.334782 -89.606766,36.308037 -89.542236,36.280865 + -89.535378,36.264538 -89.541649,36.257278 -89.61808,36.240898 + -89.670586,36.254894 -89.694542,36.252136 -89.695656,36.240795 + -89.676788,36.220867 -89.618561,36.183743 -89.589455,36.15202 + -89.589424,36.129791 -89.667389,36.099316 -89.678169,36.08297 + -89.688843,36.025795 -89.721756,35.999878 -89.963203,35.996838 + -90.283455,35.991158 -90.37896,35.989586 -90.315239,36.091656 + -90.284752,36.115906 -90.263702,36.118763 -90.23484,36.137089 + -90.232224,36.161148 -90.219223,36.172565 -90.161308,36.196941 + -90.131218,36.21207 -90.109917,36.257996 -90.066093,36.272274 + -90.049751,36.300472 -90.067635,36.325333 -90.050201,36.362606 + -90.052063,36.382553 -90.080177,36.397388 -90.116829,36.404915 + -90.123833,36.422565 -90.117226,36.453896 -90.137276,36.457417 + -90.150162,36.491814 -90.224373,36.492752 -90.581619,36.490963 + -90.804314,36.489204 -91.133827,36.487953 -91.411659,36.491039 + -91.45285,36.490376 -91.688416,36.490955 -92.127487,36.491371 + -92.146164,36.491596 -92.522888,36.490856 -92.777466,36.489918 + -92.852104,36.489819 -93.297142,36.490616 -93.328163,36.490196 + -93.59626,36.489891 -93.857323,36.489716 -94.080849,36.490952 + -94.617035,36.489338 -94.62085,36.670471 -94.62146,36.763538 + -94.620155,36.996983 -94.620438,37.060085 -94.618744,37.327679 + -94.61853,37.360714 -94.618759,37.65033 -94.619057,37.679825 + -94.616501,38.030354 -94.617096,38.055752 -94.61882,38.392014 + -94.618484,38.471458 -94.612915,38.737213 -94.612236,38.837101 + -94.609047,39.044662 -94.607903,39.112797 -94.60099,39.141224 + -94.612419,39.151646 -94.646172,39.158424 -94.675278,39.174919 + -94.730293,39.171253 -94.78981,39.19688 -94.82058,39.211002 -94.833237,39.261765 + -94.880867,39.286045 -94.90744,39.323029 -94.911102,39.340122 + -94.898041,39.380642 -94.925507,39.381268 -94.958252,39.411449 + -94.985962,39.439465 -95.040268,39.462944 -95.047356,39.485332 + -95.101791,39.532852 -95.108742,39.560696 -95.053368,39.586781 + -95.055771,39.625694 -95.028046,39.661919 -94.978325,39.684994 + -94.96154,39.732044 -94.952896,39.736507 -94.930611,39.727032 + -94.905434,39.726761 -94.877617,39.739311 -94.870941,39.754124 + -94.876823,39.760685 -94.921555,39.757847 -94.934868,39.775433 + -94.933022,39.78278 -94.899078,39.793781 -94.88826,39.817406 + -94.898079,39.828339 -94.92363,39.833138 -94.936264,39.849392 + -94.937996,39.896088 -94.964775,39.900829 -95.021523,39.896984 + -95.033257,39.87785 -95.062996,39.866543 -95.100471,39.869869 + -95.150299,39.908058 -95.19371,39.910183 -95.207344,39.938179 + -95.240707,39.942108 -95.308441,39.999409 -95.34481,40.024975 + -95.370987,40.028751 -95.390274,40.043751 -95.413506,40.048111 + -95.403526,40.080379 -95.384285,40.095364 -95.392555,40.115417 + -95.422218,40.131744 -95.460693,40.173996 -95.466377,40.213257 + -95.476562,40.226856 -95.546875,40.266216 -95.595268,40.309776 + -95.646561,40.309109 -95.645287,40.322346 -95.617668,40.331417 + -95.615936,40.346497 -95.633919,40.358799 -95.636551,40.396389 + -95.695091,40.485336 -95.6847,40.512203 -95.657791,40.530331 + -95.662674,40.558727 -95.675423,40.565834 -95.687141,40.561169 + -95.691795,40.524128 -95.736763,40.532372 -95.763138,40.549706 + -95.767204,40.589046 -95.382294,40.584335 -95.217171,40.581898 + -94.920364,40.577229 -94.639633,40.575756 -94.484993,40.574215 + -94.238159,40.570972 -94.01783,40.574024 -93.786079,40.578445 + -93.562691,40.580807 -93.370056,40.580482 -93.100731,40.584335 + -92.717621,40.589645 -92.64624,40.591438 -92.361328,40.599548 + -92.192993,40.60006 -91.946198,40.608234 -91.741547,40.609749 + -91.716812,40.593399 -91.689796,40.581165 -91.691917,40.55164 + -91.622375,40.532864 -91.616699,40.504833 -91.585869,40.484478 + -91.579224,40.463718 -91.533051,40.455399 -91.538689,40.441246 + -91.529449,40.435043 -91.527534,40.410126 -91.500221,40.405117 + -91.490158,40.390762 -91.476883,40.390968 -91.448593,40.371902 + -91.486694,40.309624 -91.498932,40.251377 -91.506546,40.200459 + -91.516129,40.134544 -91.504005,40.066711 -91.487289,40.005753 + -91.447243,39.946064 -91.430389,39.921837 -91.434052,39.901829 + -91.450989,39.885242 -91.449188,39.863049 -91.381714,39.803772 + -91.373421,39.761272 -91.367088,39.72464 -91.317665,39.685917 + -91.203247,39.600021 -91.156189,39.552593 -91.093613,39.528927 + -91.064384,39.473984 -91.036339,39.444412 -90.947891,39.400585 + -90.850494,39.350452 -90.779343,39.296803 -90.738083,39.24781 + -90.732338,39.224747 -90.718193,39.195873 -90.716736,39.144211 + -90.690399,39.0937 -90.707588,39.058178 -90.70607,39.037792 -90.668877,38.935253 + -90.627213,38.880795 -90.570328,38.871326 -90.530426,38.891609 + -90.469841,38.959179 -90.413071,38.96233 -90.31974,38.924908 + -90.278931,38.924717 -90.243927,38.914509 -90.132812,38.853031 + -90.113121,38.830467 -90.121727,38.80051 -90.135178,38.785484 + -90.163399,38.773098 -90.196571,38.723965 -90.20224,38.700363 + -90.183578,38.658772 -90.183708,38.610271 -90.240944,38.562805 + -90.26123,38.532768 -90.265785,38.518688 -90.301842,38.427357 + -90.339607,38.390846 -90.358688,38.36533 -90.369347,38.323559 + -90.364769,38.234299 -90.336716,38.188713 -90.289635,38.166817 + -90.254059,38.122169 -90.207527,38.088905 -90.134712,38.053951 + -90.119339,38.032272 -90.041924,37.993206 -90.010811,37.969318 + -89.958229,37.963634 -89.978912,37.911884 -89.937874,37.878044 + -89.900551,37.875904 -89.866814,37.891876 -89.861046,37.905487 + -89.851715,37.905064 -89.728447,37.840992 -89.691055,37.804794 + -89.675858,37.78397 -89.666458,37.745453 -89.581436,37.706104 + -89.521523,37.694798 -89.513374,37.67984 -89.51918,37.650375 + -89.513367,37.615929 -89.524971,37.571957 -89.494781,37.491726 + -89.453621,37.453186 -89.427574,37.411018 -89.435738,37.355717 + -89.468742,37.339409 -89.50058,37.329441 -89.513885,37.304962 + -89.513885,37.276402 -89.489594,37.256001 -89.465309,37.253731 + -89.468216,37.224266 -89.440521,37.165318 -89.423798,37.137203 + -89.37999,37.099083 -89.38295,37.049213 -89.310982,37.009682 + -89.282768,36.999207 -89.262001,37.008686 -89.264244,37.027733 + -89.3097,37.060909 -89.303291,37.085384 -89.284233,37.091244 + -89.264053,37.087124 -89.237679,37.041733 -89.210052,37.028973 + -89.193512,36.986771 -89.12986,36.988113 -89.107147,36.977451 + -89.104965,36.953869 + + + + + + + + Missouri + 29 + W N Cen + MO + 178445.951 + 2100.115 + 5117073.0 + 1368334.0 + 1961206.0 + 2464315.0 + 2652758.0 + 1861192.0 + 1816079.0 + 312042.0 + 47129.0 + 2367395.0 + 155388.0 + 659782.0 + 386746.0 + 0.482 + 0.518 + 864999.0 + + + + + + + + + + + + -114.519844,33.027668 -114.558304,33.036743 -114.609138,33.026962 + -114.633179,33.033527 -114.644371,33.044373 -114.663162,33.038883 + -114.710564,33.095345 -114.708672,33.122337 -114.67733,33.167213 + -114.67926,33.22456 -114.68692,33.239223 -114.676903,33.267982 + -114.734634,33.305676 -114.702812,33.352386 -114.724144,33.41103 + -114.644302,33.419086 -114.629784,33.439396 -114.6203,33.468571 + -114.597298,33.486099 -114.586273,33.509418 -114.528633,33.560047 + -114.539459,33.580482 -114.526382,33.622112 -114.524475,33.665482 + -114.535645,33.682713 -114.494888,33.708347 -114.509499,33.743179 + -114.503769,33.771694 -114.520332,33.826012 -114.510933,33.841946 + -114.520172,33.862907 -114.497398,33.925018 -114.524841,33.952396 + -114.517418,33.965046 -114.428192,34.029827 -114.423241,34.078316 + -114.409378,34.102638 -114.322014,34.141281 -114.284584,34.171215 + -114.234993,34.186207 -114.149132,34.266964 -114.124451,34.272606 + -114.133347,34.314533 -114.152634,34.336433 -114.181297,34.365192 + -114.257057,34.405476 -114.282608,34.412056 -114.302078,34.435741 + -114.331848,34.454861 -114.375717,34.459667 -114.383072,34.477074 + -114.376038,34.536552 -114.408951,34.583714 -114.43351,34.598953 + -114.421478,34.610886 -114.464844,34.709866 -114.497009,34.744751 + -114.524757,34.748905 -114.541245,34.759953 -114.56942,34.831856 + -114.626465,34.87553 -114.629677,34.919498 -114.620209,34.943607 + -114.631477,34.99765 -114.62027,34.998913 -114.63298,35.041862 + -114.594833,35.076057 -114.635109,35.118656 -114.625641,35.133907 + -114.581818,35.132561 -114.571457,35.140068 -114.560242,35.174347 + -114.558784,35.220184 -114.58709,35.304771 -114.588783,35.358383 + -114.644592,35.450768 -114.67141,35.515762 -114.648987,35.546646 + -114.652328,35.584843 -114.639061,35.611359 -114.653259,35.646595 + -114.667679,35.65641 -114.664284,35.693111 -114.688011,35.732609 + -114.681931,35.764717 -114.689056,35.847458 -114.661652,35.870975 + -114.660789,35.880489 -114.698463,35.911629 -114.735397,35.987667 + -114.716858,36.036777 -114.728149,36.058773 -114.727333,36.085983 + -114.711945,36.105202 -114.620796,36.141987 -114.598122,36.138355 + -114.529762,36.155109 -114.465805,36.124729 -114.443138,36.121071 + -114.379997,36.151009 -114.34343,36.137497 -114.315292,36.111454 + -114.303055,36.087124 -114.306786,36.062248 -114.232674,36.018345 + -114.205971,36.017269 -114.128227,36.041744 -114.106979,36.121105 + -114.044312,36.193993 -114.036598,36.216038 -114.042915,36.841873 + -114.043137,36.996563 -112.899216,36.996243 -112.541763,36.998009 + -112.236511,36.995506 -111.355453,37.00172 -110.739372,37.002491 + -110.483398,37.003929 -110.451546,36.991749 -109.996399,36.992065 + -109.047821,36.996643 -109.047195,35.996655 -109.045998,34.954613 + -109.048012,34.59174 -109.049721,33.783249 -109.049904,33.205101 + -109.050728,32.77948 -109.048882,32.441967 -109.045006,31.343348 + -110.451942,31.337559 -111.07132,31.335535 -111.368866,31.431438 + -113.328377,32.04356 -114.820969,32.487114 -114.808601,32.615993 + -114.72126,32.72081 -114.711906,32.734966 -114.693253,32.741379 + -114.603157,32.726238 -114.602737,32.73584 -114.571175,32.737392 + -114.571426,32.748783 -114.559967,32.74889 -114.560799,32.760708 + -114.542221,32.760704 -114.542404,32.771187 -114.529312,32.771366 + -114.534294,32.788002 -114.525436,32.809868 -114.460655,32.845379 + -114.475662,32.935867 -114.467606,32.977749 -114.519844,33.027668 + + + + + + + + Arizona + 04 + Mtn + AZ + 294333.462 + 942.772 + 3665228.0 + 940106.0 + 1368843.0 + 1810691.0 + 1854537.0 + 1358263.0 + 1178320.0 + 239083.0 + 32856.0 + 1603896.0 + 123902.0 + 455896.0 + 185109.0 + 0.494 + 0.506 + 468178.0 + + + + + + + + + + + + -94.439102,34.92905 -94.44574,34.735504 -94.452408,34.508327 + -94.461479,34.196655 -94.468376,33.939198 -94.476486,33.631966 + -94.50061,33.623047 -94.510559,33.63081 -94.525055,33.621021 -94.51799,33.643009 + -94.550194,33.632694 -94.562149,33.635536 -94.562195,33.64283 + -94.541931,33.648247 -94.545418,33.661621 -94.576462,33.652157 + -94.588387,33.655449 -94.585159,33.662132 -94.565208,33.663013 + -94.560722,33.671913 -94.578506,33.670471 -94.585106,33.678982 + -94.600945,33.665607 -94.631737,33.683899 -94.638763,33.670105 + -94.658539,33.663738 -94.669426,33.666061 -94.667953,33.671459 + -94.644325,33.67765 -94.655479,33.692291 -94.668457,33.696537 + -94.690987,33.690289 -94.741653,33.701267 -94.754478,33.707771 + -94.742111,33.719048 -94.762718,33.716797 -94.749771,33.736706 + -94.783157,33.733665 -94.782028,33.742268 -94.764175,33.752842 + -94.783508,33.753262 -94.803223,33.739582 -94.81916,33.749405 + -94.85788,33.749321 -94.881638,33.774963 -94.913879,33.789597 + -94.908546,33.803478 -94.918236,33.816196 -94.940399,33.815807 + -94.939888,33.840824 -94.959908,33.848076 -94.968704,33.866215 + -94.989281,33.856182 -95.012772,33.869946 -95.037361,33.866451 + -95.042862,33.884445 -95.063141,33.896694 -95.063477,33.917648 + -95.083603,33.888462 -95.089714,33.896915 -95.082268,33.918453 + -95.09536,33.921738 -95.119225,33.912281 -95.126678,33.917145 + -95.127968,33.940868 -95.148315,33.943546 -95.234039,33.964863 + -95.251289,33.936443 -95.250992,33.905022 -95.263618,33.8978 + -95.277351,33.917938 -95.28643,33.886902 -95.301956,33.886623 + -95.336227,33.897114 -95.33004,33.870918 -95.451607,33.865753 + -95.468124,33.886433 -95.498856,33.881718 -95.512886,33.897736 + -95.544037,33.885742 -95.547493,33.893158 -95.526733,33.897816 + -95.519577,33.906643 -95.546318,33.904034 -95.562775,33.936073 + -95.606071,33.944553 -95.61483,33.936691 -95.612984,33.920238 + -95.633492,33.920105 -95.699707,33.894825 -95.746864,33.903397 + -95.760696,33.89344 -95.764252,33.879005 -95.768517,33.851402 + -95.795479,33.864674 -95.825974,33.843025 -95.846558,33.841038 + -95.933075,33.89053 -95.943069,33.889973 -95.958763,33.86504 + -95.977394,33.857952 -95.994209,33.875378 -96.002617,33.87339 + -96.001793,33.856979 -96.014069,33.844208 -96.026749,33.856022 + -96.047974,33.841278 -96.091522,33.844578 -96.109444,33.829258 + -96.148964,33.83559 -96.169205,33.828983 -96.183128,33.815792 + -96.180725,33.808434 -96.154518,33.823944 -96.141418,33.82032 + -96.161316,33.798229 -96.168816,33.769356 -96.187027,33.758583 + -96.212547,33.756691 -96.278076,33.773388 -96.28968,33.761932 + -96.300789,33.71405 -96.316277,33.701801 -96.347588,33.705528 + -96.370819,33.740395 -96.419464,33.788326 -96.487373,33.77813 + -96.500748,33.78809 -96.510574,33.815685 -96.562134,33.82542 + -96.601196,33.842957 -96.614166,33.8629 -96.584488,33.896145 + -96.666237,33.913544 -96.677704,33.904324 -96.693382,33.847904 + -96.711678,33.83387 -96.748825,33.831738 -96.797592,33.869949 + -96.814117,33.871769 -96.844009,33.858032 -96.861015,33.861679 + -96.878937,33.884003 -96.882851,33.924591 -96.898453,33.950027 + -96.929565,33.961773 -96.936203,33.947849 -96.968185,33.937321 + -96.987862,33.944202 -96.987709,33.876423 -97.005852,33.850513 + -97.025597,33.840561 -97.0709,33.856728 -97.082176,33.851101 + -97.078247,33.837811 -97.050026,33.823448 -97.087669,33.807571 + -97.083466,33.742413 -97.0905,33.73167 -97.115562,33.725933 -97.152473,33.728668 + -97.189163,33.752769 -97.208321,33.819649 -97.195015,33.836159 + -97.168594,33.847794 -97.164169,33.863148 -97.187767,33.899204 + -97.211334,33.905689 -97.246063,33.894238 -97.250687,33.872971 + -97.263908,33.85873 -97.272278,33.872574 -97.314087,33.89584 + -97.314957,33.870392 -97.341805,33.861916 -97.363319,33.831024 + -97.410118,33.820709 -97.452736,33.836212 -97.457062,33.89043 + -97.462761,33.902382 -97.477531,33.907707 -97.518204,33.916771 + -97.554588,33.903904 -97.575668,33.902531 -97.592354,33.917885 + -97.600182,33.969437 -97.671066,33.988613 -97.704262,33.971546 + -97.729019,33.939293 -97.756363,33.932098 -97.790207,33.890457 + -97.852547,33.857071 -97.869751,33.855114 -97.909065,33.874023 + -97.954735,33.88348 -97.976379,33.902504 -97.976128,33.912052 + -97.950684,33.932518 -97.962997,33.94865 -97.947754,33.959751 + -97.950226,33.971161 -97.982681,34.001286 -98.023491,33.986984 + -98.055557,33.989799 -98.086205,34.005314 -98.110687,34.06982 + -98.094124,34.134556 -98.114868,34.148987 -98.136864,34.138432 + -98.172844,34.115368 -98.277,34.122871 -98.320488,34.13942 -98.350403,34.14212 + -98.384254,34.11578 -98.390953,34.087231 -98.407135,34.082455 + -98.421341,34.06583 -98.448189,34.054375 -98.499519,34.066414 + -98.557579,34.105335 -98.576332,34.14193 -98.607246,34.151398 + -98.625992,34.158436 -98.66172,34.147038 -98.682213,34.149998 + -98.705292,34.130714 -98.778534,34.131962 -98.811066,34.145935 + -98.891342,34.16082 -98.952507,34.194565 -98.996193,34.209496 + -99.035217,34.198921 -99.07843,34.208359 -99.127945,34.201469 + -99.176155,34.21273 -99.190483,34.223736 -99.204597,34.255646 + -99.196304,34.305122 -99.20549,34.331993 -99.254105,34.368214 + -99.267174,34.398285 -99.323296,34.412708 -99.364204,34.450195 + -99.392792,34.428993 -99.394157,34.396744 -99.409958,34.369106 + -99.438377,34.364704 -99.479439,34.383522 -99.502136,34.404068 + -99.553864,34.41518 -99.57785,34.408913 -99.58522,34.384857 -99.601448,34.368557 + -99.684906,34.377445 -99.777687,34.443993 -99.829933,34.501778 + -99.860573,34.518627 -99.8806,34.548176 -99.931908,34.579109 -99.94474,34.579571 + -99.972099,34.561863 -99.996094,34.562321 -99.998878,34.747185 + -99.996071,35.030998 -99.997185,35.182182 -99.994354,35.424572 -100,35.618809 + -99.997726,35.883793 -99.997154,36.057549 -100.001144,36.492519 + -100.006866,36.493877 -100.549416,36.489449 -100.956909,36.489609 + -101.089668,36.488022 -101.620316,36.492004 -102.03421,36.492954 + -102.165222,36.490208 -102.996918,36.492344 -102.997223,36.998505 + -102.036758,36.988972 -102.024071,36.988853 -101.553238,36.996666 + -101.071159,36.99744 -100.950142,36.996635 -100.633812,36.997807 + -100.088158,36.997623 -99.998848,36.995388 -99.544243,36.995434 + -99.43708,36.99453 -98.999138,36.998043 -98.539864,36.998348 + -98.346794,36.999035 -98.104187,36.998646 -97.803917,36.998543 + -97.46508,36.996441 -97.137375,36.999779 -96.74839,37.000134 + -96.518898,37.000538 -96.005791,36.998264 -95.957703,37.000011 + -95.785492,36.998035 -95.525764,37.000938 -95.406372,37.000538 + -95.071693,37.001408 -95.032509,37.00071 -94.620155,36.996983 + -94.62146,36.763538 -94.62085,36.670471 -94.617035,36.489338 + -94.607231,36.478714 -94.552895,36.164444 -94.542198,36.106754 + -94.485718,35.760227 -94.468269,35.641003 -94.428337,35.400455 + -94.439102,34.92905 + + + + + + + + Oklahoma + 40 + W S Cen + OK + 177877.536 + 3170.998 + 3145585.0 + 855321.0 + 1206135.0 + 1530819.0 + 1614766.0 + 1146497.0 + 1078894.0 + 190902.0 + 7817.0 + 1369138.0 + 100931.0 + 405802.0 + 205601.0 + 0.487 + 0.513 + 528722.0 + + + + + + + + + + + + -83.988548,34.989067 -84.11824,34.988224 -84.323853,34.98901 + -84.291039,35.210545 -84.225945,35.261604 -84.179726,35.24099 + -84.101646,35.245552 -84.042778,35.272575 -84.030861,35.292522 + -84.029205,35.325291 -84.00631,35.37286 -84.01265,35.407623 -83.954704,35.45546 + -83.910011,35.476479 -83.881226,35.510586 -83.8302,35.519062 + -83.775879,35.552605 -83.672874,35.564972 -83.613861,35.571739 + -83.561035,35.555176 -83.505798,35.559551 -83.45829,35.597279 + -83.387093,35.625217 -83.343025,35.653259 -83.298416,35.656326 + -83.259125,35.69101 -83.253304,35.700706 -83.243851,35.718216 + -83.185349,35.728886 -83.143661,35.762684 -83.118187,35.763809 + -83.059959,35.782578 -82.987007,35.773991 -82.962753,35.791851 + -82.906822,35.872215 -82.91407,35.927868 -82.895973,35.94836 -82.85627,35.947426 + -82.80867,35.920872 -82.776443,35.956573 -82.773598,35.987503 + -82.763229,35.999546 -82.64389,36.051723 -82.628044,36.05434 + -82.604401,36.042988 -82.592232,36.022449 -82.605804,36.003548 + -82.599304,35.963299 -82.554146,35.956108 -82.506935,35.972542 + -82.475197,35.993176 -82.408424,36.075317 -82.373856,36.098698 + -82.311928,36.12215 -82.262306,36.120377 -82.207733,36.147015 + -82.154053,36.139622 -82.11808,36.096256 -82.077759,36.10014 + -82.020454,36.129711 -81.933113,36.263321 -81.911156,36.290752 + -81.830574,36.334656 -81.730492,36.329342 -81.709457,36.333725 + -81.740379,36.361858 -81.741074,36.391785 -81.69828,36.471779 + -81.702797,36.519341 -81.669998,36.589649 -81.345299,36.572865 + -80.903442,36.565212 -80.838158,36.563438 -80.611053,36.557297 + -80.43531,36.551044 -80.048096,36.547134 -80.024055,36.545025 + -79.717445,36.54789 -79.5103,36.547657 -79.217064,36.549782 -79.144325,36.546059 + -78.7967,36.543533 -78.737389,36.546074 -78.458809,36.541481 + -78.321251,36.545532 -78.051666,36.552475 -77.898857,36.552944 + -77.763931,36.55344 -77.320053,36.553917 -77.177353,36.556286 + -76.924133,36.554146 -76.921631,36.554157 -76.563583,36.555252 + -76.497559,36.555813 -76.330254,36.556057 -76.127396,36.557163 + -76.045959,36.556953 -76.033211,36.514374 -76.091064,36.503567 + -75.976074,36.436214 -75.969765,36.415119 -76.00161,36.418915 + -75.951256,36.365471 -75.928123,36.423244 -75.924591,36.350948 + -75.800056,36.112816 -75.798851,36.072819 -75.855164,36.105667 + -75.913765,36.244801 -75.957512,36.259453 -75.941933,36.294338 + -76.008972,36.319595 -75.957184,36.193771 -75.981339,36.169727 + -76.183167,36.315239 -76.218903,36.296608 -76.112709,36.174419 + -76.141937,36.14769 -76.234978,36.163361 -76.298927,36.21423 + -76.275505,36.110371 -76.48053,36.079792 -76.420425,36.058605 + -76.52301,36.007168 -76.594002,36.010132 -76.649017,36.065708 + -76.633209,36.037117 -76.690155,36.04961 -76.726509,36.156822 + -76.688736,36.294518 -76.776642,36.35833 -76.92408,36.392445 + -76.741348,36.315166 -76.707497,36.266132 -76.745064,36.233917 + -76.760674,36.144592 -76.693764,35.99297 -76.741127,35.936626 + -76.69722,35.941544 -76.40947,35.977467 -76.371483,35.932343 + -76.213768,35.976875 -76.089638,35.962914 -76.026047,35.920425 + -76.075912,35.756802 -76.043068,35.683849 -76.167305,35.696842 + -76.104744,35.663639 -76.02121,35.669094 -75.987854,35.892708 + -75.818054,35.923519 -75.748962,35.869339 -75.72937,35.665173 + -75.779053,35.578686 -75.891495,35.631268 -76.052979,35.414604 + -76.181618,35.341534 -76.498802,35.416218 -76.533752,35.450199 + -76.458435,35.504425 -76.446526,35.550865 -76.518944,35.577644 + -76.492538,35.541786 -76.638199,35.520336 -76.628769,35.437897 + -76.705376,35.411934 -77.103767,35.550186 -76.983185,35.436501 + -76.694901,35.350426 -76.614517,35.272919 -76.591209,35.31208 + -76.540977,35.303688 -76.507126,35.248768 -76.640091,35.17252 + -76.605225,35.138561 -76.624222,35.06435 -76.678009,35.024086 + -76.849464,34.98222 -76.94149,35.027428 -76.943245,35.070034 + -77.047882,35.092155 -77.104675,35.087986 -77.110588,35.066036 + -77.00119,35.052887 -76.913109,34.93647 -76.647049,34.906334 + -76.670059,34.969997 -76.529778,34.974636 -76.44503,35.016659 + -76.424057,34.946247 -76.364014,34.943111 -76.329407,34.975956 + -76.314713,34.948814 -76.469902,34.785061 -76.625313,34.719753 + -77.050529,34.698917 -77.148956,34.764332 -77.129395,34.684914 + -77.156601,34.660637 -77.538635,34.457008 -77.586761,34.420937 + -77.609726,34.435043 -77.602615,34.412628 -77.750526,34.305046 + -77.864388,34.192738 -77.894402,34.06918 -77.926758,34.062035 + -77.960732,34.189243 -77.958527,33.99258 -78.034805,33.914291 + -78.57972,33.881992 -78.655716,33.948673 -79.074501,34.304573 + -79.447144,34.619061 -79.455971,34.63409 -79.667503,34.800663 + -79.685959,34.805256 -79.919952,34.807919 -80.325279,34.814762 + -80.561546,34.815228 -80.800064,34.816113 -80.785652,34.940639 + -80.840164,35.002018 -80.894714,35.059734 -80.927795,35.10125 + -81.039886,35.037201 -81.065552,35.066483 -81.028442,35.105408 + -81.049042,35.132011 -81.049301,35.151531 -81.322823,35.163757 + -81.362175,35.162853 -81.765358,35.182472 -81.87059,35.183117 + -81.971443,35.188282 -82.210175,35.193127 -82.278328,35.195007 + -82.32077,35.184189 -82.350861,35.192673 -82.360123,35.182949 + -82.371376,35.182724 -82.38961,35.208241 -82.43792,35.169559 -82.466743,35.1735 + -82.524635,35.15456 -82.57003,35.14949 -82.654495,35.119457 -82.68605,35.121464 + -82.688034,35.097801 -82.697357,35.091232 -82.771347,35.085423 + -82.887695,35.05537 -83.007278,35.024204 -83.106285,35.000278 + -83.513008,34.992023 -83.549416,34.989536 -83.937996,34.989391 + -83.988548,34.989067 + + + + + + + + + + + -76.027168,36.556717 -75.998665,36.556652 -75.911919,36.54253 + -75.924805,36.473976 -75.97728,36.478016 -75.976288,36.517925 + -76.027168,36.556717 + + + + + + + + + + + -75.901985,36.556198 -75.878166,36.555874 -75.773155,36.229256 + -75.544968,35.788361 -75.702736,36.049862 -75.740868,36.050323 + -75.783173,36.225193 -75.901985,36.556198 + + + + + + + + + + + -75.491219,35.670498 -75.533623,35.768856 -75.456978,35.617397 + -75.526299,35.227917 -75.74929,35.189827 -75.691566,35.234989 + -75.521484,35.281357 -75.475418,35.564495 -75.491219,35.670498 + + + + + + + + + + + -76.017006,35.069435 -75.975693,35.116184 -75.853935,35.167282 + -75.763702,35.192284 -75.811539,35.164021 -75.903946,35.132492 + -76.002876,35.069435 -76.017006,35.069435 + + + + + + + + + + + -76.544273,34.58783 -76.555145,34.610661 -76.53775,34.613922 + -76.484482,34.697632 -76.432297,34.760685 -76.37468,34.81287 -76.287704,34.87701 + -76.469261,34.693283 -76.544273,34.58783 + + + + + + + + North Carolina + 37 + S Atl + NC + 126177.635 + 10309.652 + 6628629.0 + 1812051.0 + 2517024.0 + 3214286.0 + 3414343.0 + 2484061.0 + 2527980.0 + 529828.0 + 33902.0 + 3238414.0 + 163081.0 + 883563.0 + 701142.0 + 0.485 + 0.515 + 1013599.0 + + + + + + + + + + + + -83.954704,35.45546 -84.01265,35.407623 -84.00631,35.37286 -84.029205,35.325291 + -84.030861,35.292522 -84.042778,35.272575 -84.101646,35.245552 + -84.179726,35.24099 -84.225945,35.261604 -84.291039,35.210545 + -84.323853,34.98901 -84.618752,34.988682 -84.771194,34.990681 + -84.800476,34.992756 -84.967911,34.992607 -84.972847,34.992554 + -85.267761,34.989075 -85.359985,34.989902 -85.467422,34.990047 + -85.608994,34.990086 -85.869591,34.992302 -86.303513,34.995377 + -86.313065,34.995186 -86.782372,34.99699 -86.83342,34.998161 + -87.207573,35.007877 -87.222748,35.007263 -87.607788,35.010464 + -87.986046,35.015949 -88.194923,35.013458 -88.193954,35.004368 + -88.351685,35.003746 -88.383102,35.004955 -88.784988,35.003094 + -88.812492,35.00235 -89.006134,35.000145 -89.198067,35.000793 -89.3423,34.999714 + -89.646477,35.000641 -89.717186,34.999168 -90.305351,35.000694 + -90.291809,35.048458 -90.195709,35.040897 -90.169083,35.077827 + -90.178345,35.108646 -90.164474,35.129612 -90.14373,35.136536 + -90.082924,35.12505 -90.064537,35.147385 -90.062431,35.166916 + -90.073303,35.191833 -90.068962,35.212738 -90.090103,35.254398 + -90.105942,35.263847 -90.152122,35.264057 -90.169746,35.282566 + -90.15699,35.306244 -90.106346,35.314686 -90.098701,35.345592 + -90.105621,35.365982 -90.087135,35.381508 -90.075478,35.406528 + -90.085159,35.418282 -90.112244,35.41769 -90.132469,35.4076 -90.140167,35.383045 + -90.167816,35.384254 -90.172676,35.423717 -90.137276,35.442524 + -90.101959,35.473568 -90.08223,35.478207 -90.074844,35.472343 + -90.073936,35.426506 -90.060295,35.41341 -90.046783,35.417103 + -89.999565,35.445454 -90.041817,35.51244 -90.040901,35.542847 + -90.033051,35.552414 -89.989586,35.561676 -89.962273,35.532291 + -89.947548,35.526901 -89.931175,35.529232 -89.921661,35.546059 + -89.958031,35.578594 -89.957047,35.603104 -89.877441,35.633335 + -89.863838,35.629745 -89.849197,35.645222 -89.857246,35.671062 + -89.865181,35.673306 -89.893402,35.655972 -89.929741,35.676266 + -89.952034,35.712486 -89.951035,35.734268 -89.909782,35.754837 + -89.859871,35.748192 -89.827042,35.75827 -89.799904,35.774223 + -89.790382,35.805553 -89.759796,35.817421 -89.735939,35.807037 + -89.700829,35.827515 -89.701439,35.842037 -89.757713,35.871418 + -89.766273,35.884102 -89.762909,35.896812 -89.737976,35.915012 + -89.714684,35.911427 -89.66465,35.885647 -89.649338,35.894287 + -89.645401,35.913799 -89.664192,35.93782 -89.713135,35.966324 + -89.721756,35.999878 -89.688843,36.025795 -89.678169,36.08297 + -89.667389,36.099316 -89.589424,36.129791 -89.589455,36.15202 + -89.618561,36.183743 -89.676788,36.220867 -89.695656,36.240795 + -89.694542,36.252136 -89.670586,36.254894 -89.61808,36.240898 + -89.541649,36.257278 -89.535378,36.264538 -89.542236,36.280865 + -89.606766,36.308037 -89.622795,36.334782 -89.60569,36.354752 + -89.544556,36.345722 -89.519333,36.35593 -89.520004,36.401058 + -89.545181,36.44096 -89.516022,36.471809 -89.533195,36.498108 + -89.475822,36.498547 -89.491989,36.465462 -89.470833,36.445953 + -89.448517,36.456379 -89.414711,36.502617 -89.346596,36.502548 + -88.830315,36.499794 -88.826302,36.499847 -88.810661,36.498985 + -88.512634,36.499489 -88.495979,36.49815 -88.042732,36.496517 + -88.035049,36.538147 -88.041061,36.582668 -88.071312,36.67963 + -87.870689,36.669373 -87.853516,36.641472 -87.693512,36.64444 + -87.64064,36.645168 -87.346603,36.649231 -87.112701,36.651264 + -87.068184,36.650768 -86.770538,36.652058 -86.510674,36.655033 + -86.415451,36.65089 -86.199005,36.643246 -85.980629,36.63306 -85.7855,36.626629 + -85.437408,36.618137 -85.300133,36.626038 -85.272537,36.625553 + -84.998512,36.620914 -84.791115,36.605366 -84.781929,36.605003 + -84.256844,36.595417 -84.254555,36.595371 -84.006821,36.592007 + -83.935677,36.591209 -83.695694,36.584167 -83.675262,36.598621 + -83.464302,36.598755 -83.275131,36.60038 -83.248489,36.589848 + -83.211029,36.588001 -82.986809,36.591198 -82.849937,36.590946 + -82.610962,36.591446 -82.296997,36.591698 -82.216805,36.593967 + -82.154327,36.595043 -81.929459,36.595837 -81.918449,36.613495 + -81.829056,36.611481 -81.652435,36.607555 -81.669998,36.589649 + -81.702797,36.519341 -81.69828,36.471779 -81.741074,36.391785 + -81.740379,36.361858 -81.709457,36.333725 -81.730492,36.329342 + -81.830574,36.334656 -81.911156,36.290752 -81.933113,36.263321 + -82.020454,36.129711 -82.077759,36.10014 -82.11808,36.096256 + -82.154053,36.139622 -82.207733,36.147015 -82.262306,36.120377 + -82.311928,36.12215 -82.373856,36.098698 -82.408424,36.075317 + -82.475197,35.993176 -82.506935,35.972542 -82.554146,35.956108 + -82.599304,35.963299 -82.605804,36.003548 -82.592232,36.022449 + -82.604401,36.042988 -82.628044,36.05434 -82.64389,36.051723 + -82.763229,35.999546 -82.773598,35.987503 -82.776443,35.956573 + -82.80867,35.920872 -82.85627,35.947426 -82.895973,35.94836 -82.91407,35.927868 + -82.906822,35.872215 -82.962753,35.791851 -82.987007,35.773991 + -83.059959,35.782578 -83.118187,35.763809 -83.143661,35.762684 + -83.185349,35.728886 -83.243851,35.718216 -83.253304,35.700706 + -83.259125,35.69101 -83.298416,35.656326 -83.343025,35.653259 + -83.387093,35.625217 -83.45829,35.597279 -83.505798,35.559551 + -83.561035,35.555176 -83.613861,35.571739 -83.672874,35.564972 + -83.775879,35.552605 -83.8302,35.519062 -83.881226,35.510586 + -83.910011,35.476479 -83.954704,35.45546 + + + + + + + + Tennessee + 47 + E S Cen + TN + 105823.567 + 2311.556 + 4829958.0 + 1334052.0 + 1835272.0 + 2326184.0 + 2503774.0 + 1777371.0 + 1747015.0 + 321170.0 + 29542.0 + 2230659.0 + 152128.0 + 596400.0 + 456189.0 + 0.482 + 0.518 + 736654.0 + + + + + + + + + + + + -105.99836,31.393818 -106.212753,31.478128 -106.383041,31.733763 + -106.538971,31.786198 -106.614441,31.817728 -106.615578,31.844635 + -106.643532,31.895102 -106.633202,31.913998 -106.632057,31.972118 + -106.649513,31.980228 -106.623077,32.000988 -106.377846,32.000645 + -106.002708,32.001553 -104.921799,32.004269 -104.850563,32.003151 + -104.018814,32.007278 -103.980896,32.00589 -103.728973,32.006104 + -103.332092,32.004154 -103.057968,32.0019 -103.055191,32.084995 + -103.059547,32.51543 -103.048836,32.953533 -103.042603,33.377728 + -103.038239,33.565742 -103.032761,33.826088 -103.029144,34.307743 + -103.022156,34.745266 -103.02475,34.964718 -103.02565,35.177208 + -103.021797,35.623604 -103.022118,35.742287 -103.02356,36.056026 + -103.026802,36.491566 -102.996918,36.492344 -102.165222,36.490208 + -102.03421,36.492954 -101.620316,36.492004 -101.089668,36.488022 + -100.956909,36.489609 -100.549416,36.489449 -100.006866,36.493877 + -100.001144,36.492519 -99.997154,36.057549 -99.997726,35.883793 -100,35.618809 + -99.994354,35.424572 -99.997185,35.182182 -99.996071,35.030998 + -99.998878,34.747185 -99.996094,34.562321 -99.972099,34.561863 + -99.94474,34.579571 -99.931908,34.579109 -99.8806,34.548176 -99.860573,34.518627 + -99.829933,34.501778 -99.777687,34.443993 -99.684906,34.377445 + -99.601448,34.368557 -99.58522,34.384857 -99.57785,34.408913 -99.553864,34.41518 + -99.502136,34.404068 -99.479439,34.383522 -99.438377,34.364704 + -99.409958,34.369106 -99.394157,34.396744 -99.392792,34.428993 + -99.364204,34.450195 -99.323296,34.412708 -99.267174,34.398285 + -99.254105,34.368214 -99.20549,34.331993 -99.196304,34.305122 + -99.204597,34.255646 -99.190483,34.223736 -99.176155,34.21273 + -99.127945,34.201469 -99.07843,34.208359 -99.035217,34.198921 + -98.996193,34.209496 -98.952507,34.194565 -98.891342,34.16082 + -98.811066,34.145935 -98.778534,34.131962 -98.705292,34.130714 + -98.682213,34.149998 -98.66172,34.147038 -98.625992,34.158436 + -98.607246,34.151398 -98.576332,34.14193 -98.557579,34.105335 + -98.499519,34.066414 -98.448189,34.054375 -98.421341,34.06583 + -98.407135,34.082455 -98.390953,34.087231 -98.384254,34.11578 + -98.350403,34.14212 -98.320488,34.13942 -98.277,34.122871 -98.172844,34.115368 + -98.136864,34.138432 -98.114868,34.148987 -98.094124,34.134556 + -98.110687,34.06982 -98.086205,34.005314 -98.055557,33.989799 + -98.023491,33.986984 -97.982681,34.001286 -97.950226,33.971161 + -97.947754,33.959751 -97.962997,33.94865 -97.950684,33.932518 + -97.976128,33.912052 -97.976379,33.902504 -97.954735,33.88348 + -97.909065,33.874023 -97.869751,33.855114 -97.852547,33.857071 + -97.790207,33.890457 -97.756363,33.932098 -97.729019,33.939293 + -97.704262,33.971546 -97.671066,33.988613 -97.600182,33.969437 + -97.592354,33.917885 -97.575668,33.902531 -97.554588,33.903904 + -97.518204,33.916771 -97.477531,33.907707 -97.462761,33.902382 + -97.457062,33.89043 -97.452736,33.836212 -97.410118,33.820709 + -97.363319,33.831024 -97.341805,33.861916 -97.314957,33.870392 + -97.314087,33.89584 -97.272278,33.872574 -97.263908,33.85873 + -97.250687,33.872971 -97.246063,33.894238 -97.211334,33.905689 + -97.187767,33.899204 -97.164169,33.863148 -97.168594,33.847794 + -97.195015,33.836159 -97.208321,33.819649 -97.189163,33.752769 + -97.152473,33.728668 -97.115562,33.725933 -97.0905,33.73167 -97.083466,33.742413 + -97.087669,33.807571 -97.050026,33.823448 -97.078247,33.837811 + -97.082176,33.851101 -97.0709,33.856728 -97.025597,33.840561 + -97.005852,33.850513 -96.987709,33.876423 -96.987862,33.944202 + -96.968185,33.937321 -96.936203,33.947849 -96.929565,33.961773 + -96.898453,33.950027 -96.882851,33.924591 -96.878937,33.884003 + -96.861015,33.861679 -96.844009,33.858032 -96.814117,33.871769 + -96.797592,33.869949 -96.748825,33.831738 -96.711678,33.83387 + -96.693382,33.847904 -96.677704,33.904324 -96.666237,33.913544 + -96.584488,33.896145 -96.614166,33.8629 -96.601196,33.842957 -96.562134,33.82542 + -96.510574,33.815685 -96.500748,33.78809 -96.487373,33.77813 + -96.419464,33.788326 -96.370819,33.740395 -96.347588,33.705528 + -96.316277,33.701801 -96.300789,33.71405 -96.28968,33.761932 + -96.278076,33.773388 -96.212547,33.756691 -96.187027,33.758583 + -96.168816,33.769356 -96.161316,33.798229 -96.141418,33.82032 + -96.154518,33.823944 -96.180725,33.808434 -96.183128,33.815792 + -96.169205,33.828983 -96.148964,33.83559 -96.109444,33.829258 + -96.091522,33.844578 -96.047974,33.841278 -96.026749,33.856022 + -96.014069,33.844208 -96.001793,33.856979 -96.002617,33.87339 + -95.994209,33.875378 -95.977394,33.857952 -95.958763,33.86504 + -95.943069,33.889973 -95.933075,33.89053 -95.846558,33.841038 + -95.825974,33.843025 -95.795479,33.864674 -95.768517,33.851402 + -95.764252,33.879005 -95.760696,33.89344 -95.746864,33.903397 + -95.699707,33.894825 -95.633492,33.920105 -95.612984,33.920238 + -95.61483,33.936691 -95.606071,33.944553 -95.562775,33.936073 + -95.546318,33.904034 -95.519577,33.906643 -95.526733,33.897816 + -95.547493,33.893158 -95.544037,33.885742 -95.512886,33.897736 + -95.498856,33.881718 -95.468124,33.886433 -95.451607,33.865753 + -95.33004,33.870918 -95.336227,33.897114 -95.301956,33.886623 + -95.28643,33.886902 -95.277351,33.917938 -95.263618,33.8978 -95.250992,33.905022 + -95.251289,33.936443 -95.234039,33.964863 -95.148315,33.943546 + -95.127968,33.940868 -95.126678,33.917145 -95.119225,33.912281 + -95.09536,33.921738 -95.082268,33.918453 -95.089714,33.896915 + -95.083603,33.888462 -95.063477,33.917648 -95.063141,33.896694 + -95.042862,33.884445 -95.037361,33.866451 -95.012772,33.869946 + -94.989281,33.856182 -94.968704,33.866215 -94.959908,33.848076 + -94.939888,33.840824 -94.940399,33.815807 -94.918236,33.816196 + -94.908546,33.803478 -94.913879,33.789597 -94.881638,33.774963 + -94.85788,33.749321 -94.81916,33.749405 -94.803223,33.739582 + -94.783508,33.753262 -94.764175,33.752842 -94.782028,33.742268 + -94.783157,33.733665 -94.749771,33.736706 -94.762718,33.716797 + -94.742111,33.719048 -94.754478,33.707771 -94.741653,33.701267 + -94.690987,33.690289 -94.668457,33.696537 -94.655479,33.692291 + -94.644325,33.67765 -94.667953,33.671459 -94.669426,33.666061 + -94.658539,33.663738 -94.638763,33.670105 -94.631737,33.683899 + -94.600945,33.665607 -94.585106,33.678982 -94.578506,33.670471 + -94.560722,33.671913 -94.565208,33.663013 -94.585159,33.662132 + -94.588387,33.655449 -94.576462,33.652157 -94.545418,33.661621 + -94.541931,33.648247 -94.562195,33.64283 -94.562149,33.635536 + -94.550194,33.632694 -94.51799,33.643009 -94.525055,33.621021 + -94.510559,33.63081 -94.50061,33.623047 -94.476486,33.631966 + -94.435913,33.636444 -94.436333,33.616844 -94.451553,33.604347 + -94.443329,33.596504 -94.428467,33.597141 -94.40657,33.573486 + -94.393417,33.574959 -94.379112,33.593327 -94.370628,33.590042 + -94.372307,33.572662 -94.395264,33.560303 -94.370758,33.547684 + -94.328751,33.573135 -94.302383,33.556934 -94.29882,33.579853 + -94.278984,33.589333 -94.272079,33.584606 -94.274544,33.561737 + -94.237236,33.592422 -94.223038,33.58572 -94.235367,33.561535 + -94.210884,33.557987 -94.205345,33.585079 -94.159515,33.593773 + -94.155167,33.567085 -94.098701,33.572998 -94.086655,33.583954 + -94.061432,33.577213 -94.035927,33.555912 -94.036507,33.270325 + -94.03875,33.023289 -94.041603,32.882347 -94.040199,32.694813 + -94.035233,32.389225 -94.034767,32.199448 -94.035065,31.994513 + -94.009888,31.989134 -94.004395,31.977942 -93.977211,31.946159 + -93.969986,31.923164 -93.93573,31.909456 -93.917923,31.909702 + -93.923462,31.892593 -93.899261,31.894455 -93.892525,31.870066 + -93.881264,31.87142 -93.877403,31.850113 -93.864822,31.817272 + -93.834328,31.802017 -93.822067,31.774637 -93.831161,31.753281 + -93.80999,31.730352 -93.814949,31.712351 -93.808769,31.707565 + -93.792267,31.711395 -93.811844,31.674566 -93.806427,31.653767 + -93.814728,31.647966 -93.819588,31.618092 -93.835579,31.615189 + -93.832619,31.590183 -93.816322,31.57711 -93.810516,31.559063 + -93.780128,31.533735 -93.763306,31.530724 -93.747543,31.537718 + -93.731659,31.521877 -93.705795,31.520569 -93.718994,31.495403 + -93.750435,31.490557 -93.751244,31.4855 -93.726784,31.459475 + -93.698418,31.461458 -93.701927,31.446251 -93.687004,31.438131 + -93.696129,31.427736 -93.694443,31.415922 -93.687492,31.40613 + -93.664017,31.398329 -93.661072,31.372395 -93.634857,31.373827 + -93.67704,31.328386 -93.681587,31.312679 -93.656128,31.286671 + -93.645592,31.290262 -93.630829,31.273903 -93.616455,31.275805 + -93.611877,31.270033 -93.611,31.242188 -93.590546,31.229687 -93.602921,31.199066 + -93.593941,31.180199 -93.576942,31.17214 -93.550591,31.190929 + -93.528923,31.185774 -93.526932,31.178076 -93.537018,31.17634 + -93.528328,31.162943 -93.544189,31.159166 -93.537506,31.132441 + -93.528091,31.125925 -93.535088,31.116072 -93.556679,31.109343 + -93.559982,31.100536 -93.543121,31.094751 -93.544106,31.082373 + -93.516998,31.074671 -93.525742,31.05698 -93.507217,31.038908 + -93.547119,31.014141 -93.564941,31.018063 -93.567894,31.012924 + -93.570847,30.997271 -93.560951,30.99169 -93.572456,30.976177 + -93.548676,30.97019 -93.537338,30.956884 -93.532188,30.960732 -93.52562,30.93582 + -93.529984,30.926971 -93.549622,30.924885 -93.546516,30.905334 + -93.564476,30.901932 -93.568497,30.886234 -93.560844,30.87188 + -93.552803,30.860283 -93.566444,30.845148 -93.555641,30.842342 + -93.550682,30.828344 -93.581871,30.80204 -93.585175,30.772184 + -93.618454,30.745789 -93.607651,30.73201 -93.61779,30.732548 + -93.612411,30.710329 -93.617607,30.686802 -93.659988,30.672859 + -93.677971,30.639692 -93.692879,30.640041 -93.684586,30.623425 + -93.692696,30.615795 -93.671585,30.597832 -93.69342,30.598835 + -93.717812,30.587379 -93.71788,30.568153 -93.735306,30.545517 + -93.70546,30.522858 -93.714638,30.505114 -93.707275,30.496241 + -93.714851,30.488628 -93.697975,30.470047 -93.703423,30.462513 + -93.696571,30.442633 -93.721535,30.43298 -93.742561,30.408823 + -93.754944,30.381788 -93.747833,30.367411 -93.759338,30.354145 + -93.759178,30.340872 -93.729774,30.304916 -93.699211,30.297388 + -93.707359,30.239372 -93.714844,30.220306 -93.704361,30.180861 + -93.696167,30.175676 -93.699661,30.150808 -93.683144,30.148232 + -93.685959,30.141253 -93.698639,30.141226 -93.696922,30.117929 + -93.708382,30.11474 -93.715858,30.095669 -93.712479,30.06052 + -93.760201,30.005964 -93.857277,29.990654 -93.856331,29.964602 + -93.951767,29.818363 -93.834961,29.67457 -94.065407,29.674076 -94.356995,29.5599 + -94.377007,29.55197 -94.682518,29.432905 -94.766548,29.363993 + -94.785248,29.383261 -94.681915,29.475111 -94.572693,29.533052 + -94.501282,29.517523 -94.469795,29.55678 -94.510811,29.545147 + -94.533699,29.553984 -94.564438,29.578999 -94.788086,29.538557 + -94.706421,29.658516 -94.700279,29.754568 -94.735725,29.792986 + -94.829414,29.759857 -94.887161,29.668539 -94.932587,29.682209 + -95.088264,29.80398 -95.040398,29.711578 -94.989334,29.679701 + -95.014122,29.559265 -94.911156,29.500334 -94.982811,29.460527 + -94.943756,29.464682 -94.952507,29.424234 -94.913445,29.420113 + -94.916992,29.447823 -94.891136,29.399324 -94.815353,29.370932 + -94.891472,29.393831 -94.898788,29.308775 -94.951134,29.325922 + -95.066368,29.195877 -95.160522,29.200031 -95.16478,29.117548 + -95.197342,29.105223 -95.248405,28.978392 -95.526581,28.803242 + -95.683029,28.726954 -95.671318,28.752682 -95.786354,28.738871 + -95.937309,28.690454 -95.956146,28.622673 -95.702148,28.718987 + -96.206581,28.488386 -95.991646,28.596424 -95.983749,28.653133 + -96.237587,28.571321 -96.239029,28.597116 -96.157471,28.611231 + -96.240456,28.634859 -96.151062,28.762672 -96.212173,28.68672 + -96.285973,28.661724 -96.270378,28.708981 -96.326157,28.634089 + -96.364159,28.617981 -96.391777,28.670252 -96.392731,28.726028 + -96.427086,28.712013 -96.449677,28.755035 -96.432259,28.697248 + -96.403397,28.719494 -96.418785,28.638664 -96.375397,28.610088 + -96.491203,28.556944 -96.437157,28.596991 -96.454384,28.655933 + -96.483269,28.598055 -96.511894,28.608181 -96.511734,28.649542 + -96.570396,28.636267 -96.570557,28.691841 -96.572212,28.808174 + -96.576485,28.690689 -96.591499,28.71736 -96.646515,28.714142 + -96.660011,28.679075 -96.606705,28.623634 -96.610344,28.558941 + -96.566704,28.574099 -96.48658,28.506222 -96.563194,28.469627 + -96.518501,28.460827 -96.476501,28.499454 -96.390724,28.434059 + -96.661308,28.306263 -96.702362,28.340197 -96.703812,28.395885 + -96.740768,28.403458 -96.787094,28.477507 -96.823875,28.44964 + -96.788338,28.446255 -96.759102,28.410912 -96.77536,28.39163 + -96.853493,28.404997 -96.788231,28.35247 -96.78627,28.312859 + -96.793335,28.271372 -96.777931,28.229349 -96.803688,28.211447 + -96.950905,28.114355 -96.91272,28.256798 -96.975304,28.210751 + -96.941071,28.186771 -96.975105,28.115046 -97.033615,28.137398 + -97.023567,28.199797 -97.131836,28.130426 -97.135414,28.16181 + -97.167992,28.15946 -97.157059,28.116381 -97.260284,28.064724 + -97.241234,28.048653 -97.270294,28.025932 -97.236214,28.04052 + -97.123077,28.054266 -97.026405,28.10775 -97.023804,28.020237 + -97.114624,27.915386 -97.195465,27.81222 -97.247025,27.822319 + -97.213341,27.83111 -97.283485,27.871145 -97.361046,27.839954 + -97.345619,27.873178 -97.479355,27.852962 -97.496681,27.875469 + -97.521698,27.863626 -97.499535,27.843243 -97.479813,27.820282 + -97.388542,27.831427 -97.396561,27.77084 -97.317795,27.712225 + -97.34951,27.715328 -97.320015,27.690634 -97.353363,27.6408 -97.399216,27.633186 + -97.347504,27.631439 -97.309212,27.707863 -97.249794,27.688831 + -97.331459,27.562321 -97.412262,27.321024 -97.500435,27.319668 + -97.507538,27.439215 -97.528381,27.344101 -97.600113,27.300135 + -97.750076,27.419666 -97.680008,27.294373 -97.784744,27.28772 + -97.548157,27.230207 -97.427216,27.265133 -97.503502,27.081541 + -97.478996,26.996508 -97.568565,26.977858 -97.558052,26.846052 + -97.495575,26.793781 -97.451698,26.600985 -97.425858,26.518225 + -97.474709,26.476805 -97.421188,26.385059 -97.368698,26.35906 + -97.353363,26.182449 -97.25312,26.068316 -97.276321,26.002275 + -97.213097,26.009068 -97.172226,25.954569 -97.307144,25.965124 + -97.304436,25.938663 -97.380989,25.917021 -97.385643,25.845362 + -97.434349,25.845198 -97.590088,25.933231 -97.574936,25.954172 + -97.612923,25.962002 -97.647972,26.023445 -97.867432,26.060141 + -98.04007,26.059395 -98.076347,26.034626 -98.083214,26.065758 + -98.200691,26.055376 -98.291946,26.098104 -98.271355,26.120895 + -98.292274,26.132809 -98.327934,26.111647 -98.347191,26.15868 + -98.384521,26.156031 -98.453392,26.220911 -98.488518,26.201544 + -98.599968,26.260454 -98.677917,26.242056 -98.819832,26.375071 + -98.908897,26.360329 -98.93927,26.395309 -99.106728,26.419531 + -99.101471,26.48834 -99.168678,26.545729 -99.165817,26.579889 + -99.285522,26.857361 -99.390518,26.94663 -99.392715,26.99555 + -99.455063,27.028648 -99.437157,27.199198 -99.465271,27.269884 + -99.543587,27.318653 -99.490494,27.490755 -99.526741,27.504284 + -99.549187,27.612627 -99.714493,27.661558 -99.815727,27.780107 + -99.874733,27.797686 -99.941856,27.986881 -99.993309,28.00346 + -100.096924,28.154282 -100.214073,28.201935 -100.223465,28.241457 + -100.29792,28.280354 -100.292892,28.32036 -100.35157,28.394182 + -100.37677,28.478651 -100.345802,28.500811 -100.419533,28.544191 + -100.403175,28.589733 -100.49791,28.660988 -100.58979,28.894222 + -100.647224,28.92235 -100.66877,29.080072 -100.768608,29.166571 + -100.796989,29.242502 -101.009056,29.373255 -101.06736,29.473553 + -101.261429,29.526474 -101.254585,29.62875 -101.308929,29.58091 + -101.305862,29.652431 -101.368401,29.657162 -101.4161,29.745434 + -101.401276,29.769905 -101.448425,29.760586 -101.470467,29.788691 + -101.538345,29.763018 -101.543953,29.81012 -101.58149,29.76515 + -101.639671,29.75696 -101.759094,29.787167 -101.805206,29.779999 + -101.819099,29.814125 -101.924225,29.788502 -101.97332,29.818773 + -102.063995,29.784571 -102.324333,29.880116 -102.367561,29.845289 + -102.384796,29.767946 -102.503098,29.785456 -102.551949,29.7495 + -102.5765,29.778248 -102.637611,29.732338 -102.676361,29.744225 + -102.804726,29.530146 -102.822205,29.411844 -102.883011,29.353371 + -102.908325,29.269203 -102.866173,29.229036 -102.988098,29.190863 + -103.153465,28.978682 -103.266586,29.007454 -103.28035,28.986374 + -103.335518,29.050339 -103.37545,29.032108 -103.474075,29.072134 + -103.526237,29.146646 -103.720314,29.190632 -103.739853,29.230349 + -103.782158,29.229795 -103.767761,29.28124 -103.786995,29.26726 + -104.045631,29.328119 -104.164383,29.400715 -104.204735,29.484041 + -104.377594,29.550611 -104.535248,29.679466 -104.57756,29.807936 + -104.67437,29.909283 -104.696495,30.057302 -104.674759,30.148964 + -104.702614,30.238489 -104.813957,30.35047 -104.806473,30.376448 + -104.852997,30.392263 -104.890678,30.570557 -104.986931,30.641325 + -104.997543,30.684334 -105.060562,30.68787 -105.21434,30.812086 + -105.258186,30.797653 -105.287598,30.831949 -105.313782,30.816507 + -105.390312,30.853081 -105.409065,30.90251 -105.554382,30.998285 + -105.603218,31.086428 -105.76973,31.17078 -105.99836,31.393818 + + + + + + + + + + + -94.913429,29.257572 -94.76738,29.342451 -94.748405,29.31949 + -95.105415,29.096958 -94.913429,29.257572 + + + + + + + + + + + -96.397881,28.345846 -96.834625,28.066322 -96.803841,28.172161 + -96.738907,28.183535 -96.532135,28.318245 -96.463051,28.325832 + -96.422554,28.391439 -96.397881,28.345846 + + + + + + + + + + + -96.939964,28.045933 -96.872421,28.131405 -96.837425,28.101841 + -96.853806,28.049402 -97.049606,27.840954 -97.024429,27.914381 + -96.949387,27.984526 -96.973,28.000853 -96.939964,28.045933 + + + + + + + + + + + -97.359116,27.283718 -97.379379,27.210453 -97.376091,27.284643 + -97.335503,27.440819 -97.248672,27.581133 -97.258682,27.651749 + -97.203583,27.612064 -97.170181,27.70746 -97.075294,27.811274 + -97.113037,27.819216 -97.053566,27.830473 -97.223717,27.574007 + -97.359116,27.283718 + + + + + + + + + + + -97.301132,26.601023 -97.358025,26.706646 -97.381332,26.820375 + -97.395309,26.921988 -97.400909,27.111227 -97.388786,27.201651 + -97.378532,27.204449 -97.386925,27.097244 -97.381332,26.949022 + -97.358025,26.802664 -97.295837,26.60067 -97.232109,26.418142 + -97.194992,26.259241 -97.171799,26.077721 -97.179337,26.07192 + -97.208916,26.250542 -97.226311,26.348551 -97.251251,26.419304 + -97.26725,26.478905 -97.278549,26.539963 -97.301132,26.601023 + + + + + + + + Texas + 48 + W S Cen + TX + 688219.07 + 17337.549 + 1.712202E7 + 4377106.0 + 6115966.0 + 8433346.00000001 + 8688674.0 + 6192585.0 + 5860490.0 + 1142908.0 + 168814.0 + 7687338.0 + 590269.0 + 2139266.0 + 1042397.0 + 0.493 + 0.507 + 2487642.0 + + + + + + + + + + + + -109.048882,32.441967 -109.050728,32.77948 -109.049904,33.205101 + -109.049721,33.783249 -109.048012,34.59174 -109.045998,34.954613 + -109.047195,35.996655 -109.047821,36.996643 -108.371834,36.999474 + -107.471855,36.998772 -107.410217,36.99752 -106.889778,36.999073 + -106.860657,36.989491 -106.471588,36.991493 -105.991425,36.992275 + -105.712891,36.994541 -105.212532,36.99258 -105.145615,36.993183 + -103.993111,36.994446 -103.077377,36.999741 -102.997223,36.998505 + -102.996918,36.492344 -103.026802,36.491566 -103.02356,36.056026 + -103.022118,35.742287 -103.021797,35.623604 -103.02565,35.177208 + -103.02475,34.964718 -103.022156,34.745266 -103.029144,34.307743 + -103.032761,33.826088 -103.038239,33.565742 -103.042603,33.377728 + -103.048836,32.953533 -103.059547,32.51543 -103.055191,32.084995 + -103.057968,32.0019 -103.332092,32.004154 -103.728973,32.006104 + -103.980896,32.00589 -104.018814,32.007278 -104.850563,32.003151 + -104.921799,32.004269 -106.002708,32.001553 -106.377846,32.000645 + -106.623077,32.000988 -106.649513,31.980228 -106.632057,31.972118 + -106.633202,31.913998 -106.643532,31.895102 -106.615578,31.844635 + -106.614441,31.817728 -106.538971,31.786198 -107.282997,31.784981 + -108.20266,31.786804 -108.21006,31.343742 -109.045006,31.343348 + -109.048882,32.441967 + + + + + + + + New Mexico + 35 + Mtn + NM + 304472.805 + 586.054 + 1379559.0 + 358259.0 + 497680.0 + 677870.0 + 701689.0 + 491847.0 + 433150.0 + 87085.0 + 6019.0 + 576213.0 + 49368.0 + 169914.0 + 68673.0 + 0.491 + 0.509 + 237629.0 + + + + + + + + + + + + -85.070137,31.980545 -85.115219,31.907265 -85.135635,31.854723 + -85.13163,31.783651 -85.130234,31.77869 -85.115356,31.731401 + -85.118744,31.708406 -85.111275,31.684076 -85.059357,31.621098 + -85.042793,31.55422 -85.04277,31.519489 -85.066383,31.475918 + -85.061478,31.440491 -85.088013,31.36706 -85.082634,31.332159 + -85.081299,31.302904 -85.103432,31.271259 -85.093674,31.226896 + -85.103027,31.196743 -85.093437,31.172031 -85.068733,31.162184 + -85.038139,31.126532 -85.017067,31.07992 -85.001678,31.001068 + -85.485077,31.00082 -85.486664,31.000816 -86.031883,30.993147 + -86.181534,30.995045 -86.383972,30.991358 -86.701897,30.997911 + -86.779404,30.998011 -87.163147,31.002975 -87.598595,31.002449 + -87.589882,30.954178 -87.625725,30.876717 -87.615929,30.84811 + -87.541916,30.785507 -87.526619,30.748302 -87.460159,30.705612 + -87.418915,30.692619 -87.398666,30.667824 -87.393303,30.619905 + -87.422089,30.556299 -87.445374,30.531195 -87.418839,30.481504 + -87.405273,30.440163 -87.466461,30.359522 -87.587585,30.319054 + -87.593422,30.278214 -87.795341,30.233728 -88.002563,30.2334 + -87.779953,30.272436 -87.757515,30.299221 -87.903473,30.421099 + -87.913391,30.620993 -88.019791,30.744001 -88.135681,30.336958 + -88.32032,30.404095 -88.401405,30.393353 -88.417229,30.736267 + -88.429184,31.000511 -88.434547,31.120699 -88.450783,31.43545 + -88.465073,31.702085 -88.472923,31.888723 -88.437691,32.227612 + -88.425758,32.309082 -88.393799,32.580334 -88.348007,32.924629 + -88.339432,32.98737 -88.304794,33.288773 -88.274551,33.538685 + -88.248161,33.742615 -88.202606,34.059017 -88.19931,34.090343 + -88.167572,34.324047 -88.151215,34.465176 -88.13636,34.580402 + -88.090431,34.895542 -88.108849,34.899849 -88.143066,34.930225 + -88.193954,35.004368 -88.194923,35.013458 -87.986046,35.015949 + -87.607788,35.010464 -87.222748,35.007263 -87.207573,35.007877 + -86.83342,34.998161 -86.782372,34.99699 -86.313065,34.995186 + -86.303513,34.995377 -85.869591,34.992302 -85.608994,34.990086 + -85.583092,34.862244 -85.534729,34.622406 -85.525871,34.584602 + -85.511894,34.52293 -85.460327,34.29007 -85.416611,34.086823 + -85.395782,33.959728 -85.384056,33.905308 -85.335335,33.654816 + -85.305031,33.490482 -85.293877,33.425762 -85.233902,33.129116 + -85.233559,33.120018 -85.180779,32.871685 -85.162361,32.807316 + -85.128151,32.776939 -85.133362,32.756184 -85.124947,32.744251 + -85.11393,32.734257 -85.107796,32.689838 -85.090538,32.676018 + -85.103867,32.645775 -85.086388,32.628315 -85.084213,32.602867 + -85.070839,32.581116 -84.99572,32.518787 -84.989883,32.454693 + -84.965454,32.429306 -84.971031,32.396667 -84.984558,32.386948 + -84.971733,32.371357 -85.002159,32.346931 -85.005402,32.329445 + -84.921143,32.292988 -84.894676,32.268585 -84.894089,32.259026 + -84.905434,32.249405 -84.923752,32.247238 -84.916077,32.228405 + -84.928444,32.217827 -84.975815,32.212097 -84.960457,32.191776 + -85.007896,32.178726 -85.024452,32.166122 -85.053383,32.126484 + -85.046257,32.09074 -85.056725,32.069489 -85.06208,32.049854 -85.05677,32.01722 + -85.070137,31.980545 + + + + + + + + Alabama + 01 + E S Cen + AL + 131443.119 + 4332.268 + 4040587.0 + 1103835.0 + 1506790.0 + 1936162.0 + 2104425.0 + 1455669.0 + 1374395.0 + 267191.0 + 13279.0 + 1741794.0 + 128587.0 + 474797.0 + 360499.0 + 0.479 + 0.521 + 630032.0 + + + + + + + + + + + + -88.450783,31.43545 -88.434547,31.120699 -88.429184,31.000511 + -88.417229,30.736267 -88.401405,30.393353 -88.399216,30.352686 + -88.464226,30.325876 -88.577744,30.38055 -88.683243,30.342123 + -88.873756,30.430079 -88.930191,30.416603 -88.885696,30.39809 + -89.276077,30.314644 -89.273483,30.37219 -89.334999,30.380228 + -89.357483,30.365089 -89.318497,30.318657 -89.415565,30.256289 + -89.438072,30.200769 -89.57383,30.194738 -89.609947,30.241224 + -89.606255,30.247633 -89.621605,30.256769 -89.625885,30.290161 + -89.639114,30.295635 -89.637024,30.311649 -89.61853,30.323566 + -89.62014,30.343235 -89.633392,30.355114 -89.646629,30.355097 + -89.65461,30.378872 -89.675308,30.399881 -89.6754,30.44516 -89.683388,30.462526 + -89.694534,30.467995 -89.695618,30.478054 -89.71312,30.481224 + -89.718994,30.495846 -89.732254,30.497646 -89.755112,30.51543 + -89.772728,30.551056 -89.790779,30.553753 -89.820236,30.624081 + -89.805466,30.649267 -89.819283,30.651056 -89.829453,30.670685 + -89.845375,30.666063 -89.83532,30.675694 -89.841713,30.679331 + -89.84127,30.700361 -89.83065,30.703592 -89.843979,30.712236 + -89.835541,30.729174 -89.823326,30.732866 -89.825493,30.74246 + -89.813278,30.74798 -89.824615,30.789537 -89.81086,30.811512 + -89.796494,30.812466 -89.796021,30.828918 -89.774727,30.830345 + -89.78495,30.861393 -89.765778,30.861898 -89.763237,30.900286 + -89.746727,30.902609 -89.745682,30.909922 -89.75798,30.920858 + -89.740402,30.925924 -89.748466,30.949663 -89.739449,30.965216 + -89.719749,30.975309 -89.726707,30.984432 -89.723549,31.001341 + -89.732643,31.007261 -89.833481,31.007002 -90.259285,31.007191 + -90.343567,31.005211 -90.542557,31.002151 -90.560158,31.001528 + -90.829613,31.001368 -91.056908,31.00024 -91.1791,31.000284 -91.632179,31.001186 + -91.627655,31.011782 -91.57267,31.032471 -91.551964,31.057983 + -91.564857,31.081959 -91.619995,31.127518 -91.59137,31.178307 + -91.600845,31.213755 -91.636879,31.240929 -91.643562,31.270943 + -91.634094,31.277519 -91.556801,31.270296 -91.51696,31.282898 + -91.502357,31.298687 -91.505638,31.323286 -91.542671,31.346815 + -91.544289,31.368704 -91.534454,31.38258 -91.559258,31.38806 + -91.567612,31.421236 -91.552353,31.43293 -91.534683,31.434166 + -91.53405,31.409069 -91.522896,31.391922 -91.494591,31.37508 + -91.480721,31.377611 -91.465805,31.4039 -91.473175,31.420206 + -91.507782,31.452915 -91.506363,31.52552 -91.502838,31.534714 -91.464355,31.5427 + -91.423462,31.56258 -91.404137,31.586187 -91.415268,31.602427 + -91.497032,31.604193 -91.508759,31.62178 -91.50769,31.643705 -91.49765,31.65073 + -91.45726,31.626801 -91.408287,31.625364 -91.389069,31.65444 + -91.387833,31.716518 -91.36496,31.751577 -91.370384,31.753311 + -91.339798,31.758379 -91.282509,31.749723 -91.263878,31.7596 + -91.262573,31.773764 -91.336143,31.763458 -91.36702,31.770704 + -91.347122,31.79567 -91.334732,31.843317 -91.30336,31.862984 + -91.292534,31.861332 -91.276688,31.827372 -91.250618,31.818659 + -91.241272,31.835226 -91.26458,31.865425 -91.24437,31.878511 + -91.201431,31.914289 -91.163033,31.988291 -91.108002,31.991827 + -91.07238,32.021057 -91.073135,32.031994 -91.086884,32.043655 + -91.143013,32.066105 -91.145584,32.085674 -91.125618,32.088245 + -91.089302,32.056843 -91.06501,32.058552 -91.073814,32.093994 + -91.041084,32.10767 -91.011284,32.13406 -91.00383,32.169262 -91.024414,32.169899 + -91.054474,32.184532 -91.045311,32.158672 -91.054047,32.134392 + -91.083008,32.148579 -91.108711,32.134991 -91.15654,32.144783 + -91.166847,32.171989 -91.157265,32.205864 -91.115952,32.225605 + -91.100571,32.214886 -91.087914,32.232388 -91.062462,32.232742 + -91.041649,32.249439 -90.977219,32.223404 -90.971016,32.269066 + -90.983818,32.287132 -90.980766,32.297653 -90.971657,32.303699 + -90.929245,32.297405 -90.916374,32.305317 -90.875351,32.37965 + -90.885155,32.381355 -90.914925,32.345898 -90.984566,32.356396 + -90.998863,32.366234 -91.009209,32.397083 -90.969986,32.419018 + -90.965485,32.440037 -90.98745,32.452965 -91.026909,32.442417 + -91.05851,32.446999 -91.117683,32.498569 -91.118744,32.524067 + -91.088783,32.548637 -91.037201,32.496956 -91.019684,32.490814 + -90.99205,32.495281 -90.995071,32.511642 -91.063087,32.54216 + -91.073265,32.561611 -91.058868,32.576389 -91.032326,32.582672 + -90.998657,32.615467 -90.996132,32.625977 -91.007881,32.642673 + -91.027466,32.641502 -91.04763,32.614353 -91.063812,32.606388 + -91.110992,32.597527 -91.146263,32.644852 -91.139557,32.663174 + -91.059029,32.723518 -91.09771,32.749397 -91.136467,32.751125 + -91.156342,32.76268 -91.142151,32.841213 -91.079529,32.877163 + -91.075592,32.953712 -91.092674,32.987621 -91.111816,32.98735 + -91.132355,32.975224 -91.129936,32.937466 -91.137177,32.917786 + -91.169701,32.905022 -91.198311,32.914162 -91.20916,32.935852 + -91.161865,33.000294 -91.162132,33.013039 -91.160675,33.021709 + -91.156685,33.040432 -91.123985,33.047272 -91.11779,33.065571 + -91.14679,33.090652 -91.190536,33.113224 -91.195503,33.140465 + -91.177628,33.150288 -91.12133,33.131069 -91.095856,33.145084 + -91.086319,33.161602 -91.092003,33.225697 -91.054543,33.245781 + -91.040428,33.281921 -91.053833,33.293575 -91.076324,33.292358 + -91.102905,33.24921 -91.122505,33.268505 -91.141747,33.322384 + -91.130424,33.359402 -91.106941,33.393406 -91.07869,33.410179 + -91.061516,33.431797 -91.060982,33.460011 -91.073761,33.466206 + -91.0858,33.462856 -91.099129,33.414898 -91.137634,33.388878 -91.184982,33.39183 + -91.204163,33.414299 -91.19883,33.422112 -91.130516,33.443123 + -91.119713,33.452831 -91.118958,33.469673 -91.128799,33.493191 + -91.164978,33.51178 -91.174179,33.504368 -91.17173,33.466644 -91.18177,33.447388 + -91.232849,33.443443 -91.22715,33.459454 -91.207642,33.473396 + -91.180405,33.512012 -91.182846,33.52335 -91.204102,33.538506 + -91.213486,33.539276 -91.227631,33.556351 -91.22673,33.590481 + -91.187805,33.57468 -91.168022,33.577244 -91.15065,33.616161 + -91.154404,33.637032 -91.205307,33.669945 -91.215141,33.690723 + -91.211678,33.708965 -91.1633,33.718315 -91.121048,33.677528 + -91.083771,33.662586 -91.037834,33.683216 -91.038826,33.70549 + -91.056213,33.719357 -91.104568,33.708233 -91.128944,33.71244 -91.138,33.723225 + -91.142891,33.77182 -91.136986,33.780087 -91.105415,33.77644 + -91.066391,33.786526 -91.043404,33.769554 -91.018433,33.763973 + -90.995377,33.771549 -90.984039,33.785339 -90.990372,33.798897 + -91.028854,33.816586 -91.054817,33.843525 -91.061371,33.867081 + -91.018463,33.936306 -91.075706,33.974644 -91.088852,33.994469 + -91.069695,34.006096 -91.031059,33.985699 -91.009544,33.990528 + -91.000259,33.968372 -90.986816,33.960815 -90.96479,33.967461 + -90.961128,33.978874 -90.975273,33.994606 -90.973366,34.010998 + -90.95047,34.031288 -90.886345,34.04071 -90.866333,34.100952 + -90.906311,34.102749 -90.942245,34.125942 -90.953346,34.155804 + -90.928917,34.18565 -90.846611,34.147545 -90.828865,34.148659 + -90.80751,34.166172 -90.822922,34.190544 -90.921486,34.20483 + -90.933708,34.234676 -90.928436,34.250195 -90.863411,34.219162 + -90.83136,34.229534 -90.823837,34.27734 -90.806419,34.299347 + -90.792526,34.299957 -90.758255,34.278976 -90.747757,34.317719 + -90.761856,34.363914 -90.75531,34.372166 -90.687485,34.377872 -90.681137,34.3634 + -90.689377,34.320145 -90.679337,34.317974 -90.657814,34.330006 + -90.657242,34.36591 -90.60379,34.404598 -90.579124,34.432999 + -90.574402,34.453945 -90.59005,34.496506 -90.580345,34.520222 + -90.565681,34.532509 -90.537148,34.543327 -90.530617,34.555649 + -90.577614,34.604744 -90.58799,34.627815 -90.5793,34.645611 -90.561058,34.700287 + -90.539062,34.685947 -90.547546,34.651806 -90.538963,34.636894 + -90.508812,34.638065 -90.466225,34.672039 -90.469978,34.704254 + -90.513565,34.702068 -90.533279,34.713253 -90.547745,34.790337 + -90.52726,34.807323 -90.516045,34.805603 -90.501282,34.789833 + -90.498734,34.765785 -90.516968,34.748371 -90.504417,34.729855 + -90.485924,34.726833 -90.451431,34.741199 -90.448868,34.76075 + -90.466705,34.799664 -90.451904,34.825218 -90.474716,34.857727 + -90.470528,34.880924 -90.438087,34.886181 -90.427841,34.872643 + -90.433548,34.835354 -90.42231,34.832268 -90.403931,34.841038 + -90.341423,34.860577 -90.322823,34.850266 -90.301552,34.851776 + -90.299446,34.86496 -90.296272,34.88269 -90.266708,34.896511 + -90.242844,34.920731 -90.241898,34.938904 -90.248169,34.94976 + -90.299507,34.978481 -90.305351,35.000694 -89.717186,34.999168 + -89.646477,35.000641 -89.3423,34.999714 -89.198067,35.000793 + -89.006134,35.000145 -88.812492,35.00235 -88.784988,35.003094 + -88.383102,35.004955 -88.351685,35.003746 -88.193954,35.004368 + -88.143066,34.930225 -88.108849,34.899849 -88.090431,34.895542 + -88.13636,34.580402 -88.151215,34.465176 -88.167572,34.324047 + -88.19931,34.090343 -88.202606,34.059017 -88.248161,33.742615 + -88.274551,33.538685 -88.304794,33.288773 -88.339432,32.98737 + -88.348007,32.924629 -88.393799,32.580334 -88.425758,32.309082 + -88.437691,32.227612 -88.472923,31.888723 -88.465073,31.702085 + -88.450783,31.43545 + + + + + + + + Mississippi + 28 + E S Cen + MS + 121506.43 + 3598.337 + 2573216.0 + 674378.0 + 911374.0 + 1230617.0 + 1342599.0 + 890741.0 + 777422.0 + 184019.0 + 8020.0 + 1028773.0 + 94712.0 + 294070.0 + 222644.0 + 0.478 + 0.522 + 399625.0 + + + + + + + + + + + + -85.130234,31.77869 -85.13163,31.783651 -85.135635,31.854723 + -85.115219,31.907265 -85.070137,31.980545 -85.05677,32.01722 -85.06208,32.049854 + -85.056725,32.069489 -85.046257,32.09074 -85.053383,32.126484 + -85.024452,32.166122 -85.007896,32.178726 -84.960457,32.191776 + -84.975815,32.212097 -84.928444,32.217827 -84.916077,32.228405 + -84.923752,32.247238 -84.905434,32.249405 -84.894089,32.259026 + -84.894676,32.268585 -84.921143,32.292988 -85.005402,32.329445 + -85.002159,32.346931 -84.971733,32.371357 -84.984558,32.386948 + -84.971031,32.396667 -84.965454,32.429306 -84.989883,32.454693 + -84.99572,32.518787 -85.070839,32.581116 -85.084213,32.602867 + -85.086388,32.628315 -85.103867,32.645775 -85.090538,32.676018 + -85.107796,32.689838 -85.11393,32.734257 -85.124947,32.744251 + -85.133362,32.756184 -85.128151,32.776939 -85.162361,32.807316 + -85.180779,32.871685 -85.233559,33.120018 -85.233902,33.129116 + -85.293877,33.425762 -85.305031,33.490482 -85.335335,33.654816 + -85.384056,33.905308 -85.395782,33.959728 -85.416611,34.086823 + -85.460327,34.29007 -85.511894,34.52293 -85.525871,34.584602 + -85.534729,34.622406 -85.583092,34.862244 -85.608994,34.990086 + -85.467422,34.990047 -85.359985,34.989902 -85.267761,34.989075 + -84.972847,34.992554 -84.967911,34.992607 -84.800476,34.992756 + -84.771194,34.990681 -84.618752,34.988682 -84.323853,34.98901 + -84.11824,34.988224 -83.988548,34.989067 -83.937996,34.989391 + -83.549416,34.989536 -83.513008,34.992023 -83.106285,35.000278 + -83.100578,34.984074 -83.115669,34.954597 -83.121529,34.960804 + -83.127441,34.954285 -83.113228,34.936035 -83.125763,34.940701 + -83.137688,34.930386 -83.155151,34.93219 -83.158478,34.917561 + -83.182304,34.910557 -83.203636,34.884079 -83.219551,34.889091 + -83.232925,34.87373 -83.243195,34.877991 -83.235809,34.862293 + -83.250427,34.850075 -83.250542,34.839619 -83.267891,34.839138 + -83.270233,34.814987 -83.302872,34.805439 -83.322807,34.787151 + -83.32354,34.75214 -83.350449,34.727287 -83.3508,34.709553 -83.339905,34.677597 + -83.299011,34.662849 -83.237106,34.613224 -83.165001,34.598839 + -83.159073,34.576733 -83.137489,34.567768 -83.108246,34.534916 + -83.079147,34.518871 -83.055122,34.48996 -83.00808,34.470726 + -82.982094,34.476395 -82.90519,34.477882 -82.868179,34.457439 + -82.844231,34.412571 -82.836578,34.370941 -82.808723,34.339794 + -82.783012,34.290409 -82.764313,34.280853 -82.758171,34.233265 + -82.742737,34.205444 -82.735924,34.169685 -82.6605,34.108242 + -82.603088,34.034519 -82.596283,34.013302 -82.573753,33.968784 + -82.576759,33.959167 -82.517685,33.930908 -82.456779,33.878101 + -82.424675,33.86013 -82.390747,33.854015 -82.36586,33.835884 + -82.351463,33.835266 -82.311272,33.803787 -82.305664,33.78252 + -82.266373,33.761467 -82.235054,33.690208 -82.214363,33.680603 + -82.192345,33.623707 -82.16729,33.615082 -82.139137,33.593773 + -82.116562,33.594643 -82.065842,33.57373 -82.038704,33.547371 + -82.020302,33.538597 -81.996696,33.520355 -81.981079,33.490601 + -81.936546,33.470882 -81.916801,33.451195 -81.927437,33.436005 + -81.913727,33.415302 -81.940498,33.408024 -81.925972,33.376419 + -81.945229,33.377007 -81.936874,33.350296 -81.911575,33.349354 + -81.912254,33.332054 -81.893646,33.335094 -81.877037,33.306694 + -81.865707,33.315525 -81.840271,33.308201 -81.860878,33.296947 + -81.826736,33.269279 -81.840004,33.273163 -81.83696,33.260468 + -81.854126,33.243355 -81.810928,33.226295 -81.801727,33.207779 + -81.779999,33.21722 -81.770042,33.213734 -81.759758,33.195232 + -81.763573,33.169685 -81.74054,33.144547 -81.704445,33.122787 + -81.61113,33.087723 -81.595993,33.070637 -81.560204,33.060661 + -81.547829,33.04353 -81.52977,33.043774 -81.508919,33.012638 + -81.492905,33.004658 -81.49807,32.959518 -81.51001,32.955261 + -81.510406,32.947063 -81.477219,32.897411 -81.465202,32.897568 + -81.483376,32.875931 -81.45871,32.871239 -81.45549,32.844414 + -81.432503,32.841518 -81.424133,32.831608 -81.430481,32.820141 + -81.421005,32.80933 -81.430412,32.785988 -81.416245,32.756561 + -81.42321,32.749645 -81.407799,32.741638 -81.420708,32.701397 + -81.407364,32.686531 -81.399651,32.650642 -81.412277,32.625435 + -81.385078,32.595707 -81.36644,32.588188 -81.366875,32.581802 + -81.351662,32.583351 -81.340576,32.571182 -81.299156,32.567108 + -81.274475,32.554634 -81.268158,32.533749 -81.236412,32.520432 + -81.195328,32.464375 -81.200096,32.420128 -81.178421,32.386639 + -81.179291,32.37159 -81.157646,32.338547 -81.142052,32.348274 + -81.132057,32.332424 -81.124214,32.276447 -81.148338,32.257515 + -81.147858,32.224247 -81.114883,32.190392 -81.119278,32.117409 + -81.105042,32.10524 -80.89492,32.005779 -80.973724,31.947712 + -80.971046,31.890095 -81.140022,31.864124 -81.180168,31.905678 + -81.207428,31.899908 -81.197472,31.919683 -81.204079,31.928221 + -81.239853,31.903204 -81.284462,31.949219 -81.245117,31.89448 + -81.206657,31.920439 -81.220276,31.892927 -81.18042,31.897459 -81.14164,31.8533 + -81.039185,31.823139 -81.061218,31.777321 -81.137001,31.726852 + -81.174187,31.799593 -81.196541,31.784626 -81.175354,31.735582 + -81.289902,31.79945 -81.135117,31.645847 -81.18737,31.599676 + -81.240898,31.639954 -81.239326,31.556662 -81.194954,31.504929 + -81.208755,31.466673 -81.313248,31.33737 -81.365761,31.344328 + -81.410522,31.311253 -81.394951,31.263861 -81.388992,31.296921 + -81.301018,31.275589 -81.310432,31.242464 -81.381187,31.148714 + -81.528564,31.130898 -81.525436,31.086317 -81.475517,31.043591 + -81.535606,31.076525 -81.491035,30.985579 -81.52874,30.961885 + -81.485008,30.944666 -81.529449,30.864544 -81.498566,30.757278 + -81.528778,30.721216 -81.536774,30.706341 -81.601349,30.724651 + -81.60495,30.716085 -81.628159,30.731539 -81.642654,30.728846 + -81.716942,30.745134 -81.736847,30.763655 -81.757881,30.769398 + -81.776878,30.761351 -81.803368,30.787851 -81.873169,30.798851 + -81.899307,30.828075 -81.907684,30.813242 -81.94397,30.824017 + -81.953194,30.820198 -81.961716,30.795774 -81.981644,30.778118 + -82.015701,30.791086 -82.01313,30.764023 -82.032043,30.757299 + -82.045074,30.650677 -82.013817,30.598455 -82.005966,30.570755 + -82.022675,30.477482 -82.035286,30.442642 -82.046265,30.433832 + -82.038521,30.378668 -82.052933,30.363558 -82.164803,30.361057 + -82.180397,30.368397 -82.205727,30.42362 -82.199348,30.489782 + -82.219528,30.502739 -82.238556,30.531214 -82.221199,30.566845 + -82.412247,30.577084 -82.463287,30.582468 -82.583107,30.588835 + -82.696503,30.595503 -83.132576,30.62113 -83.301445,30.633078 + -83.31073,30.634096 -83.609177,30.650583 -83.737961,30.660292 + -84.000839,30.675341 -84.075668,30.678381 -84.281761,30.690224 + -84.374542,30.693897 -84.863083,30.712473 -84.864662,30.714312 + -84.888367,30.743698 -84.915421,30.753899 -84.926971,30.775898 + -84.93264,30.802435 -84.927002,30.846733 -84.937851,30.89477 + -84.969086,30.926907 -84.97364,30.963478 -85.000214,30.979134 + -85.001678,31.001068 -85.017067,31.07992 -85.038139,31.126532 + -85.068733,31.162184 -85.093437,31.172031 -85.103027,31.196743 + -85.093674,31.226896 -85.103432,31.271259 -85.081299,31.302904 + -85.082634,31.332159 -85.088013,31.36706 -85.061478,31.440491 + -85.066383,31.475918 -85.04277,31.519489 -85.042793,31.55422 + -85.059357,31.621098 -85.111275,31.684076 -85.118744,31.708406 + -85.115356,31.731401 -85.130234,31.77869 + + + + + + + + + + + -81.485237,30.903648 -81.416588,30.970366 -81.403236,30.938568 + -81.455902,30.71619 -81.479645,30.736647 -81.47007,30.860023 -81.503487,30.8815 + -81.485237,30.903648 + + + + + + + + Georgia + 13 + S Atl + GA + 148574.888 + 3934.991 + 6457339.0 + 1707476.0 + 2359351.0 + 3134562.0 + 3322777.0 + 2346478.0 + 2372513.0 + 465734.0 + 86587.0 + 3081555.0 + 187390.0 + 802419.0 + 536597.0 + 0.485 + 0.515 + 935083.0 + + + + + + + + + + + + -81.759758,33.195232 -81.770042,33.213734 -81.779999,33.21722 + -81.801727,33.207779 -81.810928,33.226295 -81.854126,33.243355 + -81.83696,33.260468 -81.840004,33.273163 -81.826736,33.269279 + -81.860878,33.296947 -81.840271,33.308201 -81.865707,33.315525 + -81.877037,33.306694 -81.893646,33.335094 -81.912254,33.332054 + -81.911575,33.349354 -81.936874,33.350296 -81.945229,33.377007 + -81.925972,33.376419 -81.940498,33.408024 -81.913727,33.415302 + -81.927437,33.436005 -81.916801,33.451195 -81.936546,33.470882 + -81.981079,33.490601 -81.996696,33.520355 -82.020302,33.538597 + -82.038704,33.547371 -82.065842,33.57373 -82.116562,33.594643 + -82.139137,33.593773 -82.16729,33.615082 -82.192345,33.623707 + -82.214363,33.680603 -82.235054,33.690208 -82.266373,33.761467 + -82.305664,33.78252 -82.311272,33.803787 -82.351463,33.835266 + -82.36586,33.835884 -82.390747,33.854015 -82.424675,33.86013 + -82.456779,33.878101 -82.517685,33.930908 -82.576759,33.959167 + -82.573753,33.968784 -82.596283,34.013302 -82.603088,34.034519 + -82.6605,34.108242 -82.735924,34.169685 -82.742737,34.205444 + -82.758171,34.233265 -82.764313,34.280853 -82.783012,34.290409 + -82.808723,34.339794 -82.836578,34.370941 -82.844231,34.412571 + -82.868179,34.457439 -82.90519,34.477882 -82.982094,34.476395 + -83.00808,34.470726 -83.055122,34.48996 -83.079147,34.518871 + -83.108246,34.534916 -83.137489,34.567768 -83.159073,34.576733 + -83.165001,34.598839 -83.237106,34.613224 -83.299011,34.662849 + -83.339905,34.677597 -83.3508,34.709553 -83.350449,34.727287 -83.32354,34.75214 + -83.322807,34.787151 -83.302872,34.805439 -83.270233,34.814987 + -83.267891,34.839138 -83.250542,34.839619 -83.250427,34.850075 + -83.235809,34.862293 -83.243195,34.877991 -83.232925,34.87373 + -83.219551,34.889091 -83.203636,34.884079 -83.182304,34.910557 + -83.158478,34.917561 -83.155151,34.93219 -83.137688,34.930386 + -83.125763,34.940701 -83.113228,34.936035 -83.127441,34.954285 + -83.121529,34.960804 -83.115669,34.954597 -83.100578,34.984074 + -83.106285,35.000278 -83.007278,35.024204 -82.887695,35.05537 + -82.771347,35.085423 -82.697357,35.091232 -82.688034,35.097801 + -82.68605,35.121464 -82.654495,35.119457 -82.57003,35.14949 -82.524635,35.15456 + -82.466743,35.1735 -82.43792,35.169559 -82.38961,35.208241 -82.371376,35.182724 + -82.360123,35.182949 -82.350861,35.192673 -82.32077,35.184189 + -82.278328,35.195007 -82.210175,35.193127 -81.971443,35.188282 + -81.87059,35.183117 -81.765358,35.182472 -81.362175,35.162853 + -81.322823,35.163757 -81.049301,35.151531 -81.049042,35.132011 + -81.028442,35.105408 -81.065552,35.066483 -81.039886,35.037201 + -80.927795,35.10125 -80.894714,35.059734 -80.840164,35.002018 + -80.785652,34.940639 -80.800064,34.816113 -80.561546,34.815228 + -80.325279,34.814762 -79.919952,34.807919 -79.685959,34.805256 + -79.667503,34.800663 -79.455971,34.63409 -79.447144,34.619061 + -79.074501,34.304573 -78.655716,33.948673 -78.57972,33.881992 + -78.622856,33.865536 -78.586197,33.853359 -78.855133,33.71619 + -79.000938,33.57246 -79.121101,33.430611 -79.150383,33.317089 + -79.158348,33.342266 -79.271072,33.296871 -79.202141,33.183521 + -79.22979,33.141338 -79.348976,33.154827 -79.298058,33.138794 + -79.288101,33.10453 -79.410835,33.013699 -79.582565,33.015842 + -79.617439,32.980797 -79.587852,32.924934 -79.607018,32.899071 + -79.752518,32.79406 -79.907677,32.790531 -79.800056,32.929783 + -79.907333,32.859215 -79.930443,32.914047 -79.962311,32.904236 + -79.948174,32.810623 -79.891846,32.733852 -79.896584,32.677242 + -79.996803,32.605606 -80.210983,32.561417 -80.290833,32.503883 + -80.347351,32.511768 -80.391045,32.65522 -80.416168,32.66898 + -80.399979,32.504772 -80.480881,32.510246 -80.550568,32.557655 + -80.539055,32.509678 -80.646584,32.518692 -80.64373,32.498272 + -80.486244,32.43084 -80.44297,32.373314 -80.460564,32.318489 + -80.626198,32.272621 -80.678185,32.285465 -80.742134,32.360016 + -80.799553,32.473118 -80.784958,32.504864 -80.830688,32.516094 + -80.867348,32.532509 -80.822037,32.400517 -80.780731,32.247921 + -80.893082,32.067963 -81.105042,32.10524 -81.119278,32.117409 + -81.114883,32.190392 -81.147858,32.224247 -81.148338,32.257515 + -81.124214,32.276447 -81.132057,32.332424 -81.142052,32.348274 + -81.157646,32.338547 -81.179291,32.37159 -81.178421,32.386639 + -81.200096,32.420128 -81.195328,32.464375 -81.236412,32.520432 + -81.268158,32.533749 -81.274475,32.554634 -81.299156,32.567108 + -81.340576,32.571182 -81.351662,32.583351 -81.366875,32.581802 + -81.36644,32.588188 -81.385078,32.595707 -81.412277,32.625435 + -81.399651,32.650642 -81.407364,32.686531 -81.420708,32.701397 + -81.407799,32.741638 -81.42321,32.749645 -81.416245,32.756561 + -81.430412,32.785988 -81.421005,32.80933 -81.430481,32.820141 + -81.424133,32.831608 -81.432503,32.841518 -81.45549,32.844414 + -81.45871,32.871239 -81.483376,32.875931 -81.465202,32.897568 + -81.477219,32.897411 -81.510406,32.947063 -81.51001,32.955261 + -81.49807,32.959518 -81.492905,33.004658 -81.508919,33.012638 + -81.52977,33.043774 -81.547829,33.04353 -81.560204,33.060661 + -81.595993,33.070637 -81.61113,33.087723 -81.704445,33.122787 + -81.74054,33.144547 -81.763573,33.169685 -81.759758,33.195232 + + + + + + + + + + + -80.767975,32.258446 -80.719254,32.272003 -80.666786,32.21991 + -80.819435,32.104488 -80.767975,32.258446 + + + + + + + + South Carolina + 45 + S Atl + SC + 77987.823 + 4910.636 + 3486703.0 + 928206.0 + 1258044.0 + 1688510.0 + 1798193.0 + 1268959.0 + 1234700.0 + 277209.0 + 18092.0 + 1603425.0 + 94673.0 + 455692.0 + 337824.0 + 0.484 + 0.516 + 506464.0 + + + + + + + + + + + + -94.461479,34.196655 -94.452408,34.508327 -94.44574,34.735504 + -94.439102,34.92905 -94.428337,35.400455 -94.468269,35.641003 + -94.485718,35.760227 -94.542198,36.106754 -94.552895,36.164444 + -94.607231,36.478714 -94.617035,36.489338 -94.080849,36.490952 + -93.857323,36.489716 -93.59626,36.489891 -93.328163,36.490196 + -93.297142,36.490616 -92.852104,36.489819 -92.777466,36.489918 + -92.522888,36.490856 -92.146164,36.491596 -92.127487,36.491371 + -91.688416,36.490955 -91.45285,36.490376 -91.411659,36.491039 + -91.133827,36.487953 -90.804314,36.489204 -90.581619,36.490963 + -90.224373,36.492752 -90.150162,36.491814 -90.137276,36.457417 + -90.117226,36.453896 -90.123833,36.422565 -90.116829,36.404915 + -90.080177,36.397388 -90.052063,36.382553 -90.050201,36.362606 + -90.067635,36.325333 -90.049751,36.300472 -90.066093,36.272274 + -90.109917,36.257996 -90.131218,36.21207 -90.161308,36.196941 + -90.219223,36.172565 -90.232224,36.161148 -90.23484,36.137089 + -90.263702,36.118763 -90.284752,36.115906 -90.315239,36.091656 + -90.37896,35.989586 -90.283455,35.991158 -89.963203,35.996838 + -89.721756,35.999878 -89.713135,35.966324 -89.664192,35.93782 + -89.645401,35.913799 -89.649338,35.894287 -89.66465,35.885647 + -89.714684,35.911427 -89.737976,35.915012 -89.762909,35.896812 + -89.766273,35.884102 -89.757713,35.871418 -89.701439,35.842037 + -89.700829,35.827515 -89.735939,35.807037 -89.759796,35.817421 + -89.790382,35.805553 -89.799904,35.774223 -89.827042,35.75827 + -89.859871,35.748192 -89.909782,35.754837 -89.951035,35.734268 + -89.952034,35.712486 -89.929741,35.676266 -89.893402,35.655972 + -89.865181,35.673306 -89.857246,35.671062 -89.849197,35.645222 + -89.863838,35.629745 -89.877441,35.633335 -89.957047,35.603104 + -89.958031,35.578594 -89.921661,35.546059 -89.931175,35.529232 + -89.947548,35.526901 -89.962273,35.532291 -89.989586,35.561676 + -90.033051,35.552414 -90.040901,35.542847 -90.041817,35.51244 + -89.999565,35.445454 -90.046783,35.417103 -90.060295,35.41341 + -90.073936,35.426506 -90.074844,35.472343 -90.08223,35.478207 + -90.101959,35.473568 -90.137276,35.442524 -90.172676,35.423717 + -90.167816,35.384254 -90.140167,35.383045 -90.132469,35.4076 -90.112244,35.41769 + -90.085159,35.418282 -90.075478,35.406528 -90.087135,35.381508 + -90.105621,35.365982 -90.098701,35.345592 -90.106346,35.314686 + -90.15699,35.306244 -90.169746,35.282566 -90.152122,35.264057 + -90.105942,35.263847 -90.090103,35.254398 -90.068962,35.212738 + -90.073303,35.191833 -90.062431,35.166916 -90.064537,35.147385 + -90.082924,35.12505 -90.14373,35.136536 -90.164474,35.129612 + -90.178345,35.108646 -90.169083,35.077827 -90.195709,35.040897 + -90.291809,35.048458 -90.305351,35.000694 -90.299507,34.978481 + -90.248169,34.94976 -90.241898,34.938904 -90.242844,34.920731 + -90.266708,34.896511 -90.296272,34.88269 -90.299446,34.86496 + -90.301552,34.851776 -90.322823,34.850266 -90.341423,34.860577 + -90.403931,34.841038 -90.42231,34.832268 -90.433548,34.835354 + -90.427841,34.872643 -90.438087,34.886181 -90.470528,34.880924 + -90.474716,34.857727 -90.451904,34.825218 -90.466705,34.799664 + -90.448868,34.76075 -90.451431,34.741199 -90.485924,34.726833 + -90.504417,34.729855 -90.516968,34.748371 -90.498734,34.765785 + -90.501282,34.789833 -90.516045,34.805603 -90.52726,34.807323 + -90.547745,34.790337 -90.533279,34.713253 -90.513565,34.702068 + -90.469978,34.704254 -90.466225,34.672039 -90.508812,34.638065 + -90.538963,34.636894 -90.547546,34.651806 -90.539062,34.685947 + -90.561058,34.700287 -90.5793,34.645611 -90.58799,34.627815 -90.577614,34.604744 + -90.530617,34.555649 -90.537148,34.543327 -90.565681,34.532509 + -90.580345,34.520222 -90.59005,34.496506 -90.574402,34.453945 + -90.579124,34.432999 -90.60379,34.404598 -90.657242,34.36591 + -90.657814,34.330006 -90.679337,34.317974 -90.689377,34.320145 + -90.681137,34.3634 -90.687485,34.377872 -90.75531,34.372166 -90.761856,34.363914 + -90.747757,34.317719 -90.758255,34.278976 -90.792526,34.299957 + -90.806419,34.299347 -90.823837,34.27734 -90.83136,34.229534 + -90.863411,34.219162 -90.928436,34.250195 -90.933708,34.234676 + -90.921486,34.20483 -90.822922,34.190544 -90.80751,34.166172 + -90.828865,34.148659 -90.846611,34.147545 -90.928917,34.18565 + -90.953346,34.155804 -90.942245,34.125942 -90.906311,34.102749 + -90.866333,34.100952 -90.886345,34.04071 -90.95047,34.031288 + -90.973366,34.010998 -90.975273,33.994606 -90.961128,33.978874 + -90.96479,33.967461 -90.986816,33.960815 -91.000259,33.968372 + -91.009544,33.990528 -91.031059,33.985699 -91.069695,34.006096 + -91.088852,33.994469 -91.075706,33.974644 -91.018463,33.936306 + -91.061371,33.867081 -91.054817,33.843525 -91.028854,33.816586 + -90.990372,33.798897 -90.984039,33.785339 -90.995377,33.771549 + -91.018433,33.763973 -91.043404,33.769554 -91.066391,33.786526 + -91.105415,33.77644 -91.136986,33.780087 -91.142891,33.77182 -91.138,33.723225 + -91.128944,33.71244 -91.104568,33.708233 -91.056213,33.719357 + -91.038826,33.70549 -91.037834,33.683216 -91.083771,33.662586 + -91.121048,33.677528 -91.1633,33.718315 -91.211678,33.708965 + -91.215141,33.690723 -91.205307,33.669945 -91.154404,33.637032 + -91.15065,33.616161 -91.168022,33.577244 -91.187805,33.57468 -91.22673,33.590481 + -91.227631,33.556351 -91.213486,33.539276 -91.204102,33.538506 + -91.182846,33.52335 -91.180405,33.512012 -91.207642,33.473396 + -91.22715,33.459454 -91.232849,33.443443 -91.18177,33.447388 -91.17173,33.466644 + -91.174179,33.504368 -91.164978,33.51178 -91.128799,33.493191 + -91.118958,33.469673 -91.119713,33.452831 -91.130516,33.443123 + -91.19883,33.422112 -91.204163,33.414299 -91.184982,33.39183 + -91.137634,33.388878 -91.099129,33.414898 -91.0858,33.462856 + -91.073761,33.466206 -91.060982,33.460011 -91.061516,33.431797 + -91.07869,33.410179 -91.106941,33.393406 -91.130424,33.359402 + -91.141747,33.322384 -91.122505,33.268505 -91.102905,33.24921 + -91.076324,33.292358 -91.053833,33.293575 -91.040428,33.281921 + -91.054543,33.245781 -91.092003,33.225697 -91.086319,33.161602 + -91.095856,33.145084 -91.12133,33.131069 -91.177628,33.150288 + -91.195503,33.140465 -91.190536,33.113224 -91.14679,33.090652 + -91.11779,33.065571 -91.123985,33.047272 -91.156685,33.040432 + -91.160675,33.021709 -91.162132,33.013039 -91.254616,33.013477 + -91.427528,33.01342 -91.454353,33.013874 -92.063309,33.010025 + -92.717079,33.016701 -92.978828,33.018135 -93.232376,33.019238 + -93.478897,33.021393 -93.511742,33.021152 -93.809753,33.022594 + -94.03875,33.023289 -94.036507,33.270325 -94.035927,33.555912 + -94.061432,33.577213 -94.086655,33.583954 -94.098701,33.572998 + -94.155167,33.567085 -94.159515,33.593773 -94.205345,33.585079 + -94.210884,33.557987 -94.235367,33.561535 -94.223038,33.58572 + -94.237236,33.592422 -94.274544,33.561737 -94.272079,33.584606 + -94.278984,33.589333 -94.29882,33.579853 -94.302383,33.556934 + -94.328751,33.573135 -94.370758,33.547684 -94.395264,33.560303 + -94.372307,33.572662 -94.370628,33.590042 -94.379112,33.593327 + -94.393417,33.574959 -94.40657,33.573486 -94.428467,33.597141 + -94.443329,33.596504 -94.451553,33.604347 -94.436333,33.616844 + -94.435913,33.636444 -94.476486,33.631966 -94.468376,33.939198 + -94.461479,34.196655 + + + + + + + + Arkansas + 05 + W S Cen + AR + 134875.075 + 2867.302 + 2350725.0 + 651555.0 + 891179.0 + 1133076.0 + 1217649.0 + 849722.0 + 764635.0 + 153025.0 + 5096.0 + 994289.0 + 72079.0 + 298794.0 + 210650.0 + 0.482 + 0.518 + 414226.0 + + + + + + + + + + + + -93.707359,30.239372 -93.699211,30.297388 -93.729774,30.304916 + -93.759178,30.340872 -93.759338,30.354145 -93.747833,30.367411 + -93.754944,30.381788 -93.742561,30.408823 -93.721535,30.43298 + -93.696571,30.442633 -93.703423,30.462513 -93.697975,30.470047 + -93.714851,30.488628 -93.707275,30.496241 -93.714638,30.505114 + -93.70546,30.522858 -93.735306,30.545517 -93.71788,30.568153 + -93.717812,30.587379 -93.69342,30.598835 -93.671585,30.597832 + -93.692696,30.615795 -93.684586,30.623425 -93.692879,30.640041 + -93.677971,30.639692 -93.659988,30.672859 -93.617607,30.686802 + -93.612411,30.710329 -93.61779,30.732548 -93.607651,30.73201 + -93.618454,30.745789 -93.585175,30.772184 -93.581871,30.80204 + -93.550682,30.828344 -93.555641,30.842342 -93.566444,30.845148 + -93.552803,30.860283 -93.560844,30.87188 -93.568497,30.886234 + -93.564476,30.901932 -93.546516,30.905334 -93.549622,30.924885 + -93.529984,30.926971 -93.52562,30.93582 -93.532188,30.960732 + -93.537338,30.956884 -93.548676,30.97019 -93.572456,30.976177 + -93.560951,30.99169 -93.570847,30.997271 -93.567894,31.012924 + -93.564941,31.018063 -93.547119,31.014141 -93.507217,31.038908 + -93.525742,31.05698 -93.516998,31.074671 -93.544106,31.082373 + -93.543121,31.094751 -93.559982,31.100536 -93.556679,31.109343 + -93.535088,31.116072 -93.528091,31.125925 -93.537506,31.132441 + -93.544189,31.159166 -93.528328,31.162943 -93.537018,31.17634 + -93.526932,31.178076 -93.528923,31.185774 -93.550591,31.190929 + -93.576942,31.17214 -93.593941,31.180199 -93.602921,31.199066 + -93.590546,31.229687 -93.611,31.242188 -93.611877,31.270033 -93.616455,31.275805 + -93.630829,31.273903 -93.645592,31.290262 -93.656128,31.286671 + -93.681587,31.312679 -93.67704,31.328386 -93.634857,31.373827 + -93.661072,31.372395 -93.664017,31.398329 -93.687492,31.40613 + -93.694443,31.415922 -93.696129,31.427736 -93.687004,31.438131 + -93.701927,31.446251 -93.698418,31.461458 -93.726784,31.459475 + -93.751244,31.4855 -93.750435,31.490557 -93.718994,31.495403 + -93.705795,31.520569 -93.731659,31.521877 -93.747543,31.537718 + -93.763306,31.530724 -93.780128,31.533735 -93.810516,31.559063 + -93.816322,31.57711 -93.832619,31.590183 -93.835579,31.615189 + -93.819588,31.618092 -93.814728,31.647966 -93.806427,31.653767 + -93.811844,31.674566 -93.792267,31.711395 -93.808769,31.707565 + -93.814949,31.712351 -93.80999,31.730352 -93.831161,31.753281 + -93.822067,31.774637 -93.834328,31.802017 -93.864822,31.817272 + -93.877403,31.850113 -93.881264,31.87142 -93.892525,31.870066 + -93.899261,31.894455 -93.923462,31.892593 -93.917923,31.909702 + -93.93573,31.909456 -93.969986,31.923164 -93.977211,31.946159 + -94.004395,31.977942 -94.009888,31.989134 -94.035065,31.994513 + -94.034767,32.199448 -94.035233,32.389225 -94.040199,32.694813 + -94.041603,32.882347 -94.03875,33.023289 -93.809753,33.022594 + -93.511742,33.021152 -93.478897,33.021393 -93.232376,33.019238 + -92.978828,33.018135 -92.717079,33.016701 -92.063309,33.010025 + -91.454353,33.013874 -91.427528,33.01342 -91.254616,33.013477 + -91.162132,33.013039 -91.161865,33.000294 -91.20916,32.935852 + -91.198311,32.914162 -91.169701,32.905022 -91.137177,32.917786 + -91.129936,32.937466 -91.132355,32.975224 -91.111816,32.98735 + -91.092674,32.987621 -91.075592,32.953712 -91.079529,32.877163 + -91.142151,32.841213 -91.156342,32.76268 -91.136467,32.751125 + -91.09771,32.749397 -91.059029,32.723518 -91.139557,32.663174 + -91.146263,32.644852 -91.110992,32.597527 -91.063812,32.606388 + -91.04763,32.614353 -91.027466,32.641502 -91.007881,32.642673 + -90.996132,32.625977 -90.998657,32.615467 -91.032326,32.582672 + -91.058868,32.576389 -91.073265,32.561611 -91.063087,32.54216 + -90.995071,32.511642 -90.99205,32.495281 -91.019684,32.490814 + -91.037201,32.496956 -91.088783,32.548637 -91.118744,32.524067 + -91.117683,32.498569 -91.05851,32.446999 -91.026909,32.442417 + -90.98745,32.452965 -90.965485,32.440037 -90.969986,32.419018 + -91.009209,32.397083 -90.998863,32.366234 -90.984566,32.356396 + -90.914925,32.345898 -90.885155,32.381355 -90.875351,32.37965 + -90.916374,32.305317 -90.929245,32.297405 -90.971657,32.303699 + -90.980766,32.297653 -90.983818,32.287132 -90.971016,32.269066 + -90.977219,32.223404 -91.041649,32.249439 -91.062462,32.232742 + -91.087914,32.232388 -91.100571,32.214886 -91.115952,32.225605 + -91.157265,32.205864 -91.166847,32.171989 -91.15654,32.144783 + -91.108711,32.134991 -91.083008,32.148579 -91.054047,32.134392 + -91.045311,32.158672 -91.054474,32.184532 -91.024414,32.169899 + -91.00383,32.169262 -91.011284,32.13406 -91.041084,32.10767 -91.073814,32.093994 + -91.06501,32.058552 -91.089302,32.056843 -91.125618,32.088245 + -91.145584,32.085674 -91.143013,32.066105 -91.086884,32.043655 + -91.073135,32.031994 -91.07238,32.021057 -91.108002,31.991827 + -91.163033,31.988291 -91.201431,31.914289 -91.24437,31.878511 + -91.26458,31.865425 -91.241272,31.835226 -91.250618,31.818659 + -91.276688,31.827372 -91.292534,31.861332 -91.30336,31.862984 + -91.334732,31.843317 -91.347122,31.79567 -91.36702,31.770704 + -91.336143,31.763458 -91.262573,31.773764 -91.263878,31.7596 + -91.282509,31.749723 -91.339798,31.758379 -91.370384,31.753311 + -91.36496,31.751577 -91.387833,31.716518 -91.389069,31.65444 + -91.408287,31.625364 -91.45726,31.626801 -91.49765,31.65073 -91.50769,31.643705 + -91.508759,31.62178 -91.497032,31.604193 -91.415268,31.602427 + -91.404137,31.586187 -91.423462,31.56258 -91.464355,31.5427 -91.502838,31.534714 + -91.506363,31.52552 -91.507782,31.452915 -91.473175,31.420206 -91.465805,31.4039 + -91.480721,31.377611 -91.494591,31.37508 -91.522896,31.391922 + -91.53405,31.409069 -91.534683,31.434166 -91.552353,31.43293 + -91.567612,31.421236 -91.559258,31.38806 -91.534454,31.38258 + -91.544289,31.368704 -91.542671,31.346815 -91.505638,31.323286 + -91.502357,31.298687 -91.51696,31.282898 -91.556801,31.270296 + -91.634094,31.277519 -91.643562,31.270943 -91.636879,31.240929 + -91.600845,31.213755 -91.59137,31.178307 -91.619995,31.127518 + -91.564857,31.081959 -91.551964,31.057983 -91.57267,31.032471 + -91.627655,31.011782 -91.632179,31.001186 -91.1791,31.000284 -91.056908,31.00024 + -90.829613,31.001368 -90.560158,31.001528 -90.542557,31.002151 + -90.343567,31.005211 -90.259285,31.007191 -89.833481,31.007002 + -89.732643,31.007261 -89.723549,31.001341 -89.726707,30.984432 + -89.719749,30.975309 -89.739449,30.965216 -89.748466,30.949663 + -89.740402,30.925924 -89.75798,30.920858 -89.745682,30.909922 + -89.746727,30.902609 -89.763237,30.900286 -89.765778,30.861898 + -89.78495,30.861393 -89.774727,30.830345 -89.796021,30.828918 + -89.796494,30.812466 -89.81086,30.811512 -89.824615,30.789537 + -89.813278,30.74798 -89.825493,30.74246 -89.823326,30.732866 + -89.835541,30.729174 -89.843979,30.712236 -89.83065,30.703592 + -89.84127,30.700361 -89.841713,30.679331 -89.83532,30.675694 + -89.845375,30.666063 -89.829453,30.670685 -89.819283,30.651056 + -89.805466,30.649267 -89.820236,30.624081 -89.790779,30.553753 + -89.772728,30.551056 -89.755112,30.51543 -89.732254,30.497646 + -89.718994,30.495846 -89.71312,30.481224 -89.695618,30.478054 + -89.694534,30.467995 -89.683388,30.462526 -89.6754,30.44516 -89.675308,30.399881 + -89.65461,30.378872 -89.646629,30.355097 -89.633392,30.355114 + -89.62014,30.343235 -89.61853,30.323566 -89.637024,30.311649 + -89.639114,30.295635 -89.625885,30.290161 -89.621605,30.256769 + -89.606255,30.247633 -89.609947,30.241224 -89.57383,30.194738 -89.7285,30.180817 + -89.759155,30.230898 -89.943466,30.269657 -90.075485,30.368784 + -90.23967,30.380756 -90.308945,30.30365 -90.424446,30.185678 + -90.395485,30.091879 -90.275902,30.061852 -90.111473,30.041409 + -89.990479,30.053463 -89.891159,30.155893 -89.798203,30.105173 + -89.740028,30.158731 -89.724869,30.120897 -89.669144,30.163185 + -89.649338,30.122229 -89.716782,30.055027 -89.8489,30.010485 + -89.820786,29.951088 -89.714958,29.969202 -89.712143,29.897324 + -89.627357,29.875475 -89.585808,29.897953 -89.574326,30.008759 + -89.435806,30.044205 -89.453575,29.985531 -89.377747,29.951084 -89.431,29.940075 + -89.402153,29.845741 -89.421104,29.827894 -89.363991,29.79657 + -89.417374,29.782732 -89.482185,29.830744 -89.540443,29.754524 + -89.650528,29.766693 -89.592819,29.710655 -89.611778,29.697538 + -89.511887,29.664406 -89.479134,29.635962 -89.597893,29.664948 + -89.676643,29.702751 -89.695267,29.693869 -89.635201,29.62632 + -89.728256,29.645964 -89.748482,29.637165 -89.723145,29.605814 + -89.771713,29.610033 -89.544571,29.47147 -89.537018,29.401236 + -89.384468,29.397722 -89.337006,29.340675 -89.264725,29.350447 + -89.262505,29.29759 -89.193352,29.348831 -89.12989,29.290668 + -89.120178,29.211662 -89.033218,29.223192 -89.098228,29.163219 + -89.021759,29.146894 -89.057709,29.085052 -89.126495,29.135084 + -89.111359,29.08279 -89.153976,29.05699 -89.144348,29.016449 + -89.241112,29.120943 -89.257446,29.059235 -89.394844,28.939419 + -89.263237,29.147987 -89.319038,29.179964 -89.339684,29.104267 + -89.388611,29.100149 -89.393082,29.146038 -89.467018,29.216097 + -89.459061,29.255514 -89.493141,29.234772 -89.61953,29.279352 + -89.610657,29.331537 -89.794876,29.322317 -89.753639,29.374067 + -89.821678,29.420692 -89.817459,29.477407 -89.966667,29.47246 + -89.971855,29.503325 -90.006622,29.493719 -90.113007,29.553633 + -90.137215,29.533594 -90.151718,29.595093 -90.208069,29.544514 + -90.174057,29.495724 -90.036011,29.446938 -90.055252,29.428062 + -90.029869,29.373985 -90.05587,29.351208 -90.032928,29.308647 + -90.111565,29.321501 -90.077805,29.214346 -90.043037,29.223448 + -90.077728,29.176212 -90.227684,29.098444 -90.263878,29.184422 + -90.242836,29.254515 -90.27874,29.274933 -90.284019,29.245308 + -90.347565,29.312727 -90.396347,29.272121 -90.406746,29.325768 + -90.450432,29.352219 -90.476387,29.303717 -90.611008,29.304811 + -90.583046,29.260702 -90.621178,29.222738 -90.649963,29.254066 + -90.638031,29.162342 -90.683769,29.181692 -90.676704,29.140047 + -90.782806,29.126713 -90.772598,29.160397 -90.839287,29.182114 + -90.882545,29.137184 -90.920319,29.181684 -90.814201,29.220781 + -90.818459,29.256578 -90.897255,29.267443 -90.936432,29.343298 + -91.078285,29.3598 -91.102089,29.313915 -91.213631,29.405706 + -91.262619,29.489372 -91.432915,29.552368 -91.547752,29.531471 + -91.548378,29.641918 -91.643433,29.643753 -91.615654,29.76893 + -91.863136,29.72563 -91.881058,29.765747 -91.846512,29.808189 + -91.823814,29.786684 -91.827385,29.838835 -91.966965,29.841681 + -91.973206,29.805849 -92.137024,29.73053 -92.129974,29.773315 + -92.19957,29.762909 -92.059631,29.6068 -92.297241,29.541351 -92.607285,29.588404 + -93.233505,29.788773 -93.721832,29.758574 -93.801659,29.725645 + -93.899734,29.809765 -93.79129,29.850304 -93.760201,30.005964 + -93.712479,30.06052 -93.715858,30.095669 -93.708382,30.11474 + -93.696922,30.117929 -93.698639,30.141226 -93.685959,30.141253 + -93.683144,30.148232 -93.699661,30.150808 -93.696167,30.175676 + -93.704361,30.180861 -93.714844,30.220306 -93.707359,30.239372 + + + + + + + + + + + -92.016243,29.596264 -91.902428,29.650719 -91.76973,29.578402 -91.7015,29.577053 + -91.764847,29.534039 -91.757996,29.494297 -91.848969,29.486866 + -92.016243,29.596264 + + + + + + + + + + + -91.341209,29.341692 -91.300385,29.316238 -91.226448,29.381182 + -91.189171,29.297392 -91.161461,29.323502 -91.17112,29.283457 + -91.18792,29.284538 -91.200356,29.307766 -91.194954,29.273453 + -91.152489,29.266314 -91.163559,29.245047 -91.13459,29.259705 + -91.128204,29.226778 -91.276054,29.253807 -91.341209,29.341692 + + + + + + + + + + + -90.934479,29.258873 -90.970749,29.241875 -90.953529,29.272837 + -90.981285,29.276129 -90.980286,29.21973 -90.944885,29.22617 + -90.961929,29.185575 -91.003143,29.184093 -90.994469,29.224581 + -91.04435,29.211037 -91.033005,29.27541 -91.067589,29.252899 + -91.055458,29.190693 -91.122459,29.226864 -91.127411,29.293295 + -91.007271,29.297325 -90.998856,29.323582 -90.934479,29.258873 + + + + + + + + Louisiana + 22 + W S Cen + LA + 112836.008 + 19978.72 + 4219973.0 + 1089882.0 + 1499269.0 + 2031386.0 + 2188587.0 + 1468894.0 + 1239339.0 + 247348.0 + 49252.0 + 1641614.0 + 175303.0 + 480026.0 + 243755.0 + 0.481 + 0.519 + 628817.0 + + + + + + + + + + + + -80.785889,28.784925 -80.762642,28.736065 -80.832329,28.785917 + -80.850929,28.785431 -80.747414,28.39871 -80.49247,27.869877 + -80.509583,27.825405 -80.482079,27.845419 -80.401604,27.703278 + -80.357605,27.555349 -80.239868,27.264324 -80.190323,27.185358 + -80.22422,27.214741 -80.289864,27.241014 -80.327019,27.247938 + -80.290649,27.212528 -80.221504,27.202517 -80.148201,27.10874 + -80.090599,26.973709 -80.114845,26.973503 -80.051147,26.796858 + -80.08493,26.326021 -80.128014,25.977167 -80.193329,25.759655 + -80.301682,25.613369 -80.330215,25.489628 -80.3022,25.40081 -80.417038,25.249506 + -80.421028,25.19182 -80.552094,25.21192 -80.694038,25.151897 -80.85701,25.18523 + -80.976082,25.130098 -81.119217,25.133785 -81.14843,25.164288 + -81.183983,25.26848 -81.14077,25.320368 -81.011765,25.214029 + -80.951233,25.202137 -80.915482,25.246326 -80.974487,25.322063 + -81.143524,25.396433 -81.258575,25.680716 -81.20015,25.710039 + -81.256409,25.802723 -81.530937,25.914282 -81.718483,25.923204 + -81.705887,25.999798 -81.794907,26.110792 -81.814049,26.284103 + -81.849541,26.331835 -81.864403,26.439196 -81.942207,26.467205 + -81.968307,26.517027 -81.928963,26.534626 -81.884468,26.642637 + -81.774109,26.709919 -81.897293,26.663418 -81.944641,26.550365 + -82.02166,26.524324 -82.083847,26.715443 -82.068459,26.766624 + -82.051956,26.866367 -82.098061,26.921446 -81.991631,26.962719 + -81.979385,27.031345 -81.993042,27.031342 -82.012878,26.976213 + -82.153397,26.936726 -82.257645,27.004072 -82.282364,27.024221 + -82.257767,26.99757 -82.176682,26.913353 -82.154015,26.789783 + -82.290024,26.849543 -82.355614,26.948557 -82.398354,26.998178 + -82.368851,26.947599 -82.343811,26.903292 -82.380219,26.946957 + -82.507111,27.236664 -82.531311,27.259951 -82.514664,27.210125 + -82.570137,27.273954 -82.532921,27.331478 -82.565742,27.38636 + -82.686104,27.473528 -82.639069,27.503143 -82.666008,27.493271 + -82.681885,27.524115 -82.488449,27.477749 -82.514381,27.511673 + -82.427361,27.522543 -82.575752,27.512009 -82.638947,27.536324 + -82.569786,27.552399 -82.554443,27.581926 -82.626556,27.55488 + -82.540222,27.607794 -82.552681,27.643703 -82.404564,27.791323 + -82.399002,27.905918 -82.461182,27.939856 -82.483315,27.821644 + -82.51078,27.830929 -82.539177,27.935429 -82.645744,28.028551 + -82.650864,28.006866 -82.698517,28.045874 -82.672897,28.010218 + -82.700844,27.975056 -82.64492,27.966286 -82.725662,27.940264 + -82.564445,27.87816 -82.623833,27.848225 -82.644798,27.715418 + -82.678505,27.70528 -82.794014,27.829351 -82.72834,27.717466 -82.74118,27.68556 + -82.84446,27.85034 -82.77932,28.172737 -82.673653,28.428232 -82.636253,28.692484 + -82.681557,28.808123 -82.636696,28.814018 -82.636795,28.884451 + -82.755493,29.00841 -82.802322,29.154886 -83.036903,29.179144 + -83.074081,29.265411 -83.142357,29.299412 -83.109146,29.327944 + -83.174782,29.343441 -83.234474,29.433702 -83.380173,29.519644 + -83.405113,29.669376 -83.550583,29.737101 -83.654312,29.910746 + -83.971855,30.077274 -84.074738,30.099741 -84.147964,30.081518 + -84.233177,30.107906 -84.354027,30.06942 -84.360519,29.977184 + -84.43779,29.991587 -84.433205,29.959339 -84.339043,29.946934 + -84.347015,29.90996 -84.464638,29.92942 -84.858124,29.746649 + -84.928604,29.777761 -84.988373,29.719709 -85.214844,29.701345 + -85.36496,29.682806 -85.409683,29.776556 -85.414131,29.86286 + -85.393074,29.875206 -85.402626,29.794155 -85.358124,29.691042 + -85.306671,29.701498 -85.300606,29.809587 -85.384872,29.923595 + -85.628571,30.092388 -85.568604,30.098091 -85.471436,30.02166 + -85.415092,30.031349 -85.432465,30.045551 -85.382774,30.024067 + -85.382736,30.036083 -85.395752,30.058365 -85.464394,30.050961 + -85.529793,30.131485 -85.7099,30.178572 -85.66613,30.25149 -85.60025,30.250952 + -85.56955,30.310806 -85.717201,30.264862 -85.752777,30.29673 + -85.850487,30.280159 -85.830009,30.232613 -85.757988,30.228745 + -85.726463,30.128639 -85.987076,30.274229 -86.387512,30.387459 + -86.505363,30.409773 -86.388161,30.405813 -86.240089,30.399689 + -86.241623,30.428329 -86.1147,30.385603 -86.122993,30.426264 + -86.219666,30.487658 -86.387932,30.461969 -86.45269,30.50104 + -86.610283,30.423452 -86.79039,30.417765 -87.193413,30.355022 + -86.932549,30.463367 -87.014435,30.514238 -86.986229,30.590237 + -87.019615,30.587273 -87.069305,30.450367 -87.124565,30.564472 + -87.171585,30.557541 -87.160133,30.464836 -87.273926,30.357185 + -87.424103,30.323471 -87.409279,30.40204 -87.346832,30.431301 + -87.34742,30.456972 -87.418839,30.481504 -87.445374,30.531195 + -87.422089,30.556299 -87.393303,30.619905 -87.398666,30.667824 + -87.418915,30.692619 -87.460159,30.705612 -87.526619,30.748302 + -87.541916,30.785507 -87.615929,30.84811 -87.625725,30.876717 + -87.589882,30.954178 -87.598595,31.002449 -87.163147,31.002975 + -86.779404,30.998011 -86.701897,30.997911 -86.383972,30.991358 + -86.181534,30.995045 -86.031883,30.993147 -85.486664,31.000816 + -85.485077,31.00082 -85.001678,31.001068 -85.000214,30.979134 + -84.97364,30.963478 -84.969086,30.926907 -84.937851,30.89477 + -84.927002,30.846733 -84.93264,30.802435 -84.926971,30.775898 + -84.915421,30.753899 -84.888367,30.743698 -84.864662,30.714312 + -84.863083,30.712473 -84.374542,30.693897 -84.281761,30.690224 + -84.075668,30.678381 -84.000839,30.675341 -83.737961,30.660292 + -83.609177,30.650583 -83.31073,30.634096 -83.301445,30.633078 + -83.132576,30.62113 -82.696503,30.595503 -82.583107,30.588835 + -82.463287,30.582468 -82.412247,30.577084 -82.221199,30.566845 + -82.238556,30.531214 -82.219528,30.502739 -82.199348,30.489782 + -82.205727,30.42362 -82.180397,30.368397 -82.164803,30.361057 + -82.052933,30.363558 -82.038521,30.378668 -82.046265,30.433832 + -82.035286,30.442642 -82.022675,30.477482 -82.005966,30.570755 + -82.013817,30.598455 -82.045074,30.650677 -82.032043,30.757299 + -82.01313,30.764023 -82.015701,30.791086 -81.981644,30.778118 + -81.961716,30.795774 -81.953194,30.820198 -81.94397,30.824017 + -81.907684,30.813242 -81.899307,30.828075 -81.873169,30.798851 + -81.803368,30.787851 -81.776878,30.761351 -81.757881,30.769398 + -81.736847,30.763655 -81.716942,30.745134 -81.642654,30.728846 + -81.628159,30.731539 -81.60495,30.716085 -81.601349,30.724651 + -81.536774,30.706341 -81.528778,30.721216 -81.49897,30.598368 + -81.518303,30.555975 -81.457718,30.454525 -81.480988,30.380301 + -81.443451,30.356947 -81.432961,30.24654 -81.302963,29.912806 + -81.316696,29.828993 -81.243996,29.737694 -81.233978,29.668774 + -81.1101,29.429985 -81.097275,29.351543 -80.785889,28.784925 + + + + + + + + + + + -86.833923,30.399536 -86.791595,30.40377 -86.620872,30.414352 + -86.534805,30.406591 -86.52282,30.400948 -86.532692,30.393188 + -86.738686,30.402359 -86.793007,30.390366 -86.834625,30.386839 + -87.242378,30.321232 -87.267075,30.321232 -87.290352,30.33252 + -87.286118,30.339573 -87.202171,30.334635 -87.139381,30.351566 + -87.047676,30.369202 -86.929161,30.381195 -86.833923,30.399536 + + + + + + + + + + + -80.736061,28.788576 -80.763557,28.8218 -80.817406,28.895124 -80.891304,29.01313 + -80.916512,29.07156 -80.899323,29.061249 -80.862663,28.991362 + -80.736061,28.788576 + + + + + + + + + + + -80.726128,28.784098 -80.579918,28.58988 -80.526176,28.463184 + -80.587883,28.408979 -80.621857,28.412378 -80.577675,28.548378 + -80.599358,28.603649 -80.660271,28.618378 -80.692108,28.588076 + -80.78067,28.618687 -80.786156,28.687445 -80.735222,28.706347 + -80.754295,28.736614 -80.641426,28.657074 -80.726128,28.784098 + + + + + + + + + + + -80.68885,28.58149 -80.654022,28.600616 -80.609421,28.573292 -80.662956,28.42713 + -80.667336,28.301556 -80.605797,28.144653 -80.721268,28.385118 + -80.68885,28.58149 + + + + + + + + + + + -82.102127,26.585724 -82.067139,26.497208 -82.097641,26.493586 + -82.135895,26.642279 -82.183495,26.683083 -82.128838,26.693342 + -82.102127,26.585724 + + + + + + + + + + + -80.24968,25.354546 -80.355888,25.157833 -80.588036,24.955967 + -80.353287,25.211134 -80.330521,25.267586 -80.361824,25.296104 + -80.24968,25.354546 + + + + + + + + Florida + 12 + S Atl + FL + 139852.123 + 30456.797 + 1.2937926E7 + 3511825.0 + 5134869.0 + 6261719.0 + 6676207.0 + 4943568.0 + 4468021.0 + 818546.0 + 116352.0 + 5810467.0 + 356769.0 + 1683987.0 + 675050.0 + 0.484 + 0.516 + 1603894.0 + + + + + + + + + + + + -88.497459,48.173923 -88.625252,48.033287 -88.901466,47.960361 + -89.028534,47.850761 -89.139793,47.824181 -89.192825,47.844719 + -89.201698,47.883965 -89.156013,47.939339 -88.497459,48.173923 + + + + + + + + + + + -88.500565,47.290257 -88.43779,47.355976 -88.211288,47.447922 -87.78801,47.47089 + -87.704269,47.416046 -87.737396,47.39312 -87.916931,47.358097 + -88.222168,47.200829 -88.41272,46.988167 -88.470543,47.111546 + -88.594139,47.134838 -88.595512,47.243668 -88.500565,47.290257 + + + + + + + + + + + -85.859734,45.969486 -85.914841,45.957996 -85.916992,45.918209 + -86.067764,45.964233 -86.259178,45.946957 -86.315498,45.905708 + -86.343658,45.834419 -86.458138,45.762768 -86.529251,45.748981 + -86.521873,45.724113 -86.575989,45.710194 -86.629654,45.62125 + -86.684921,45.650066 -86.696785,45.692532 -86.584595,45.813904 + -86.76133,45.826096 -86.901489,45.714806 -87.123627,45.696278 + -87.260582,45.554829 -87.332108,45.423965 -87.583755,45.16275 + -87.592407,45.108517 -87.672707,45.14069 -87.729561,45.176624 + -87.736092,45.199093 -87.721519,45.211693 -87.719559,45.236794 + -87.705032,45.247108 -87.704361,45.272228 -87.645248,45.348194 + -87.64357,45.361881 -87.689484,45.391296 -87.759926,45.352924 + -87.827896,45.358349 -87.841171,45.346176 -87.861984,45.370193 + -87.868423,45.372101 -87.873863,45.362114 -87.883499,45.365883 + -87.849419,45.406147 -87.860153,45.445129 -87.813499,45.466492 + -87.789268,45.4991 -87.805023,45.544559 -87.828484,45.568626 + -87.786194,45.568554 -87.774956,45.600422 -87.775925,45.613235 + -87.819817,45.654488 -87.816933,45.665428 -87.780823,45.675953 + -87.777351,45.684139 -87.801033,45.701363 -87.80143,45.71143 + -87.842239,45.722458 -87.873505,45.75074 -87.969055,45.766491 + -87.989944,45.79509 -88.051514,45.786156 -88.088608,45.791576 + -88.129822,45.819447 -88.121658,45.834923 -88.065292,45.873688 + -88.095634,45.89185 -88.093719,45.920662 -88.111259,45.926334 + -88.150307,45.93634 -88.180061,45.953564 -88.214859,45.947948 + -88.257034,45.967102 -88.299019,45.96199 -88.32119,45.966759 + -88.369804,45.994633 -88.403389,45.983467 -88.454185,46.000805 + -88.483681,45.999195 -88.49395,46.013004 -88.51548,46.018654 + -88.548225,46.019344 -88.575226,46.009003 -88.597404,46.01556 + -88.615372,45.994164 -88.643539,45.993431 -88.677254,46.020187 + -88.703476,46.018967 -88.72628,46.029625 -88.772888,46.021191 + -88.777351,46.032658 -88.793686,46.036404 -88.804268,46.026848 + -88.925064,46.073647 -88.985168,46.100437 -89.09967,46.145691 + -89.924973,46.304077 -90.111488,46.340481 -90.115005,46.365208 + -90.141624,46.393951 -90.161217,46.442432 -90.211349,46.506348 + -90.258224,46.508842 -90.269608,46.522533 -90.300003,46.525105 + -90.302216,46.54435 -90.31353,46.551617 -90.385345,46.539711 -90.40802,46.568665 + -90.018692,46.678688 -89.886086,46.76899 -89.791084,46.824768 + -89.386574,46.850266 -89.214455,46.923439 -89.125053,46.99667 + -88.994743,46.997169 -88.929558,47.030994 -88.884705,47.104626 + -88.629379,47.225887 -88.617981,47.131187 -88.511093,47.106579 + -88.512871,47.032661 -88.44104,46.990807 -88.445839,46.928375 + -88.476395,46.855221 -88.446487,46.799465 -88.177704,46.945965 + -88.189064,46.901031 -88.03656,46.911942 -87.900528,46.90984 + -87.663635,46.836929 -87.371399,46.508057 -87.110535,46.501537 + -87.006256,46.536358 -86.871231,46.44442 -86.759338,46.486694 + -86.638062,46.422318 -86.462227,46.561134 -86.147942,46.673084 + -86.096573,46.655296 -85.857376,46.694828 -85.503716,46.674168 + -85.22998,46.756763 -84.954681,46.770927 -85.026886,46.694317 + -85.01889,46.549004 -85.051567,46.505558 -85.016556,46.476425 + -84.931244,46.487823 -84.803589,46.444035 -84.629761,46.482922 + -84.572617,46.407906 -84.415924,46.480637 -84.311577,46.488647 + -84.181618,46.248703 -84.273102,46.207291 -84.247002,46.171429 + -84.119713,46.17609 -84.029564,46.128925 -84.061966,46.094452 + -83.989494,46.025967 -83.901947,46.005882 -83.906456,45.96022 + -84.113258,45.978519 -84.354454,45.999172 -84.501595,45.978329 + -84.616798,46.038216 -84.688972,46.035904 -84.731682,45.855667 + -84.851044,45.890625 -85.061562,46.024742 -85.378151,46.100048 + -85.509445,46.101917 -85.655281,45.972881 -85.859734,45.969486 + + + + + + + + + + + -83.854675,46.014011 -83.801102,45.988392 -83.756416,46.027317 + -83.673592,46.036171 -83.680313,46.071774 -83.732445,46.084087 + -83.649887,46.103951 -83.5895,46.088497 -83.533997,46.011768 + -83.473198,45.987526 -83.516167,45.925694 -83.579819,45.91748 + -83.629707,45.953575 -83.804878,45.936745 -83.852806,45.997429 + -83.885887,45.970833 -83.854675,46.014011 + + + + + + + + + + + -86.834801,41.765465 -86.617569,41.907406 -86.49881,42.126408 + -86.374252,42.249386 -86.28495,42.422295 -86.217812,42.774803 + -86.273781,43.121029 -86.463127,43.475159 -86.541222,43.663181 + -86.447731,43.772659 -86.404266,43.766636 -86.434021,43.781452 + -86.428734,43.820118 -86.459465,43.95018 -86.438065,43.945587 + -86.518517,44.053616 -86.386337,44.183201 -86.271866,44.351227 + -86.237946,44.522274 -86.25853,44.700733 -86.108391,44.734444 + -86.082825,44.777931 -86.09787,44.850616 -86.06736,44.898262 -85.79567,44.985977 + -85.61013,45.196529 -85.56543,45.180561 -85.652924,44.958363 + -85.637962,44.778435 -85.526009,44.763161 -85.451279,44.860538 + -85.384796,45.010601 -85.390167,45.21159 -85.373177,45.273537 + -85.305405,45.320377 -85.092804,45.370216 -84.98584,45.373169 + -84.921623,45.409889 -85.081757,45.464642 -85.120384,45.569771 + -85.077957,45.630177 -84.983353,45.683704 -84.971977,45.737736 + -84.724136,45.780293 -84.46524,45.653625 -84.321434,45.665596 + -84.205544,45.630894 -84.135216,45.571331 -84.105896,45.498737 + -83.92289,45.49176 -83.782814,45.409435 -83.712326,45.41238 -83.592377,45.349487 + -83.49585,45.360786 -83.489616,45.328922 -83.394043,45.272892 + -83.420784,45.257168 -83.39872,45.213627 -83.312737,45.098606 + -83.444466,45.052761 -83.433998,45.011116 -83.464928,44.997871 + -83.429382,44.926285 -83.319756,44.860634 -83.280846,44.703171 + -83.320068,44.515446 -83.356995,44.335117 -83.529175,44.261257 + -83.56826,44.170101 -83.598427,44.070477 -83.704819,43.997147 + -83.873627,43.962822 -83.918388,43.916977 -83.938141,43.698261 + -83.699196,43.599621 -83.654648,43.607399 -83.530945,43.725925 + -83.494286,43.702824 -83.466446,43.745724 -83.367203,43.844437 + -83.326065,43.940445 -82.940208,44.069946 -82.806038,44.033554 + -82.727966,43.972496 -82.618561,43.787849 -82.605812,43.69455 + -82.503899,43.172226 -82.419922,42.972435 -82.472038,42.898651 + -82.473328,42.762863 -82.518272,42.634018 -82.645966,42.631695 + -82.634102,42.66935 -82.729889,42.681194 -82.820488,42.635761 + -82.802444,42.612892 -82.888222,42.49572 -82.874992,42.458031 + -82.929474,42.363003 -83.107666,42.292667 -83.193947,42.115707 + -83.19014,42.033936 -83.482758,41.725082 -83.764015,41.716991 + -83.868698,41.715942 -84.359261,41.707989 -84.384445,41.7071 + -84.790421,41.697445 -84.788521,41.76091 -84.82605,41.761826 + -85.193169,41.762817 -85.297234,41.763531 -85.65947,41.762577 + -85.799232,41.763485 -86.068298,41.76458 -86.234558,41.764816 + -86.525162,41.765495 -86.834801,41.765465 + + + + + + + + Michigan + 26 + E N Cen + MI + 147135.821 + 12547.912 + 9295297.0 + 2439171.0 + 3419331.0 + 4512781.0 + 4782516.0 + 3388716.0 + 3327685.0 + 429086.0 + 66653.0 + 4166196.0 + 374341.0 + 1138730.0 + 717162.0 + 0.485 + 0.515 + 1735861.0 + + + + + + + + + + + + -111.474632,44.70224 -111.480011,44.691494 -111.4599,44.670101 + -111.457474,44.652634 -111.469376,44.640789 -111.506897,44.637768 + -111.500954,44.616051 -111.513733,44.593277 -111.492111,44.55127 + -111.462036,44.550022 -111.458534,44.538002 -111.481781,44.536224 + -111.489449,44.528778 -111.566437,44.552948 -111.604454,44.543072 + -111.684067,44.550835 -111.716202,44.533844 -111.766121,44.518909 + -111.791809,44.518547 -111.807037,44.504066 -111.871696,44.556351 + -111.939575,44.549812 -111.977005,44.529762 -112.022797,44.53513 + -112.02626,44.52293 -112.058548,44.528698 -112.099075,44.518318 + -112.123367,44.528339 -112.19883,44.531536 -112.216934,44.538582 + -112.229568,44.559578 -112.255844,44.560059 -112.281509,44.54179 + -112.341675,44.525188 -112.339745,44.497269 -112.366753,44.44936 + -112.419922,44.449375 -112.457687,44.468925 -112.501007,44.463089 + -112.53849,44.477589 -112.652351,44.480892 -112.713486,44.497025 + -112.732872,44.484409 -112.779022,44.47401 -112.795387,44.458099 + -112.825851,44.421173 -112.817871,44.394909 -112.816559,44.364292 + -112.843437,44.353729 -112.869942,44.370068 -112.886467,44.392941 + -112.937439,44.40728 -112.984406,44.435627 -113.011169,44.437801 + -113.005814,44.452702 -113.019463,44.481861 -113.006866,44.510696 + -113.036972,44.533043 -113.038811,44.556377 -113.082184,44.582764 + -113.053436,44.624371 -113.072289,44.675606 -113.098099,44.695995 + -113.100845,44.715252 -113.126572,44.737457 -113.137413,44.761517 + -113.239471,44.811916 -113.256287,44.810562 -113.31781,44.780304 + -113.33976,44.779076 -113.349152,44.807644 -113.420502,44.833775 + -113.444695,44.851315 -113.495308,44.930744 -113.486465,44.939648 + -113.462532,44.940849 -113.447884,44.949596 -113.440147,44.998268 + -113.45797,45.027523 -113.454552,45.043423 -113.48542,45.058395 + -113.489273,45.071293 -113.519722,45.082138 -113.509338,45.10791 + -113.551384,45.107624 -113.573486,45.117786 -113.570694,45.134621 + -113.593208,45.149818 -113.600037,45.181068 -113.644699,45.206867 + -113.689224,45.26236 -113.687813,45.277866 -113.738182,45.321609 + -113.74041,45.382465 -113.774124,45.410252 -113.78476,45.445713 + -113.768265,45.477787 -113.7714,45.507133 -113.780029,45.516945 + -113.832809,45.514988 -113.802849,45.583809 -113.821579,45.600716 + -113.85112,45.609642 -113.902397,45.613571 -113.901291,45.637333 + -113.922623,45.655205 -113.925789,45.671291 -113.963234,45.679459 + -113.970238,45.697456 -114.00856,45.686413 -114.018967,45.672459 + -114.010078,45.652592 -114.01712,45.640854 -114.055603,45.625225 + -114.082054,45.58646 -114.117226,45.571209 -114.131134,45.550465 + -114.171753,45.544006 -114.193893,45.528 -114.241081,45.535374 + -114.246964,45.503029 -114.261322,45.485943 -114.325516,45.457508 + -114.349327,45.463467 -114.370537,45.485825 -114.418129,45.499092 + -114.432632,45.527718 -114.461784,45.547932 -114.495667,45.546734 + -114.526466,45.558277 -114.559998,45.548824 -114.540031,45.596481 + -114.563751,45.624355 -114.500816,45.652477 -114.509781,45.674141 + -114.496635,45.694485 -114.53405,45.72308 -114.541031,45.746082 + -114.562614,45.762482 -114.516449,45.81015 -114.498238,45.842766 + -114.472878,45.83955 -114.442307,45.852703 -114.406601,45.846535 + -114.391914,45.870968 -114.412605,45.910732 -114.428535,45.921558 + -114.404366,45.95406 -114.411522,45.972054 -114.483528,45.989887 + -114.473602,46.009846 -114.493393,46.023491 -114.464828,46.050896 + -114.455101,46.08231 -114.47644,46.107437 -114.505638,46.116222 + -114.518013,46.136143 -114.508682,46.157497 -114.466087,46.155342 + -114.439949,46.169048 -114.438622,46.220333 -114.471901,46.243862 + -114.472862,46.25304 -114.430862,46.28479 -114.408859,46.39299 + -114.39608,46.399624 -114.383087,46.428257 -114.409775,46.48745 + -114.359528,46.506203 -114.349174,46.517467 -114.342377,46.587959 + -114.323769,46.622917 -114.33374,46.654305 -114.383072,46.661674 + -114.44059,46.645794 -114.483772,46.623653 -114.539444,46.63797 + -114.609879,46.629128 -114.643791,46.660904 -114.644089,46.671001 + -114.624977,46.687187 -114.672935,46.734802 -114.697479,46.733841 + -114.747154,46.695213 -114.781967,46.703121 -114.776878,46.755798 + -114.793076,46.766613 -114.839836,46.77562 -114.865646,46.797127 + -114.901367,46.799515 -114.947449,46.852528 -114.939606,46.890968 + -114.923164,46.907246 -114.963768,46.925293 -115.00061,46.958889 + -115.036369,46.963081 -115.054672,46.973438 -115.080368,47.026604 + -115.134537,47.063629 -115.147713,47.09182 -115.171524,47.097649 + -115.192101,47.124104 -115.295258,47.179626 -115.324249,47.245224 + -115.342682,47.255096 -115.407227,47.263668 -115.425659,47.274448 + -115.500946,47.281719 -115.522079,47.292057 -115.554535,47.334686 + -115.598549,47.370075 -115.637794,47.380116 -115.665489,47.399239 + -115.749336,47.422546 -115.749115,47.434036 -115.731491,47.445374 + -115.655098,47.449249 -115.642197,47.457863 -115.639153,47.475304 + -115.69178,47.489609 -115.700531,47.520962 -115.741837,47.53376 + -115.691093,47.59079 -115.697289,47.61615 -115.73307,47.63995 + -115.732666,47.695625 -115.774727,47.709805 -115.789536,47.744911 + -115.835739,47.756355 -115.84832,47.805256 -115.868805,47.827526 + -115.902916,47.841148 -115.936836,47.867199 -115.997925,47.925217 + -116.024307,47.965015 -116.052483,47.976269 -116.054497,48.208549 + -116.055679,48.498726 -116.0625,48.999996 -114.728333,49 -114.0625,49 + -112.1875,48.999996 -111.281876,49 -110.75,49 -109.5,48.999996 -108.25,48.999996 + -107.1875,48.999996 -106.125,48.999996 -105.0625,48.999996 -104.0625,49 + -104.051826,48.645798 -104.05162,48.390995 -104.047935,48.000061 + -104.046822,47.400002 -104.045441,47.333817 -104.046951,46.642937 + -104.046219,46.54253 -104.047348,46.280876 -104.048416,45.942993 + -104.049026,45.883053 -104.043358,45.212887 -104.04258,44.997818 + -104.059349,44.997349 -105.04126,45.001091 -105.084465,44.999832 + -106.020576,44.997227 -106.258644,44.996174 -107.893715,44.999813 + -108.258568,45.00016 -108.624573,44.997643 -109.798653,44.99958 + -109.994789,45.002853 -110.392006,44.998688 -110.428894,44.992348 + -111.05265,44.995766 -111.050842,44.664562 -111.050789,44.473396 + -111.093857,44.486198 -111.128143,44.500832 -111.133583,44.527977 + -111.169464,44.545261 -111.177986,44.564926 -111.218727,44.573246 + -111.233452,44.602638 -111.219017,44.618057 -111.22319,44.626984 + -111.269882,44.642288 -111.269424,44.673878 -111.294884,44.683014 + -111.31469,44.705269 -111.318436,44.72794 -111.34919,44.726254 + -111.371521,44.745163 -111.384171,44.73777 -111.394295,44.708946 + -111.442841,44.713257 -111.474632,44.70224 + + + + + + + + Montana + 30 + Mtn + MT + 376990.894 + 3858.589 + 799065.0 + 211666.0 + 306163.0 + 395769.0 + 403296.0 + 293243.0 + 250373.0 + 41442.0 + 2050.0 + 350723.0 + 26217.0 + 123090.0 + 43619.0 + 0.495 + 0.505 + 150091.0 + + + + + + + + + + + + -69.777786,44.074074 -69.860435,43.999924 -69.792038,43.756001 + -69.830902,43.727901 -69.852295,43.744244 -69.846664,43.842262 + -69.887299,43.876633 -69.903641,43.790649 -69.973412,43.768764 + -70.000008,43.786125 -69.987877,43.845657 -70.026909,43.84552 + -70.157135,43.78973 -70.236305,43.685715 -70.222748,43.577156 + -70.342117,43.534824 -70.366432,43.430218 -70.457481,43.349384 + -70.539444,43.335632 -70.666176,43.090961 -70.819168,43.121784 + -70.831047,43.159088 -70.813705,43.235138 -70.901581,43.280937 + -70.906296,43.301987 -70.970192,43.366299 -70.979591,43.396103 + -70.961975,43.438046 -70.971283,43.470131 -70.95977,43.516308 -70.96476,43.53191 + -70.950111,43.548874 -70.957016,43.564064 -70.974365,43.571751 + -70.984932,43.791088 -71.009079,44.282082 -71.029205,44.668484 + -71.08799,45.301422 -70.959862,45.338818 -70.87693,45.225395 + -70.843361,45.278088 -70.813148,45.35463 -70.829613,45.390678 + -70.797447,45.425125 -70.635414,45.391918 -70.72039,45.512909 + -70.55275,45.660618 -70.396866,45.722 -70.416695,45.790264 -70.254448,45.898964 + -70.247948,45.94458 -70.310776,45.968742 -70.280502,46.053116 + -70.305328,46.06662 -70.229805,46.137398 -70.283974,46.190212 + -70.191536,46.334805 -70.047089,46.426083 -70.014626,46.570564 + -69.985458,46.69133 -69.230789,47.453297 -69.047478,47.421993 + -69.037231,47.257328 -68.895386,47.18222 -68.515182,47.296925 + -68.391769,47.285057 -68.335327,47.357334 -68.231323,47.352108 + -67.79155,47.060959 -67.78083,45.947006 -67.756157,45.916523 + -67.795113,45.878418 -67.759911,45.82774 -67.803596,45.794449 + -67.803978,45.678051 -67.753502,45.659225 -67.718582,45.681236 + -67.615692,45.605133 -67.439857,45.592495 -67.416641,45.503487 + -67.504662,45.485748 -67.419113,45.375782 -67.478508,45.280209 + -67.439995,45.18951 -67.346169,45.122177 -67.274658,45.182709 + -67.166473,45.156189 -67.15123,45.121914 -67.065933,44.959217 + -67.147278,44.904503 -66.969849,44.828575 -67.008293,44.780544 + -67.200935,44.653702 -67.309036,44.653442 -67.389076,44.691322 + -67.571556,44.598255 -67.6194,44.540161 -67.811775,44.553932 + -67.859116,44.535999 -67.900597,44.45232 -67.968895,44.471149 + -67.963989,44.505249 -67.987076,44.484734 -68.016945,44.384876 + -68.074928,44.381294 -68.13681,44.475159 -68.246155,44.49057 + -68.364304,44.431309 -68.429108,44.465229 -68.552719,44.398972 + -68.530609,44.289757 -68.559959,44.259808 -68.740837,44.346252 + -68.813377,44.327354 -68.814293,44.413914 -68.741875,44.50721 + -68.745804,44.552246 -68.824074,44.608833 -68.824333,44.664017 + -68.86113,44.610897 -68.808426,44.56958 -68.812202,44.494518 + -68.959702,44.430256 -68.98555,44.271034 -69.022003,44.244015 + -69.074974,44.068985 -69.21965,43.946705 -69.294159,43.942108 + -69.346962,44.015888 -69.394997,44.025047 -69.483742,43.887077 + -69.589836,43.84478 -69.664963,43.852142 -69.655754,43.980171 + -69.613441,44.033535 -69.721146,43.937901 -69.749039,43.893295 + -69.725182,43.784393 -69.75087,43.76162 -69.778183,43.791187 + -69.800522,44.026791 -69.767265,44.047657 -69.777786,44.074074 + + + + + + + + + + + -68.388458,44.377174 -68.350792,44.398872 -68.355988,44.42878 + -68.23925,44.437485 -68.165314,44.334415 -68.305244,44.289951 + -68.321251,44.224998 -68.403427,44.270721 -68.388458,44.377174 + + + + + + + + Maine + 23 + N Eng + ME + 79939.207 + 10236.779 + 1227928.0 + 328685.0 + 465312.0 + 597850.0 + 630078.0 + 456299.0 + 424101.0 + 79763.0 + 5084.0 + 571842.0 + 40722.0 + 172830.0 + 94926.0 + 0.487 + 0.513 + 274322.0 + + + + + + + + + + + + -98.730057,45.938297 -99.006447,45.939583 -99.716949,45.94278 + -99.875389,45.943562 -100.514,45.940392 -102.00235,45.942505 + -102.945953,45.941662 -102.994377,45.941113 -104.048416,45.942993 + -104.047348,46.280876 -104.046219,46.54253 -104.046951,46.642937 + -104.045441,47.333817 -104.046822,47.400002 -104.047935,48.000061 + -104.05162,48.390995 -104.051826,48.645798 -104.0625,49 -102.9375,48.999996 + -102.02182,49 -101.5,49 -100.1875,48.999996 -99.53315,49 -99,49 + -97.9375,48.999996 -97.229095,49 -97.216026,48.931843 -97.175385,48.873772 + -97.17086,48.835995 -97.180077,48.815552 -97.164368,48.810383 + -97.173599,48.801529 -97.147171,48.781185 -97.138901,48.763557 + -97.147552,48.755669 -97.132156,48.747234 -97.13446,48.726254 + -97.109756,48.708599 -97.116394,48.695259 -97.096825,48.674545 + -97.107285,48.629963 -97.127098,48.62981 -97.122612,48.620785 + -97.144371,48.61404 -97.140465,48.586922 -97.157845,48.583656 + -97.151779,48.572872 -97.167595,48.562279 -97.146271,48.549553 + -97.160088,48.545094 -97.15519,48.538414 -97.139038,48.534664 + -97.14798,48.517967 -97.134247,48.51733 -97.143265,48.438126 + -97.119286,48.437119 -97.122253,48.416126 -97.151299,48.419628 + -97.149475,48.410007 -97.128777,48.407902 -97.15847,48.388222 + -97.134857,48.384426 -97.133438,48.372471 -97.150047,48.363232 + -97.130775,48.361507 -97.136787,48.326008 -97.112244,48.319942 + -97.132286,48.310986 -97.114403,48.303635 -97.113373,48.294899 + -97.130165,48.293056 -97.112335,48.286163 -97.111366,48.277893 + -97.136307,48.2645 -97.123436,48.25919 -97.127205,48.23354 -97.108887,48.228065 + -97.139404,48.221771 -97.11055,48.207623 -97.130478,48.203758 + -97.136925,48.19508 -97.135941,48.175243 -97.137093,48.167786 + -97.115715,48.159241 -97.136162,48.148415 -97.120567,48.142792 + -97.121521,48.116386 -97.098679,48.10099 -97.092369,48.070362 + -97.066719,48.048183 -97.047699,47.954945 -97.014977,47.917912 + -97.02021,47.875591 -96.999985,47.87022 -96.976875,47.828053 + -96.983536,47.809685 -96.957474,47.794464 -96.931656,47.763531 + -96.923302,47.714119 -96.889069,47.67395 -96.872978,47.61528 -96.85186,47.601177 + -96.858307,47.563004 -96.848831,47.544594 -96.860329,47.521381 + -96.851257,47.500645 -96.866325,47.461563 -96.855469,47.436779 + -96.86689,47.413113 -96.849648,47.408962 -96.83947,47.384144 + -96.850273,47.360981 -96.838104,47.34227 -96.84639,47.314629 + -96.837357,47.293911 -96.849266,47.25687 -96.836708,47.240486 + -96.826134,47.170094 -96.838806,47.151917 -96.818794,47.092636 + -96.826607,47.078865 -96.82225,47.033966 -96.834938,47.010265 + -96.824173,47.003471 -96.816414,46.969814 -96.793068,46.969677 + -96.801529,46.955879 -96.789352,46.948238 -96.787567,46.93222 + -96.762711,46.936298 -96.756554,46.922817 -96.777702,46.867386 + -96.767891,46.844898 -96.796837,46.812069 -96.780022,46.762348 + -96.781197,46.707081 -96.793335,46.678841 -96.789886,46.62981 + -96.783958,46.624149 -96.770683,46.600021 -96.75087,46.588657 + -96.73996,46.489471 -96.714539,46.468758 -96.709328,46.427208 + -96.687874,46.412258 -96.651749,46.359474 -96.61451,46.350853 + -96.601723,46.336365 -96.597832,46.238724 -96.586105,46.215454 + -96.58754,46.191959 -96.570816,46.177216 -96.551582,46.09557 -96.575867,46.02132 + -96.561455,45.947723 -96.566574,45.934151 -97.232941,45.936543 + -97.97834,45.930859 -98.014328,45.931534 -98.730057,45.938297 + + + + + + + + North Dakota + 38 + W N Cen + ND + 178695.213 + 4427.798 + 638800.0 + 166270.0 + 240878.0 + 318201.0 + 320599.0 + 237047.0 + 209546.0 + 31332.0 + 1638.0 + 287558.0 + 16083.0 + 104938.0 + 33936.0 + 0.498 + 0.502 + 155209.0 + + + + + + + + + + + + -102.787933,42.995323 -103.005409,42.999374 -103.500984,42.99865 + -104.05571,43.003094 -104.05867,43.47916 -104.057426,43.503738 + -104.05899,43.852928 -104.059242,44.145844 -104.060547,44.181843 + -104.058975,44.574368 -104.059349,44.997349 -104.04258,44.997818 + -104.043358,45.212887 -104.049026,45.883053 -104.048416,45.942993 + -102.994377,45.941113 -102.945953,45.941662 -102.00235,45.942505 + -100.514,45.940392 -99.875389,45.943562 -99.716949,45.94278 -99.006447,45.939583 + -98.730057,45.938297 -98.014328,45.931534 -97.97834,45.930859 + -97.232941,45.936543 -96.566574,45.934151 -96.587608,45.817894 + -96.604263,45.808304 -96.657043,45.73901 -96.832443,45.650726 + -96.854637,45.609161 -96.842735,45.584129 -96.768898,45.517517 + -96.737686,45.458233 -96.692825,45.410675 -96.604744,45.396561 + -96.532211,45.375168 -96.477257,45.328545 -96.457268,45.298885 + -96.454163,45.27523 -96.45575,44.972031 -96.454887,44.801384 -96.45639,44.628845 + -96.454781,44.53838 -96.457077,44.199093 -96.456284,43.84877 + -96.460136,43.499744 -96.597992,43.499874 -96.583473,43.481945 + -96.588791,43.435562 -96.557388,43.400749 -96.524734,43.384247 + -96.522575,43.356987 -96.540245,43.307678 -96.578812,43.290092 + -96.570404,43.26363 -96.55925,43.253281 -96.566673,43.239651 + -96.558289,43.225506 -96.486931,43.217926 -96.472801,43.209099 + -96.451195,43.126324 -96.460495,43.087887 -96.461784,43.075596 + -96.479263,43.061897 -96.519699,43.051521 -96.498711,43.012062 + -96.516838,42.986469 -96.514626,42.952393 -96.543953,42.913876 + -96.537201,42.896915 -96.555901,42.846668 -96.572815,42.834354 + -96.587334,42.835388 -96.600563,42.799564 -96.632668,42.77684 + -96.640396,42.748608 -96.626228,42.708359 -96.562729,42.668518 + -96.540855,42.662411 -96.512535,42.629761 -96.48819,42.580486 + -96.500633,42.573891 -96.489029,42.564034 -96.479935,42.517136 + -96.439087,42.489246 -96.494392,42.488464 -96.546906,42.520504 + -96.584442,42.518291 -96.605156,42.50724 -96.628983,42.522697 + -96.63636,42.550735 -96.713745,42.612305 -96.714958,42.62191 + -96.694283,42.641167 -96.698746,42.657719 -96.722343,42.668594 + -96.799026,42.670021 -96.81012,42.681343 -96.809822,42.704086 + -96.907913,42.731701 -96.970451,42.721149 -96.977547,42.72731 + -96.969681,42.752068 -96.979271,42.758316 -97.014816,42.759544 + -97.130142,42.773926 -97.161095,42.798622 -97.211502,42.812576 + -97.224113,42.841206 -97.242859,42.85183 -97.271126,42.850018 + -97.311081,42.861774 -97.388969,42.867435 -97.456924,42.850445 + -97.482819,42.857159 -97.505791,42.860138 -97.570312,42.847992 + -97.634628,42.861286 -97.68541,42.836838 -97.724907,42.858009 + -97.771843,42.846165 -97.796684,42.849598 -97.818298,42.866589 + -97.888313,42.855808 -97.889595,42.831272 -97.929131,42.792324 + -97.963211,42.773689 -97.994797,42.766811 -98.032791,42.769192 + -98.121468,42.808361 -98.122765,42.820225 -98.144516,42.835796 + -98.167473,42.839573 -98.309982,42.881798 -98.390846,42.920139 + -98.457085,42.937164 -98.497292,42.991783 -99.253593,42.99239 + -99.532402,42.992332 -100.197739,42.991089 -101.231308,42.986835 + -102.086273,42.989891 -102.787933,42.995323 + + + + + + + + South Dakota + 46 + W N Cen + SD + 196575.21 + 3169.429 + 696004.0 + 180306.0 + 259034.0 + 342498.0 + 353506.0 + 250825.0 + 233478.0 + 32610.0 + 971.0 + 321891.0 + 13983.0 + 119594.0 + 41921.0 + 0.492 + 0.508 + 162746.0 + + + + + + + + + + + + -104.053108,41.698246 -104.054993,41.564247 -104.053505,41.388107 + -104.051201,41.003227 -104.933968,40.994305 -105.278259,40.996365 + -106.202896,41.000111 -106.328545,41.001316 -106.864838,40.998489 + -107.303436,41.000168 -107.918037,41.00341 -109.047638,40.998474 + -110.001457,40.997646 -110.062477,40.99794 -111.050285,40.996635 + -111.050911,41.25848 -111.050323,41.578648 -111.047951,41.996265 + -111.046028,42.503323 -111.048447,43.019962 -111.04673,43.284813 + -111.045998,43.515606 -111.049629,43.982632 -111.050789,44.473396 + -111.050842,44.664562 -111.05265,44.995766 -110.428894,44.992348 + -110.392006,44.998688 -109.994789,45.002853 -109.798653,44.99958 + -108.624573,44.997643 -108.258568,45.00016 -107.893715,44.999813 + -106.258644,44.996174 -106.020576,44.997227 -105.084465,44.999832 + -105.04126,45.001091 -104.059349,44.997349 -104.058975,44.574368 + -104.060547,44.181843 -104.059242,44.145844 -104.05899,43.852928 + -104.057426,43.503738 -104.05867,43.47916 -104.05571,43.003094 + -104.055725,42.614704 -104.053009,41.999851 -104.053108,41.698246 + + + + + + + + Wyoming + 56 + Mtn + WY + 251500.801 + 1848.149 + 453588.0 + 119825.0 + 168839.0 + 227007.0 + 226581.0 + 164561.0 + 153679.0 + 28109.0 + 2963.0 + 207868.0 + 13112.0 + 71419.0 + 29157.0 + 0.5 + 0.5 + 83202.0 + + + + + + + + + + + + -87.748451,44.961628 -87.83989,44.927334 -87.830917,44.873356 + -87.985687,44.720482 -87.983078,44.677273 -88.013184,44.639126 + -87.975655,44.595821 -88.012917,44.622242 -88.040314,44.571457 + -87.966125,44.535503 -87.926308,44.539146 -87.868683,44.616913 + -87.76413,44.644054 -87.723724,44.689293 -87.614365,44.833054 + -87.552689,44.851341 -87.551575,44.823029 -87.433647,44.891102 + -87.367363,44.811569 -87.314369,44.79472 -87.372978,44.676918 + -87.473442,44.533947 -87.537407,44.327854 -87.517242,44.175758 + -87.644287,44.097836 -87.726036,43.893909 -87.702644,43.67318 + -87.785957,43.546299 -87.802872,43.458714 -87.875244,43.358589 + -87.889748,43.197208 -87.859985,43.075863 -87.891899,43.025761 + -87.836357,42.964577 -87.819771,42.841545 -87.756729,42.777527 + -87.791435,42.666622 -87.79731,42.489132 -88.194702,42.489613 + -88.297897,42.49197 -88.70652,42.489655 -88.764954,42.490906 + -88.939079,42.490864 -89.359444,42.497906 -89.400497,42.49749 + -89.834618,42.50346 -89.923569,42.504108 -90.419975,42.508362 + -90.638329,42.509361 -90.62558,42.528561 -90.639091,42.555714 + -90.664253,42.571392 -90.694664,42.637932 -90.745483,42.657005 + -90.892418,42.678246 -90.919281,42.680683 -90.999054,42.707066 + -91.06604,42.744923 -91.081902,42.783375 -91.0933,42.871452 -91.138992,42.925907 + -91.152084,43.001331 -91.159622,43.0812 -91.168442,43.082905 + -91.161224,43.147594 -91.068924,43.257919 -91.066299,43.280704 + -91.078369,43.31332 -91.176918,43.35397 -91.198112,43.370537 + -91.210785,43.424076 -91.235771,43.46471 -91.223434,43.500835 + -91.240425,43.54874 -91.232857,43.598919 -91.258255,43.677353 + -91.258781,43.722427 -91.250969,43.788109 -91.291809,43.847225 + -91.373215,43.947227 -91.425758,43.985657 -91.528275,44.034252 + -91.569016,44.034992 -91.601639,44.040859 -91.652084,44.066933 + -91.753067,44.137264 -91.848587,44.191223 -91.888535,44.25753 + -91.922188,44.288376 -91.922592,44.317554 -91.938705,44.339146 + -91.972221,44.364521 -92.091164,44.415623 -92.205963,44.438427 + -92.248924,44.456249 -92.296509,44.492214 -92.320297,44.540524 + -92.340691,44.552868 -92.509026,44.575191 -92.60878,44.610325 + -92.630173,44.642685 -92.736946,44.713627 -92.805382,44.746193 + -92.760826,44.835403 -92.764061,44.862267 -92.771667,44.899529 + -92.753723,44.915035 -92.749565,44.935688 -92.766922,45.001038 + -92.762787,45.022152 -92.796555,45.065643 -92.745216,45.113037 + -92.744728,45.156456 -92.762375,45.186646 -92.755211,45.21241 + -92.746384,45.297638 -92.707176,45.318237 -92.684662,45.363113 + -92.648544,45.395504 -92.644768,45.439491 -92.65461,45.455261 + -92.685211,45.470093 -92.727943,45.547283 -92.761963,45.564304 + -92.834824,45.563442 -92.876617,45.578876 -92.885185,45.644997 + -92.85981,45.710606 -92.833427,45.730934 -92.7789,45.763386 -92.748558,45.837349 + -92.733894,45.845028 -92.706039,45.891006 -92.666008,45.915752 + -92.552475,45.951321 -92.523781,45.982635 -92.462151,45.981251 + -92.424805,46.025558 -92.364769,46.016304 -92.346031,46.022652 + -92.327179,46.056934 -92.289177,46.073288 -92.28875,46.156658 + -92.28849,46.416042 -92.287079,46.658844 -92.208961,46.646931 + -92.095779,46.742687 -92.003967,46.683861 -91.921272,46.680195 + -91.555588,46.756924 -90.861542,46.952549 -90.7743,46.920303 -90.77726,46.88319 + -90.926056,46.58556 -90.73053,46.645756 -90.540695,46.587582 -90.40802,46.568665 + -90.385345,46.539711 -90.31353,46.551617 -90.302216,46.54435 + -90.300003,46.525105 -90.269608,46.522533 -90.258224,46.508842 + -90.211349,46.506348 -90.161217,46.442432 -90.141624,46.393951 + -90.115005,46.365208 -90.111488,46.340481 -89.924973,46.304077 + -89.09967,46.145691 -88.985168,46.100437 -88.925064,46.073647 + -88.804268,46.026848 -88.793686,46.036404 -88.777351,46.032658 + -88.772888,46.021191 -88.72628,46.029625 -88.703476,46.018967 + -88.677254,46.020187 -88.643539,45.993431 -88.615372,45.994164 + -88.597404,46.01556 -88.575226,46.009003 -88.548225,46.019344 + -88.51548,46.018654 -88.49395,46.013004 -88.483681,45.999195 + -88.454185,46.000805 -88.403389,45.983467 -88.369804,45.994633 + -88.32119,45.966759 -88.299019,45.96199 -88.257034,45.967102 + -88.214859,45.947948 -88.180061,45.953564 -88.150307,45.93634 + -88.111259,45.926334 -88.093719,45.920662 -88.095634,45.89185 + -88.065292,45.873688 -88.121658,45.834923 -88.129822,45.819447 + -88.088608,45.791576 -88.051514,45.786156 -87.989944,45.79509 + -87.969055,45.766491 -87.873505,45.75074 -87.842239,45.722458 -87.80143,45.71143 + -87.801033,45.701363 -87.777351,45.684139 -87.780823,45.675953 + -87.816933,45.665428 -87.819817,45.654488 -87.775925,45.613235 + -87.774956,45.600422 -87.786194,45.568554 -87.828484,45.568626 + -87.805023,45.544559 -87.789268,45.4991 -87.813499,45.466492 + -87.860153,45.445129 -87.849419,45.406147 -87.883499,45.365883 + -87.873863,45.362114 -87.868423,45.372101 -87.861984,45.370193 + -87.841171,45.346176 -87.827896,45.358349 -87.759926,45.352924 + -87.689484,45.391296 -87.64357,45.361881 -87.645248,45.348194 + -87.704361,45.272228 -87.705032,45.247108 -87.719559,45.236794 + -87.721519,45.211693 -87.736092,45.199093 -87.729561,45.176624 + -87.672707,45.14069 -87.66478,45.10907 -87.581169,45.094654 -87.618416,45.05682 + -87.620232,44.992008 -87.748451,44.961628 + + + + + + + + + + + -87.034409,45.290421 -86.986137,45.298672 -86.967598,45.240288 + -86.995621,45.218422 -87.044998,45.249031 -87.025337,45.149982 + -87.079765,45.147316 -87.044792,45.09552 -87.08757,45.092186 + -87.083794,45.053291 -87.11245,45.06477 -87.178589,44.982811 + -87.168686,44.933327 -87.205551,44.873241 -87.311028,44.798775 + -87.378639,44.837746 -87.405319,44.911205 -87.342056,45.015221 + -87.283379,45.052628 -87.230804,45.175076 -87.177803,45.154984 + -87.065948,45.296478 -87.034409,45.290421 + + + + + + + + Wisconsin + 55 + E N Cen + WI + 139556.572 + 8223.295 + 4796441.0 + 1249223.0 + 1789141.0 + 2345442.0 + 2450999.0 + 1763163.0 + 1710612.0 + 264651.0 + 57559.0 + 2335941.0 + 129191.0 + 688168.0 + 425748.0 + 0.489 + 0.511 + 1180518.0 + + + + + + + + + + + + -117.025307,43.67915 -117.022804,43.753819 -117.036125,43.800259 + -117.026634,43.831684 -117.009514,43.839886 -117.015228,43.853088 + -116.984779,43.859467 -116.977158,43.873585 -116.97715,43.904556 + -116.958725,43.928692 -116.966965,43.96331 -116.932602,44.014317 + -116.975822,44.074009 -116.962448,44.090412 -116.945892,44.09314 + -116.90126,44.146427 -116.912056,44.177418 -116.980873,44.197956 + -116.975128,44.225296 -116.991707,44.247177 -117.02935,44.249451 + -117.051025,44.23167 -117.080383,44.243961 -117.099556,44.267193 + -117.111687,44.26992 -117.142273,44.250748 -117.169716,44.253448 + -117.212563,44.284836 -117.216446,44.300781 -117.200592,44.339554 + -117.235909,44.390099 -117.216209,44.427971 -117.223396,44.473103 + -117.20295,44.485901 -117.186378,44.511921 -117.14415,44.534771 + -117.142929,44.559402 -117.129494,44.572639 -117.078346,44.689453 + -117.065506,44.697674 -117.038567,44.749233 -116.950493,44.776154 + -116.908623,44.82906 -116.89637,44.848675 -116.866081,44.868729 + -116.834404,44.920265 -116.846565,44.954971 -116.830406,44.972755 + -116.847168,44.971863 -116.854897,44.980087 -116.847107,45.000164 + -116.853523,45.017067 -116.80632,45.049877 -116.786224,45.075874 + -116.777107,45.099602 -116.760284,45.106422 -116.735603,45.137428 + -116.687836,45.26247 -116.671288,45.335529 -116.564796,45.45998 + -116.553528,45.493763 -116.477577,45.566174 -116.469444,45.606373 + -116.513939,45.664608 -116.527298,45.710846 -116.559654,45.747543 + -116.653419,45.78075 -116.702202,45.81929 -116.772728,45.819885 + -116.790283,45.845989 -116.855492,45.903721 -116.897217,45.98064 + -116.918152,45.9953 -116.956741,46.065811 -116.986229,46.078632 + -116.960655,46.097397 -116.928444,46.165604 -116.966507,46.197674 + -116.971741,46.249428 -117.000656,46.302567 -117.026985,46.335545 + -117.063194,46.348816 -117.04348,46.388691 -117.037567,46.428097 + -117.040932,46.536716 -117.039963,47.119423 -117.041382,47.258602 + -117.040779,47.361542 -117.036438,47.971191 -117.037834,48.046284 + -117.028046,48.83815 -117.030975,49 -116.0625,48.999996 -116.055679,48.498726 + -116.054497,48.208549 -116.052483,47.976269 -116.024307,47.965015 + -115.997925,47.925217 -115.936836,47.867199 -115.902916,47.841148 + -115.868805,47.827526 -115.84832,47.805256 -115.835739,47.756355 + -115.789536,47.744911 -115.774727,47.709805 -115.732666,47.695625 + -115.73307,47.63995 -115.697289,47.61615 -115.691093,47.59079 + -115.741837,47.53376 -115.700531,47.520962 -115.69178,47.489609 + -115.639153,47.475304 -115.642197,47.457863 -115.655098,47.449249 + -115.731491,47.445374 -115.749115,47.434036 -115.749336,47.422546 + -115.665489,47.399239 -115.637794,47.380116 -115.598549,47.370075 + -115.554535,47.334686 -115.522079,47.292057 -115.500946,47.281719 + -115.425659,47.274448 -115.407227,47.263668 -115.342682,47.255096 + -115.324249,47.245224 -115.295258,47.179626 -115.192101,47.124104 + -115.171524,47.097649 -115.147713,47.09182 -115.134537,47.063629 + -115.080368,47.026604 -115.054672,46.973438 -115.036369,46.963081 + -115.00061,46.958889 -114.963768,46.925293 -114.923164,46.907246 + -114.939606,46.890968 -114.947449,46.852528 -114.901367,46.799515 + -114.865646,46.797127 -114.839836,46.77562 -114.793076,46.766613 + -114.776878,46.755798 -114.781967,46.703121 -114.747154,46.695213 + -114.697479,46.733841 -114.672935,46.734802 -114.624977,46.687187 + -114.644089,46.671001 -114.643791,46.660904 -114.609879,46.629128 + -114.539444,46.63797 -114.483772,46.623653 -114.44059,46.645794 + -114.383072,46.661674 -114.33374,46.654305 -114.323769,46.622917 + -114.342377,46.587959 -114.349174,46.517467 -114.359528,46.506203 + -114.409775,46.48745 -114.383087,46.428257 -114.39608,46.399624 + -114.408859,46.39299 -114.430862,46.28479 -114.472862,46.25304 + -114.471901,46.243862 -114.438622,46.220333 -114.439949,46.169048 + -114.466087,46.155342 -114.508682,46.157497 -114.518013,46.136143 + -114.505638,46.116222 -114.47644,46.107437 -114.455101,46.08231 + -114.464828,46.050896 -114.493393,46.023491 -114.473602,46.009846 + -114.483528,45.989887 -114.411522,45.972054 -114.404366,45.95406 + -114.428535,45.921558 -114.412605,45.910732 -114.391914,45.870968 + -114.406601,45.846535 -114.442307,45.852703 -114.472878,45.83955 + -114.498238,45.842766 -114.516449,45.81015 -114.562614,45.762482 + -114.541031,45.746082 -114.53405,45.72308 -114.496635,45.694485 + -114.509781,45.674141 -114.500816,45.652477 -114.563751,45.624355 + -114.540031,45.596481 -114.559998,45.548824 -114.526466,45.558277 + -114.495667,45.546734 -114.461784,45.547932 -114.432632,45.527718 + -114.418129,45.499092 -114.370537,45.485825 -114.349327,45.463467 + -114.325516,45.457508 -114.261322,45.485943 -114.246964,45.503029 + -114.241081,45.535374 -114.193893,45.528 -114.171753,45.544006 + -114.131134,45.550465 -114.117226,45.571209 -114.082054,45.58646 + -114.055603,45.625225 -114.01712,45.640854 -114.010078,45.652592 + -114.018967,45.672459 -114.00856,45.686413 -113.970238,45.697456 + -113.963234,45.679459 -113.925789,45.671291 -113.922623,45.655205 + -113.901291,45.637333 -113.902397,45.613571 -113.85112,45.609642 + -113.821579,45.600716 -113.802849,45.583809 -113.832809,45.514988 + -113.780029,45.516945 -113.7714,45.507133 -113.768265,45.477787 + -113.78476,45.445713 -113.774124,45.410252 -113.74041,45.382465 + -113.738182,45.321609 -113.687813,45.277866 -113.689224,45.26236 + -113.644699,45.206867 -113.600037,45.181068 -113.593208,45.149818 + -113.570694,45.134621 -113.573486,45.117786 -113.551384,45.107624 + -113.509338,45.10791 -113.519722,45.082138 -113.489273,45.071293 + -113.48542,45.058395 -113.454552,45.043423 -113.45797,45.027523 + -113.440147,44.998268 -113.447884,44.949596 -113.462532,44.940849 + -113.486465,44.939648 -113.495308,44.930744 -113.444695,44.851315 + -113.420502,44.833775 -113.349152,44.807644 -113.33976,44.779076 + -113.31781,44.780304 -113.256287,44.810562 -113.239471,44.811916 + -113.137413,44.761517 -113.126572,44.737457 -113.100845,44.715252 + -113.098099,44.695995 -113.072289,44.675606 -113.053436,44.624371 + -113.082184,44.582764 -113.038811,44.556377 -113.036972,44.533043 + -113.006866,44.510696 -113.019463,44.481861 -113.005814,44.452702 + -113.011169,44.437801 -112.984406,44.435627 -112.937439,44.40728 + -112.886467,44.392941 -112.869942,44.370068 -112.843437,44.353729 + -112.816559,44.364292 -112.817871,44.394909 -112.825851,44.421173 + -112.795387,44.458099 -112.779022,44.47401 -112.732872,44.484409 + -112.713486,44.497025 -112.652351,44.480892 -112.53849,44.477589 + -112.501007,44.463089 -112.457687,44.468925 -112.419922,44.449375 + -112.366753,44.44936 -112.339745,44.497269 -112.341675,44.525188 + -112.281509,44.54179 -112.255844,44.560059 -112.229568,44.559578 + -112.216934,44.538582 -112.19883,44.531536 -112.123367,44.528339 + -112.099075,44.518318 -112.058548,44.528698 -112.02626,44.52293 + -112.022797,44.53513 -111.977005,44.529762 -111.939575,44.549812 + -111.871696,44.556351 -111.807037,44.504066 -111.791809,44.518547 + -111.766121,44.518909 -111.716202,44.533844 -111.684067,44.550835 + -111.604454,44.543072 -111.566437,44.552948 -111.489449,44.528778 + -111.481781,44.536224 -111.458534,44.538002 -111.462036,44.550022 + -111.492111,44.55127 -111.513733,44.593277 -111.500954,44.616051 + -111.506897,44.637768 -111.469376,44.640789 -111.457474,44.652634 + -111.4599,44.670101 -111.480011,44.691494 -111.474632,44.70224 + -111.442841,44.713257 -111.394295,44.708946 -111.384171,44.73777 + -111.371521,44.745163 -111.34919,44.726254 -111.318436,44.72794 + -111.31469,44.705269 -111.294884,44.683014 -111.269424,44.673878 + -111.269882,44.642288 -111.22319,44.626984 -111.219017,44.618057 + -111.233452,44.602638 -111.218727,44.573246 -111.177986,44.564926 + -111.169464,44.545261 -111.133583,44.527977 -111.128143,44.500832 + -111.093857,44.486198 -111.050789,44.473396 -111.049629,43.982632 + -111.045998,43.515606 -111.04673,43.284813 -111.048447,43.019962 + -111.046028,42.503323 -111.047951,41.996265 -111.49382,42.00024 + -112.099724,42.002377 -112.146324,41.99913 -112.988754,42.001228 + -114.038223,41.995476 -114.268616,41.99601 -115.023979,41.996597 + -115.946617,41.994698 -116.991356,41.994904 -117.017906,41.994904 + -117.025307,43.67915 + + + + + + + + Idaho + 16 + Mtn + ID + 214324.978 + 2131.144 + 1006749.0 + 263194.0 + 360723.0 + 500956.0 + 505793.0 + 359136.0 + 329881.0 + 52958.0 + 8572.0 + 443703.0 + 29070.0 + 144809.0 + 68391.0 + 0.498 + 0.502 + 201595.0 + + + + + + + + + + + + -73.258507,42.745979 -73.269722,42.747402 -73.296616,42.803471 + -73.280029,42.837025 -73.276451,42.940216 -73.250519,43.31078 + -73.238838,43.512764 -73.260429,43.559315 -73.291847,43.574966 + -73.282181,43.593121 -73.294548,43.619587 -73.303978,43.624649 + -73.364128,43.614933 -73.388557,43.569077 -73.418762,43.582413 + -73.423401,43.63205 -73.371429,43.714218 -73.357109,43.756496 + -73.359436,43.778366 -73.385178,43.804447 -73.375557,43.885918 + -73.405769,43.914749 -73.417839,43.98814 -73.408684,44.018166 + -73.436432,44.045624 -73.435646,44.063843 -73.409187,44.106556 + -73.408295,44.136173 -73.382492,44.172054 -73.377762,44.201195 + -73.305756,44.26009 -73.330215,44.36734 -73.300423,44.405483 + -73.293747,44.432804 -73.334877,44.544281 -73.348236,44.553925 + -73.371719,44.579121 -73.382248,44.619762 -73.37056,44.634304 + -73.37352,44.661232 -73.358574,44.680325 -73.373581,44.724194 + -73.327209,44.799252 -73.369476,44.819077 -73.382729,44.847893 + -73.336838,44.932564 -73.351181,44.981934 -73.345146,45.0061 + -73.188972,45.008446 -72.547668,45.005325 -71.902328,45.007294 + -71.505844,45.013306 -71.541397,44.976517 -71.517448,44.943649 + -71.506836,44.899624 -71.575569,44.815971 -71.583969,44.779148 + -71.631599,44.741661 -71.608147,44.677811 -71.589218,44.650547 + -71.568497,44.637394 -71.554573,44.596535 -71.537262,44.578876 + -71.592758,44.551147 -71.591911,44.538818 -71.575714,44.525749 + -71.58709,44.49448 -71.614693,44.474449 -71.637024,44.476673 + -71.648178,44.469116 -71.656868,44.440079 -71.677353,44.421284 + -71.767036,44.39819 -71.798195,44.384113 -71.821663,44.3503 -71.835281,44.344139 + -71.928825,44.336052 -71.939369,44.325726 -71.994896,44.327488 + -72.035957,44.299374 -72.060028,44.261433 -72.044853,44.234318 + -72.059746,44.182114 -72.045189,44.156372 -72.035385,44.120682 + -72.04998,44.100388 -72.032913,44.096035 -72.035194,44.083309 + -72.077385,44.031975 -72.08567,44.008858 -72.110374,43.989162 + -72.113274,43.976448 -72.092178,43.957924 -72.11367,43.939098 + -72.122116,43.909149 -72.170555,43.878849 -72.185303,43.80162 + -72.206558,43.764565 -72.219589,43.750622 -72.260521,43.735229 + -72.304504,43.69846 -72.333549,43.597294 -72.373962,43.572304 + -72.395462,43.517483 -72.38298,43.484558 -72.396713,43.410084 + -72.412605,43.377052 -72.398094,43.350933 -72.410698,43.32333 + -72.402885,43.307308 -72.436066,43.232178 -72.452866,43.155945 + -72.438072,43.116192 -72.443932,43.07896 -72.462219,43.046425 + -72.457626,42.999523 -72.473808,42.976063 -72.50473,42.965504 + -72.520683,42.951591 -72.525276,42.912533 -72.553894,42.860561 + -72.539383,42.807652 -72.513535,42.789177 -72.507736,42.76865 + -72.47979,42.761505 -72.462639,42.746758 -72.456238,42.725769 + -72.923454,42.737282 -73.020149,42.740314 -73.258507,42.745979 + + + + + + + + Vermont + 50 + N Eng + VT + 23955.748 + 947.04 + 562758.0 + 144895.0 + 210650.0 + 275492.0 + 287266.0 + 209604.0 + 199808.0 + 35731.0 + 2033.0 + 283146.0 + 17600.0 + 84759.0 + 38046.0 + 0.49 + 0.51 + 146370.0 + + + + + + + + + + + + -91.730217,43.499603 -92.07737,43.499187 -92.452995,43.499496 + -92.557831,43.500294 -93.027016,43.501316 -93.054184,43.501495 + -93.500618,43.500534 -93.653481,43.500809 -93.973717,43.500343 + -94.246544,43.498993 -94.454987,43.498146 -94.859573,43.500072 + -94.920197,43.499413 -95.396278,43.50037 -95.464493,43.499577 + -95.866615,43.498978 -96.060738,43.498566 -96.460136,43.499744 + -96.456284,43.84877 -96.457077,44.199093 -96.454781,44.53838 -96.45639,44.628845 + -96.454887,44.801384 -96.45575,44.972031 -96.454163,45.27523 + -96.457268,45.298885 -96.477257,45.328545 -96.532211,45.375168 + -96.604744,45.396561 -96.692825,45.410675 -96.737686,45.458233 + -96.768898,45.517517 -96.842735,45.584129 -96.854637,45.609161 + -96.832443,45.650726 -96.657043,45.73901 -96.604263,45.808304 + -96.587608,45.817894 -96.566574,45.934151 -96.561455,45.947723 + -96.575867,46.02132 -96.551582,46.09557 -96.570816,46.177216 -96.58754,46.191959 + -96.586105,46.215454 -96.597832,46.238724 -96.601723,46.336365 + -96.61451,46.350853 -96.651749,46.359474 -96.687874,46.412258 + -96.709328,46.427208 -96.714539,46.468758 -96.73996,46.489471 + -96.75087,46.588657 -96.770683,46.600021 -96.783958,46.624149 + -96.789886,46.62981 -96.793335,46.678841 -96.781197,46.707081 + -96.780022,46.762348 -96.796837,46.812069 -96.767891,46.844898 + -96.777702,46.867386 -96.756554,46.922817 -96.762711,46.936298 + -96.787567,46.93222 -96.789352,46.948238 -96.801529,46.955879 + -96.793068,46.969677 -96.816414,46.969814 -96.824173,47.003471 + -96.834938,47.010265 -96.82225,47.033966 -96.826607,47.078865 + -96.818794,47.092636 -96.838806,47.151917 -96.826134,47.170094 + -96.836708,47.240486 -96.849266,47.25687 -96.837357,47.293911 + -96.84639,47.314629 -96.838104,47.34227 -96.850273,47.360981 -96.83947,47.384144 + -96.849648,47.408962 -96.86689,47.413113 -96.855469,47.436779 + -96.866325,47.461563 -96.851257,47.500645 -96.860329,47.521381 + -96.848831,47.544594 -96.858307,47.563004 -96.85186,47.601177 + -96.872978,47.61528 -96.889069,47.67395 -96.923302,47.714119 + -96.931656,47.763531 -96.957474,47.794464 -96.983536,47.809685 + -96.976875,47.828053 -96.999985,47.87022 -97.02021,47.875591 + -97.014977,47.917912 -97.047699,47.954945 -97.066719,48.048183 + -97.092369,48.070362 -97.098679,48.10099 -97.121521,48.116386 + -97.120567,48.142792 -97.136162,48.148415 -97.115715,48.159241 + -97.137093,48.167786 -97.135941,48.175243 -97.136925,48.19508 + -97.130478,48.203758 -97.11055,48.207623 -97.139404,48.221771 + -97.108887,48.228065 -97.127205,48.23354 -97.123436,48.25919 -97.136307,48.2645 + -97.111366,48.277893 -97.112335,48.286163 -97.130165,48.293056 + -97.113373,48.294899 -97.114403,48.303635 -97.132286,48.310986 + -97.112244,48.319942 -97.136787,48.326008 -97.130775,48.361507 + -97.150047,48.363232 -97.133438,48.372471 -97.134857,48.384426 + -97.15847,48.388222 -97.128777,48.407902 -97.149475,48.410007 + -97.151299,48.419628 -97.122253,48.416126 -97.119286,48.437119 + -97.143265,48.438126 -97.134247,48.51733 -97.14798,48.517967 + -97.139038,48.534664 -97.15519,48.538414 -97.160088,48.545094 + -97.146271,48.549553 -97.167595,48.562279 -97.151779,48.572872 + -97.157845,48.583656 -97.140465,48.586922 -97.144371,48.61404 + -97.122612,48.620785 -97.127098,48.62981 -97.107285,48.629963 + -97.096825,48.674545 -97.116394,48.695259 -97.109756,48.708599 + -97.13446,48.726254 -97.132156,48.747234 -97.147552,48.755669 + -97.138901,48.763557 -97.147171,48.781185 -97.173599,48.801529 + -97.164368,48.810383 -97.180077,48.815552 -97.17086,48.835995 + -97.175385,48.873772 -97.216026,48.931843 -97.229095,49 -96.406616,49 + -95.276421,49 -95.157516,49.000004 -95.151627,49.371735 -94.83181,49.330811 + -94.681038,48.877178 -94.694221,48.777637 -94.570107,48.713703 + -94.430435,48.710815 -94.292145,48.707745 -94.230637,48.652023 + -93.843735,48.624783 -93.812515,48.525455 -93.780937,48.511639 + -93.513985,48.534328 -93.465187,48.54958 -93.457619,48.59277 -93.304092,48.63723 + -93.091301,48.626663 -92.946785,48.628441 -92.728851,48.540306 + -92.64167,48.540443 -92.626228,48.502918 -92.698669,48.494816 + -92.70649,48.460464 -92.497375,48.440166 -92.456192,48.402264 + -92.473167,48.357594 -92.369965,48.220875 -92.276772,48.244438 + -92.300125,48.298409 -92.275986,48.352417 -92.125824,48.366856 + -92.035049,48.35561 -91.979401,48.2505 -91.788689,48.206249 -91.711815,48.19688 + -91.703606,48.114941 -91.568657,48.104565 -91.571442,48.043678 + -91.239334,48.081406 -91.027039,48.19545 -90.864388,48.254311 + -90.743256,48.088554 -90.567352,48.121811 -90.556732,48.092861 + -90.14518,48.112885 -90.026611,48.086193 -89.986931,48.02367 + -89.900299,47.992619 -89.749222,48.0266 -89.530586,48.00177 -89.625557,47.992676 + -89.636284,47.959503 -89.99958,47.824673 -90.509514,47.710045 + -91.021317,47.461151 -91.468483,47.125008 -91.800789,46.927151 + -92.088303,46.791958 -92.214432,46.668262 -92.302956,46.666634 + -92.287079,46.658844 -92.28849,46.416042 -92.28875,46.156658 + -92.289177,46.073288 -92.327179,46.056934 -92.346031,46.022652 + -92.364769,46.016304 -92.424805,46.025558 -92.462151,45.981251 + -92.523781,45.982635 -92.552475,45.951321 -92.666008,45.915752 + -92.706039,45.891006 -92.733894,45.845028 -92.748558,45.837349 + -92.7789,45.763386 -92.833427,45.730934 -92.85981,45.710606 -92.885185,45.644997 + -92.876617,45.578876 -92.834824,45.563442 -92.761963,45.564304 + -92.727943,45.547283 -92.685211,45.470093 -92.65461,45.455261 + -92.644768,45.439491 -92.648544,45.395504 -92.684662,45.363113 + -92.707176,45.318237 -92.746384,45.297638 -92.755211,45.21241 + -92.762375,45.186646 -92.744728,45.156456 -92.745216,45.113037 + -92.796555,45.065643 -92.762787,45.022152 -92.766922,45.001038 + -92.749565,44.935688 -92.753723,44.915035 -92.771667,44.899529 + -92.764061,44.862267 -92.760826,44.835403 -92.805382,44.746193 + -92.736946,44.713627 -92.630173,44.642685 -92.60878,44.610325 + -92.509026,44.575191 -92.340691,44.552868 -92.320297,44.540524 + -92.296509,44.492214 -92.248924,44.456249 -92.205963,44.438427 + -92.091164,44.415623 -91.972221,44.364521 -91.938705,44.339146 + -91.922592,44.317554 -91.922188,44.288376 -91.888535,44.25753 + -91.848587,44.191223 -91.753067,44.137264 -91.652084,44.066933 + -91.601639,44.040859 -91.569016,44.034992 -91.528275,44.034252 + -91.425758,43.985657 -91.373215,43.947227 -91.291809,43.847225 + -91.250969,43.788109 -91.258781,43.722427 -91.258255,43.677353 + -91.232857,43.598919 -91.240425,43.54874 -91.223434,43.500835 + -91.610954,43.500656 -91.730217,43.499603 + + + + + + + + Minnesota + 27 + W N Cen + MN + 206207.099 + 12845.411 + 4375099.0 + 1130683.0 + 1647853.0 + 2145183.0 + 2229916.0 + 1605702.0 + 1593019.0 + 246546.0 + 77722.0 + 2192417.0 + 118919.0 + 606584.0 + 303141.0 + 0.49 + 0.51 + 1043304.0 + + + + + + + + + + + + -121.440407,41.994457 -122.283577,42.0009 -123.22094,42.002346 + -123.512032,41.997993 -123.817963,41.993114 -124.205246,41.997814 + -124.351036,42.098843 -124.413841,42.246059 -124.4366,42.429775 + -124.390549,42.553196 -124.399864,42.622868 -124.558395,42.832626 + -124.484123,42.955624 -124.385544,43.261757 -124.404846,43.300365 + -124.272766,43.45927 -124.224777,43.605167 -124.157097,43.857277 + -124.117088,44.269672 -124.053177,44.6623 -124.074341,44.814903 + -124.006348,45.036274 -123.955376,45.29314 -123.979317,45.48526 + -123.935432,45.508141 -123.890869,45.474224 -123.858269,45.499256 + -123.952171,45.568703 -123.93483,45.703007 -123.97538,45.775654 + -123.955025,45.871212 -123.995255,45.942093 -123.919937,46.012493 + -123.976082,46.202881 -123.792847,46.111618 -123.775833,46.1446 + -123.819725,46.193821 -123.760162,46.21011 -123.715912,46.170063 + -123.668999,46.174667 -123.515785,46.236259 -123.36232,46.144321 + -123.303482,46.144905 -123.247566,46.144188 -123.211205,46.170174 + -123.174965,46.183754 -123.117325,46.179478 -123.04937,46.155903 + -122.972946,46.110649 -122.898537,46.079494 -122.874199,46.027348 + -122.806526,45.944054 -122.805008,45.904236 -122.78286,45.86805 + -122.783302,45.850613 -122.786797,45.800507 -122.763077,45.760731 + -122.771339,45.727848 -122.759331,45.649559 -122.695114,45.631207 + -122.650002,45.606991 -122.564224,45.594978 -122.435951,45.564938 + -122.355255,45.56633 -122.301949,45.543251 -122.243721,45.548271 + -122.080841,45.590664 -121.998817,45.617985 -121.971466,45.635937 + -121.925629,45.642189 -121.887093,45.677017 -121.809853,45.700844 + -121.757507,45.689877 -121.705231,45.688953 -121.52787,45.719727 + -121.441368,45.695126 -121.420845,45.690762 -121.366631,45.699844 + -121.318794,45.6968 -121.275208,45.678497 -121.213089,45.665802 + -121.202126,45.657444 -121.190872,45.6134 -121.173134,45.600674 + -121.124023,45.607216 -121.07235,45.646767 -121.032303,45.653 + -120.9673,45.645309 -120.947395,45.650471 -120.906761,45.635632 + -120.860245,45.66534 -120.695824,45.710663 -120.657234,45.732765 + -120.622589,45.743763 -120.568916,45.74107 -120.497993,45.695782 + -120.442223,45.68943 -120.282478,45.716732 -120.206291,45.719933 + -120.154755,45.76141 -120.067497,45.78035 -119.993172,45.811287 + -119.868591,45.831844 -119.832413,45.841755 -119.677307,45.852684 + -119.620979,45.899555 -119.588158,45.91346 -119.511086,45.899345 + -119.437729,45.914413 -119.378311,45.917755 -119.301636,45.932808 + -119.17762,45.922497 -119.13913,45.925854 -119.031105,45.966419 + -118.981018,45.999203 -117.991478,46.001778 -117.981628,46.000019 + -117.601807,46.000401 -117.480652,45.999966 -116.918152,45.9953 + -116.897217,45.98064 -116.855492,45.903721 -116.790283,45.845989 + -116.772728,45.819885 -116.702202,45.81929 -116.653419,45.78075 + -116.559654,45.747543 -116.527298,45.710846 -116.513939,45.664608 + -116.469444,45.606373 -116.477577,45.566174 -116.553528,45.493763 + -116.564796,45.45998 -116.671288,45.335529 -116.687836,45.26247 + -116.735603,45.137428 -116.760284,45.106422 -116.777107,45.099602 + -116.786224,45.075874 -116.80632,45.049877 -116.853523,45.017067 + -116.847107,45.000164 -116.854897,44.980087 -116.847168,44.971863 + -116.830406,44.972755 -116.846565,44.954971 -116.834404,44.920265 + -116.866081,44.868729 -116.89637,44.848675 -116.908623,44.82906 + -116.950493,44.776154 -117.038567,44.749233 -117.065506,44.697674 + -117.078346,44.689453 -117.129494,44.572639 -117.142929,44.559402 + -117.14415,44.534771 -117.186378,44.511921 -117.20295,44.485901 + -117.223396,44.473103 -117.216209,44.427971 -117.235909,44.390099 + -117.200592,44.339554 -117.216446,44.300781 -117.212563,44.284836 + -117.169716,44.253448 -117.142273,44.250748 -117.111687,44.26992 + -117.099556,44.267193 -117.080383,44.243961 -117.051025,44.23167 + -117.02935,44.249451 -116.991707,44.247177 -116.975128,44.225296 + -116.980873,44.197956 -116.912056,44.177418 -116.90126,44.146427 + -116.945892,44.09314 -116.962448,44.090412 -116.975822,44.074009 + -116.932602,44.014317 -116.966965,43.96331 -116.958725,43.928692 + -116.97715,43.904556 -116.977158,43.873585 -116.984779,43.859467 + -117.015228,43.853088 -117.009514,43.839886 -117.026634,43.831684 + -117.036125,43.800259 -117.022804,43.753819 -117.025307,43.67915 + -117.017906,41.994904 -118.184326,41.996742 -119.309906,41.989243 + -119.350655,41.98896 -119.992401,41.989315 -120.870827,41.987789 + -121.440407,41.994457 + + + + + + + + Oregon + 41 + Pacific + OR + 248646.672 + 6172.331 + 2842321.0 + 750844.0 + 1103313.0 + 1397073.0 + 1445248.0 + 1063797.0 + 949326.0 + 165256.0 + 43435.0 + 1319960.0 + 87183.0 + 380532.0 + 206287.0 + 0.492 + 0.508 + 452821.0 + + + + + + + + + + + + -72.280388,42.720383 -72.456238,42.725769 -72.462639,42.746758 + -72.47979,42.761505 -72.507736,42.76865 -72.513535,42.789177 + -72.539383,42.807652 -72.553894,42.860561 -72.525276,42.912533 + -72.520683,42.951591 -72.50473,42.965504 -72.473808,42.976063 + -72.457626,42.999523 -72.462219,43.046425 -72.443932,43.07896 + -72.438072,43.116192 -72.452866,43.155945 -72.436066,43.232178 + -72.402885,43.307308 -72.410698,43.32333 -72.398094,43.350933 + -72.412605,43.377052 -72.396713,43.410084 -72.38298,43.484558 + -72.395462,43.517483 -72.373962,43.572304 -72.333549,43.597294 + -72.304504,43.69846 -72.260521,43.735229 -72.219589,43.750622 + -72.206558,43.764565 -72.185303,43.80162 -72.170555,43.878849 + -72.122116,43.909149 -72.11367,43.939098 -72.092178,43.957924 + -72.113274,43.976448 -72.110374,43.989162 -72.08567,44.008858 + -72.077385,44.031975 -72.035194,44.083309 -72.032913,44.096035 + -72.04998,44.100388 -72.035385,44.120682 -72.045189,44.156372 + -72.059746,44.182114 -72.044853,44.234318 -72.060028,44.261433 + -72.035957,44.299374 -71.994896,44.327488 -71.939369,44.325726 + -71.928825,44.336052 -71.835281,44.344139 -71.821663,44.3503 + -71.798195,44.384113 -71.767036,44.39819 -71.677353,44.421284 + -71.656868,44.440079 -71.648178,44.469116 -71.637024,44.476673 + -71.614693,44.474449 -71.58709,44.49448 -71.575714,44.525749 + -71.591911,44.538818 -71.592758,44.551147 -71.537262,44.578876 + -71.554573,44.596535 -71.568497,44.637394 -71.589218,44.650547 + -71.608147,44.677811 -71.631599,44.741661 -71.583969,44.779148 + -71.575569,44.815971 -71.506836,44.899624 -71.517448,44.943649 + -71.541397,44.976517 -71.505844,45.013306 -71.503471,45.059845 + -71.430885,45.116947 -71.403,45.202759 -71.447037,45.236038 -71.386856,45.234886 + -71.297714,45.293449 -71.153572,45.237923 -71.08799,45.301422 + -71.029205,44.668484 -71.009079,44.282082 -70.984932,43.791088 + -70.974365,43.571751 -70.957016,43.564064 -70.950111,43.548874 + -70.96476,43.53191 -70.95977,43.516308 -70.971283,43.470131 -70.961975,43.438046 + -70.979591,43.396103 -70.970192,43.366299 -70.906296,43.301987 + -70.901581,43.280937 -70.813705,43.235138 -70.831047,43.159088 + -70.819168,43.121784 -70.885246,43.127621 -70.87513,43.10144 + -70.905914,43.083935 -70.886993,43.058796 -70.810928,43.089653 + -70.734642,43.058674 -70.814384,42.866974 -70.850243,42.863338 + -70.898613,42.886787 -70.921837,42.885059 -71.025925,42.851082 + -71.066063,42.80423 -71.121101,42.818192 -71.181557,42.807228 + -71.186844,42.73867 -71.240974,42.743465 -71.252907,42.725979 + -71.287689,42.698513 -71.901421,42.705292 -71.930695,42.707123 + -72.280388,42.720383 + + + + + + + + New Hampshire + 33 + N Eng + NH + 23230.674 + 875.265 + 1109252.0 + 292601.0 + 411186.0 + 543544.0 + 565708.0 + 415538.0 + 443317.0 + 69904.0 + 4067.0 + 574237.0 + 38108.0 + 148720.0 + 78699.0 + 0.49 + 0.51 + 193338.0 + + + + + + + + + + + + -91.119987,40.705402 -91.129158,40.682148 -91.162498,40.656311 + -91.214912,40.643818 -91.262062,40.639545 -91.37561,40.603439 + -91.411118,40.572971 -91.412872,40.547993 -91.382103,40.528496 + -91.374794,40.503654 -91.385399,40.44725 -91.372757,40.402988 + -91.385757,40.392361 -91.418816,40.386875 -91.448593,40.371902 + -91.476883,40.390968 -91.490158,40.390762 -91.500221,40.405117 + -91.527534,40.410126 -91.529449,40.435043 -91.538689,40.441246 + -91.533051,40.455399 -91.579224,40.463718 -91.585869,40.484478 + -91.616699,40.504833 -91.622375,40.532864 -91.691917,40.55164 + -91.689796,40.581165 -91.716812,40.593399 -91.741547,40.609749 + -91.946198,40.608234 -92.192993,40.60006 -92.361328,40.599548 + -92.64624,40.591438 -92.717621,40.589645 -93.100731,40.584335 + -93.370056,40.580482 -93.562691,40.580807 -93.786079,40.578445 + -94.01783,40.574024 -94.238159,40.570972 -94.484993,40.574215 + -94.639633,40.575756 -94.920364,40.577229 -95.217171,40.581898 + -95.382294,40.584335 -95.767204,40.589046 -95.757271,40.620903 + -95.767723,40.643116 -95.876335,40.730434 -95.851509,40.792599 + -95.846153,40.848331 -95.834114,40.8703 -95.836258,40.901108 + -95.837318,40.974258 -95.860611,41.002651 -95.859253,41.035004 + -95.878517,41.065872 -95.857986,41.109188 -95.876396,41.164204 + -95.859512,41.166866 -95.85891,41.180538 -95.91581,41.194065 + -95.921959,41.207855 -95.91069,41.225246 -95.929939,41.302059 + -95.910912,41.308472 -95.897301,41.286865 -95.888817,41.301392 + -95.942604,41.34008 -95.939766,41.39481 -95.934776,41.462387 + -95.952896,41.472393 -96.006607,41.48196 -96.013161,41.493 -95.996399,41.511524 + -95.993675,41.528111 -96.004303,41.536671 -96.049881,41.524342 + -96.085548,41.537529 -96.091644,41.563152 -96.080544,41.576008 + -96.111015,41.599014 -96.099014,41.65469 -96.119972,41.684105 + -96.12191,41.694923 -96.085266,41.704998 -96.09948,41.731575 -96.09903,41.752987 + -96.076126,41.791481 -96.13533,41.862633 -96.159676,41.904163 + -96.145576,41.924919 -96.147034,41.966267 -96.184921,41.980698 + -96.202545,41.996628 -96.235794,42.00127 -96.238426,42.02845 + -96.265182,42.048908 -96.284821,42.123463 -96.35186,42.168194 + -96.363205,42.21405 -96.337402,42.22953 -96.332352,42.260315 + -96.342575,42.282089 -96.368393,42.298031 -96.389473,42.328796 + -96.423866,42.349285 -96.411453,42.380924 -96.41732,42.414783 + -96.397583,42.441799 -96.395767,42.467407 -96.439087,42.489246 + -96.479935,42.517136 -96.489029,42.564034 -96.500633,42.573891 + -96.48819,42.580486 -96.512535,42.629761 -96.540855,42.662411 + -96.562729,42.668518 -96.626228,42.708359 -96.640396,42.748608 + -96.632668,42.77684 -96.600563,42.799564 -96.587334,42.835388 + -96.572815,42.834354 -96.555901,42.846668 -96.537201,42.896915 + -96.543953,42.913876 -96.514626,42.952393 -96.516838,42.986469 + -96.498711,43.012062 -96.519699,43.051521 -96.479263,43.061897 + -96.461784,43.075596 -96.460495,43.087887 -96.451195,43.126324 + -96.472801,43.209099 -96.486931,43.217926 -96.558289,43.225506 + -96.566673,43.239651 -96.55925,43.253281 -96.570404,43.26363 + -96.578812,43.290092 -96.540245,43.307678 -96.522575,43.356987 + -96.524734,43.384247 -96.557388,43.400749 -96.588791,43.435562 + -96.583473,43.481945 -96.597992,43.499874 -96.460136,43.499744 + -96.060738,43.498566 -95.866615,43.498978 -95.464493,43.499577 + -95.396278,43.50037 -94.920197,43.499413 -94.859573,43.500072 + -94.454987,43.498146 -94.246544,43.498993 -93.973717,43.500343 + -93.653481,43.500809 -93.500618,43.500534 -93.054184,43.501495 + -93.027016,43.501316 -92.557831,43.500294 -92.452995,43.499496 + -92.07737,43.499187 -91.730217,43.499603 -91.610954,43.500656 + -91.223434,43.500835 -91.235771,43.46471 -91.210785,43.424076 + -91.198112,43.370537 -91.176918,43.35397 -91.078369,43.31332 + -91.066299,43.280704 -91.068924,43.257919 -91.161224,43.147594 + -91.168442,43.082905 -91.159622,43.0812 -91.152084,43.001331 + -91.138992,42.925907 -91.0933,42.871452 -91.081902,42.783375 -91.06604,42.744923 + -90.999054,42.707066 -90.919281,42.680683 -90.892418,42.678246 + -90.745483,42.657005 -90.694664,42.637932 -90.664253,42.571392 + -90.639091,42.555714 -90.62558,42.528561 -90.638329,42.509361 + -90.651772,42.494698 -90.648346,42.475643 -90.605827,42.46056 + -90.563583,42.421837 -90.491043,42.388783 -90.441597,42.360073 + -90.427681,42.340633 -90.417984,42.263924 -90.407173,42.242645 + -90.367729,42.210209 -90.323601,42.197319 -90.230934,42.159721 + -90.191574,42.122688 -90.176086,42.120502 -90.166649,42.103745 + -90.168098,42.061043 -90.150536,42.033428 -90.14267,41.983963 + -90.154518,41.930775 -90.195839,41.806137 -90.25531,41.781738 + -90.304886,41.756466 -90.326027,41.722736 -90.341133,41.64909 + -90.339348,41.602798 -90.348366,41.586849 -90.423004,41.567272 + -90.434967,41.543579 -90.454994,41.527546 -90.54084,41.52597 -90.6007,41.509586 + -90.658791,41.462318 -90.708214,41.450062 -90.7799,41.449821 + -90.844139,41.444622 -90.949654,41.421234 -91.000694,41.431084 + -91.027489,41.423508 -91.055786,41.401379 -91.07328,41.334896 + -91.102348,41.267818 -91.101524,41.231522 -91.05632,41.176258 + -91.018257,41.165825 -90.990341,41.144371 -90.957787,41.104359 + -90.954651,41.070362 -90.960709,40.950504 -90.983276,40.923927 + -91.04921,40.879585 -91.088905,40.833729 -91.092751,40.761547 + -91.119987,40.705402 + + + + + + + + Iowa + 19 + W N Cen + IA + 144715.989 + 1037.659 + 2776755.0 + 740819.0 + 1064325.0 + 1344802.0 + 1431953.0 + 1013757.0 + 970933.0 + 156930.0 + 16373.0 + 1340242.0 + 63641.0 + 429860.0 + 217271.0 + 0.484 + 0.516 + 579075.0 + + + + + + + + + + + + -71.319832,41.772095 -71.340302,41.784325 -71.345985,41.813061 + -71.335045,41.857803 -71.342995,41.875683 -71.333588,41.895931 + -71.384453,41.88834 -71.382904,41.979164 -71.379143,42.013615 + -71.497925,42.009155 -71.798317,42.004177 -71.802826,42.017879 + -72.095451,42.025703 -72.136826,42.026306 -72.508041,42.03067 + -72.571693,42.030029 -72.582375,42.021511 -72.608292,42.022705 + -72.609993,42.030441 -72.756355,42.033752 -72.768036,42.002071 + -72.818138,41.997089 -72.81691,42.033413 -73.006546,42.035915 + -73.046082,42.036217 -73.484665,42.047337 -73.499275,42.07737 + -73.351273,42.504673 -73.258507,42.745979 -73.020149,42.740314 + -72.923454,42.737282 -72.456238,42.725769 -72.280388,42.720383 + -71.930695,42.707123 -71.901421,42.705292 -71.287689,42.698513 + -71.252907,42.725979 -71.240974,42.743465 -71.186844,42.73867 + -71.181557,42.807228 -71.121101,42.818192 -71.066063,42.80423 + -71.025925,42.851082 -70.921837,42.885059 -70.898613,42.886787 + -70.850243,42.863338 -70.814384,42.866974 -70.740204,42.663429 + -70.593712,42.64621 -70.633965,42.582546 -70.813637,42.546341 + -70.894112,42.447971 -70.961128,42.432297 -71.034668,42.28553 + -70.923714,42.234417 -70.893181,42.265667 -70.825172,42.260406 + -70.775108,42.248539 -70.686554,42.153065 -70.619225,41.968086 + -70.540863,41.930847 -70.538231,41.805656 -70.424042,41.743515 + -70.274368,41.721554 -70.34166,41.711704 -70.205795,41.712463 + -70.019753,41.78141 -70.000984,41.856243 -70.101028,42.00209 + -70.255676,42.060017 -70.13562,42.072392 -70.051003,42.026196 + -69.964706,41.903988 -69.91832,41.767544 -69.954964,41.671383 + -70.398148,41.612461 -70.433449,41.569645 -70.637665,41.539696 + -70.665413,41.556019 -70.620285,41.735531 -70.839951,41.626587 + -70.892647,41.633808 -71.001701,41.52002 -71.117645,41.492958 + -71.141724,41.65517 -71.199318,41.678398 -71.229485,41.707592 + -71.267136,41.749641 -71.319832,41.772095 + + + + + + + + + + + -70.604858,41.42955 -70.568222,41.464455 -70.55336,41.417274 + -70.576385,41.410172 -70.515686,41.398544 -70.486671,41.341442 + -70.739204,41.334042 -70.770241,41.29805 -70.844444,41.348488 + -70.783051,41.352406 -70.771454,41.324867 -70.752296,41.382057 + -70.668015,41.454826 -70.606369,41.474552 -70.604858,41.42955 + + + + + + + + + + + -70.032257,41.31181 -70.00705,41.324654 -70.027161,41.33709 -70.088173,41.296726 + -70.035027,41.349598 -70.049805,41.391842 -69.966522,41.294769 + -69.968987,41.251694 -70.103645,41.238155 -70.213806,41.270081 + -70.207634,41.293964 -70.098412,41.277508 -70.032257,41.31181 + + + + + + + + Massachusetts + 25 + N Eng + MA + 20300.349 + 2606.738 + 6016425.0 + 1514746.0 + 2247110.0 + 2888745.0 + 3127680.0 + 2268095.0 + 2148065.0 + 318026.0 + 247381.0 + 3027950.0 + 218000.0 + 718354.0 + 345333.0 + 0.48 + 0.52 + 808423.0 + + + + + + + + + + + + -101.406952,40.001007 -102.051071,39.998928 -102.047081,40.342651 + -102.047157,40.431084 -102.04557,40.697323 -102.046532,40.743134 + -102.047279,40.998077 -102.620789,41.000225 -102.651802,40.998135 + -103.382469,41.000332 -103.571823,40.999664 -104.051201,41.003227 + -104.053505,41.388107 -104.054993,41.564247 -104.053108,41.698246 + -104.053009,41.999851 -104.055725,42.614704 -104.05571,43.003094 + -103.500984,42.99865 -103.005409,42.999374 -102.787933,42.995323 + -102.086273,42.989891 -101.231308,42.986835 -100.197739,42.991089 + -99.532402,42.992332 -99.253593,42.99239 -98.497292,42.991783 + -98.457085,42.937164 -98.390846,42.920139 -98.309982,42.881798 + -98.167473,42.839573 -98.144516,42.835796 -98.122765,42.820225 + -98.121468,42.808361 -98.032791,42.769192 -97.994797,42.766811 + -97.963211,42.773689 -97.929131,42.792324 -97.889595,42.831272 + -97.888313,42.855808 -97.818298,42.866589 -97.796684,42.849598 + -97.771843,42.846165 -97.724907,42.858009 -97.68541,42.836838 + -97.634628,42.861286 -97.570312,42.847992 -97.505791,42.860138 + -97.482819,42.857159 -97.456924,42.850445 -97.388969,42.867435 + -97.311081,42.861774 -97.271126,42.850018 -97.242859,42.85183 + -97.224113,42.841206 -97.211502,42.812576 -97.161095,42.798622 + -97.130142,42.773926 -97.014816,42.759544 -96.979271,42.758316 + -96.969681,42.752068 -96.977547,42.72731 -96.970451,42.721149 + -96.907913,42.731701 -96.809822,42.704086 -96.81012,42.681343 + -96.799026,42.670021 -96.722343,42.668594 -96.698746,42.657719 + -96.694283,42.641167 -96.714958,42.62191 -96.713745,42.612305 + -96.63636,42.550735 -96.628983,42.522697 -96.605156,42.50724 + -96.584442,42.518291 -96.546906,42.520504 -96.494392,42.488464 + -96.439087,42.489246 -96.395767,42.467407 -96.397583,42.441799 + -96.41732,42.414783 -96.411453,42.380924 -96.423866,42.349285 + -96.389473,42.328796 -96.368393,42.298031 -96.342575,42.282089 + -96.332352,42.260315 -96.337402,42.22953 -96.363205,42.21405 -96.35186,42.168194 + -96.284821,42.123463 -96.265182,42.048908 -96.238426,42.02845 + -96.235794,42.00127 -96.202545,41.996628 -96.184921,41.980698 + -96.147034,41.966267 -96.145576,41.924919 -96.159676,41.904163 + -96.13533,41.862633 -96.076126,41.791481 -96.09903,41.752987 -96.09948,41.731575 + -96.085266,41.704998 -96.12191,41.694923 -96.119972,41.684105 + -96.099014,41.65469 -96.111015,41.599014 -96.080544,41.576008 + -96.091644,41.563152 -96.085548,41.537529 -96.049881,41.524342 + -96.004303,41.536671 -95.993675,41.528111 -95.996399,41.511524 -96.013161,41.493 + -96.006607,41.48196 -95.952896,41.472393 -95.934776,41.462387 + -95.939766,41.39481 -95.942604,41.34008 -95.888817,41.301392 + -95.897301,41.286865 -95.910912,41.308472 -95.929939,41.302059 + -95.91069,41.225246 -95.921959,41.207855 -95.91581,41.194065 -95.85891,41.180538 + -95.859512,41.166866 -95.876396,41.164204 -95.857986,41.109188 + -95.878517,41.065872 -95.859253,41.035004 -95.860611,41.002651 + -95.837318,40.974258 -95.836258,40.901108 -95.834114,40.8703 + -95.846153,40.848331 -95.851509,40.792599 -95.876335,40.730434 + -95.767723,40.643116 -95.757271,40.620903 -95.767204,40.589046 + -95.763138,40.549706 -95.736763,40.532372 -95.691795,40.524128 + -95.687141,40.561169 -95.675423,40.565834 -95.662674,40.558727 + -95.657791,40.530331 -95.6847,40.512203 -95.695091,40.485336 + -95.636551,40.396389 -95.633919,40.358799 -95.615936,40.346497 + -95.617668,40.331417 -95.645287,40.322346 -95.646561,40.309109 + -95.595268,40.309776 -95.546875,40.266216 -95.476562,40.226856 + -95.466377,40.213257 -95.460693,40.173996 -95.422218,40.131744 + -95.392555,40.115417 -95.384285,40.095364 -95.403526,40.080379 + -95.413506,40.048111 -95.390274,40.043751 -95.370987,40.028751 + -95.34481,40.024975 -95.308441,39.999409 -95.329445,39.992596 + -95.780434,39.993488 -96.000977,39.995159 -96.240311,39.994503 + -96.453743,39.994171 -96.801117,39.994473 -96.907982,39.996151 + -97.361595,39.997375 -97.816269,39.999718 -97.929268,39.99844 + -98.26384,39.998421 -98.504143,39.997116 -98.720284,39.998447 + -99.064384,39.998325 -99.177834,39.999565 -99.627472,40.002979 + -100.180496,40.000473 -100.190697,40.00058 -100.734619,39.999168 + -100.754425,40.000195 -101.321709,40.001823 -101.406952,40.001007 + + + + + + + + Nebraska + 31 + W N Cen + NE + 199113.203 + 1244.957 + 1578385.0 + 415427.0 + 602363.0 + 769439.0 + 808946.0 + 571600.0 + 590216.0 + 86820.0 + 8988.0 + 772813.0 + 29326.0 + 249094.0 + 108841.0 + 0.487 + 0.513 + 328831.0 + + + + + + + + + + + + -79.763466,42.267269 -79.444252,42.419304 -79.355118,42.493404 + -79.142471,42.574558 -79.043991,42.699188 -78.859444,42.792686 + -78.93679,42.974174 -78.883034,43.022301 -78.925835,43.06657 + -79.061348,43.090549 -79.039558,43.144684 -79.062469,43.268162 + -78.464905,43.371937 -77.992271,43.365513 -77.745277,43.33511 + -77.575989,43.241486 -77.377602,43.27565 -76.914841,43.27853 + -76.737152,43.342667 -76.718796,43.323376 -76.619957,43.414085 + -76.454994,43.500652 -76.223114,43.554085 -76.184921,43.633129 + -76.206017,43.682632 -76.240341,43.835064 -76.194069,43.91243 + -76.129417,43.932148 -76.134872,44.013172 -76.201889,44.065544 + -76.297226,44.041962 -76.363213,44.098301 -75.848351,44.390209 + -75.758972,44.517475 -75.329201,44.81057 -74.968819,44.948578 + -74.736481,44.992867 -74.021935,44.990803 -73.345146,45.0061 + -73.351181,44.981934 -73.336838,44.932564 -73.382729,44.847893 + -73.369476,44.819077 -73.327209,44.799252 -73.373581,44.724194 + -73.358574,44.680325 -73.37352,44.661232 -73.37056,44.634304 + -73.382248,44.619762 -73.371719,44.579121 -73.348236,44.553925 + -73.334877,44.544281 -73.293747,44.432804 -73.300423,44.405483 + -73.330215,44.36734 -73.305756,44.26009 -73.377762,44.201195 + -73.382492,44.172054 -73.408295,44.136173 -73.409187,44.106556 + -73.435646,44.063843 -73.436432,44.045624 -73.408684,44.018166 + -73.417839,43.98814 -73.405769,43.914749 -73.375557,43.885918 + -73.385178,43.804447 -73.359436,43.778366 -73.357109,43.756496 + -73.371429,43.714218 -73.423401,43.63205 -73.418762,43.582413 + -73.388557,43.569077 -73.364128,43.614933 -73.303978,43.624649 + -73.294548,43.619587 -73.282181,43.593121 -73.291847,43.574966 + -73.260429,43.559315 -73.238838,43.512764 -73.250519,43.31078 + -73.276451,42.940216 -73.280029,42.837025 -73.296616,42.803471 + -73.269722,42.747402 -73.258507,42.745979 -73.351273,42.504673 + -73.499275,42.07737 -73.484665,42.047337 -73.517578,41.665592 + -73.530823,41.522652 -73.544724,41.365204 -73.55069,41.293526 + -73.478554,41.210659 -73.725662,41.100258 -73.654152,41.01252 + -73.65358,40.998295 -73.780464,40.886589 -73.796768,40.832233 + -73.92028,40.802704 -74.006599,40.703899 -74.006676,40.737629 + -73.977478,40.797386 -73.922813,40.885941 -73.909386,40.927216 + -73.896568,40.960773 -73.897118,40.998432 -74.213448,41.123516 + -74.242767,41.137531 -74.372383,41.195755 -74.700455,41.350479 + -74.705666,41.374966 -74.740829,41.401543 -74.740433,41.421967 + -74.755219,41.430054 -74.79319,41.429825 -74.864456,41.447063 + -74.895668,41.44458 -74.898949,41.461803 -74.932953,41.484261 + -74.972176,41.483513 -75.015274,41.539467 -75.025475,41.565712 + -75.070251,41.604389 -75.072838,41.612991 -75.051712,41.637226 + -75.065788,41.714748 -75.057358,41.72662 -75.061707,41.770172 + -75.097542,41.778954 -75.097214,41.797119 -75.080231,41.81406 + -75.118164,41.836899 -75.125137,41.849094 -75.148666,41.855701 + -75.171669,41.867752 -75.254898,41.868786 -75.284073,41.947517 + -75.324448,41.961189 -75.346039,41.99276 -75.383194,41.998272 + -75.48011,41.996284 -76.105186,41.999424 -76.14537,42.00058 -76.564247,42.002937 + -76.928711,42.00246 -76.968887,42.002907 -77.613136,41.99876 + -77.745293,41.997265 -78.204529,41.998135 -78.305351,41.999355 + -78.918777,41.999786 -79.059723,42.001099 -79.612595,42.00053 + -79.761887,42.003052 -79.763466,42.267269 + + + + + + + + + + + -73.752632,40.594482 -73.928009,40.557545 -73.761818,40.618134 + -73.765358,40.636829 -73.846481,40.652496 -73.916153,40.631027 + -73.880234,40.590164 -74.004456,40.581154 -74.028137,40.639233 + -73.956024,40.739281 -73.899437,40.797016 -73.754341,40.78875 + -73.749901,40.844898 -73.598701,40.903046 -73.478523,40.879646 + -73.431084,40.922459 -73.214966,40.900944 -73.141426,40.951298 + -73.021721,40.968334 -72.632034,40.981186 -72.317505,41.149235 + -72.281624,41.142437 -72.354752,41.110104 -72.416817,41.02594 + -72.551437,40.96608 -72.605278,40.905201 -72.476578,40.920048 + -72.293556,41.023918 -72.203827,41.035275 -72.077492,41.000473 + -71.924187,41.08477 -71.870476,41.074406 -71.919189,41.030472 + -72.521629,40.814941 -73.422958,40.661224 -73.752632,40.594482 + + + + + + + + + + + -73.293495,40.626282 -73.29158,40.632977 -73.240875,40.632977 + -73.051468,40.675068 -72.877357,40.737247 -72.782654,40.764034 + -72.757782,40.76786 -72.764481,40.758293 -72.956764,40.69994 -73.03138,40.671242 + -73.249489,40.625324 -73.293495,40.626282 + + + + + + + + + + + -74.23735,40.505898 -74.23735,40.5378 -74.16671,40.624393 -74.07328,40.64946 + -74.059608,40.601604 -74.123413,40.544636 -74.194054,40.510456 + -74.23735,40.505898 + + + + + + + + New York + 36 + Mid Atl + NY + 120316.171 + 6262.71 + 1.8235907E7 + 4548344.0 + 6746555.0 + 8739138.0 + 9496769.0 + 6763332.0 + 4467866.0 + 881693.0 + 2113133.0 + 8498119.0 + 636280.0 + 2104413.0 + 1035767.0 + 0.479 + 0.521 + 2564485.0 + + + + + + + + + + + + -77.476082,39.719528 -78.096222,39.725368 -78.334816,39.724007 + -78.385048,39.72366 -78.818016,39.72303 -78.930428,39.722252 + -79.396851,39.719234 -79.481209,39.720196 -79.765358,39.721729 + -79.918488,39.721588 -80.429283,39.719761 -80.524467,39.721127 + -80.524857,39.958344 -80.525169,40.022751 -80.526253,40.162449 + -80.523773,40.402966 -80.524567,40.478718 -80.522209,40.637138 + -80.520515,40.854107 -80.521133,40.897209 -80.52314,41.12957 + -80.520203,41.489235 -80.524132,41.495049 -80.52285,41.850719 + -80.520798,41.986816 -79.763466,42.267269 -79.761887,42.003052 + -79.612595,42.00053 -79.059723,42.001099 -78.918777,41.999786 + -78.305351,41.999355 -78.204529,41.998135 -77.745293,41.997265 + -77.613136,41.99876 -76.968887,42.002907 -76.928711,42.00246 + -76.564247,42.002937 -76.14537,42.00058 -76.105186,41.999424 -75.48011,41.996284 + -75.383194,41.998272 -75.346039,41.99276 -75.324448,41.961189 + -75.284073,41.947517 -75.254898,41.868786 -75.171669,41.867752 + -75.148666,41.855701 -75.125137,41.849094 -75.118164,41.836899 + -75.080231,41.81406 -75.097214,41.797119 -75.097542,41.778954 + -75.061707,41.770172 -75.057358,41.72662 -75.065788,41.714748 + -75.051712,41.637226 -75.072838,41.612991 -75.070251,41.604389 + -75.025475,41.565712 -75.015274,41.539467 -74.972176,41.483513 + -74.932953,41.484261 -74.898949,41.461803 -74.895668,41.44458 + -74.864456,41.447063 -74.79319,41.429825 -74.755219,41.430054 + -74.740433,41.421967 -74.740829,41.401543 -74.705666,41.374966 + -74.700455,41.350479 -74.792053,41.311871 -74.794533,41.29512 + -74.825584,41.282612 -74.866798,41.226723 -74.863274,41.206676 + -74.915154,41.14101 -74.950378,41.111759 -74.984978,41.099285 + -74.989265,41.081665 -74.966675,41.082581 -75.001534,41.062389 + -75.035637,41.028107 -75.070358,41.01062 -75.116997,41.000153 + -75.139679,40.977432 -75.135902,40.962841 -75.080116,40.903252 + -75.074066,40.884529 -75.05687,40.871948 -75.055,40.855576 -75.099922,40.839188 + -75.089592,40.821293 -75.100922,40.791561 -75.130699,40.77261 + -75.170692,40.774712 -75.194023,40.747906 -75.188133,40.723759 + -75.205734,40.685963 -75.184441,40.669693 -75.209297,40.650639 + -75.198318,40.634106 -75.200768,40.614643 -75.193893,40.583668 + -75.197952,40.570583 -75.182663,40.556698 -75.124908,40.564697 + -75.08017,40.545254 -75.064064,40.520901 -75.070503,40.45615 + -75.057838,40.420067 -75.021652,40.401218 -75.000862,40.408516 + -74.973228,40.404343 -74.950577,40.345367 -74.932892,40.333668 + -74.921539,40.313927 -74.88105,40.299484 -74.843155,40.248344 + -74.73922,40.177616 -74.725876,40.149197 -74.746689,40.124249 + -74.829414,40.116051 -74.872314,40.077946 -74.956589,40.057903 + -74.983871,40.033962 -75.046059,40.007523 -75.068428,39.985279 + -75.084969,39.97562 -75.111343,39.976578 -75.140244,39.955807 + -75.147537,39.934628 -75.136185,39.896774 -75.14328,39.881489 + -75.185982,39.877293 -75.247368,39.850292 -75.254112,39.845425 + -75.346298,39.848404 -75.42083,39.79887 -75.470345,39.826435 + -75.583794,39.840008 -75.644341,39.838196 -75.695114,39.820347 + -75.745934,39.774818 -75.775269,39.724442 -75.791435,39.723755 + -76.139549,39.722122 -76.233444,39.721748 -76.570145,39.720161 + -76.790794,39.721153 -76.997108,39.720791 -77.221344,39.720581 + -77.464722,39.719978 -77.476082,39.719528 + + + + + + + + Pennsylvania + 42 + Mid Atl + PA + 116082.737 + 1274.584 + 1.1881643E7 + 3155989.0 + 4495966.0 + 5694265.0 + 6187378.0 + 4416669.0 + 3818385.0 + 689656.0 + 343724.0 + 5434532.0 + 344795.0 + 1426851.0 + 916786.0 + 0.479 + 0.521 + 2147891.0 + + + + + + + + + + + + -73.530823,41.522652 -73.517578,41.665592 -73.484665,42.047337 + -73.046082,42.036217 -73.006546,42.035915 -72.81691,42.033413 + -72.818138,41.997089 -72.768036,42.002071 -72.756355,42.033752 + -72.609993,42.030441 -72.608292,42.022705 -72.582375,42.021511 + -72.571693,42.030029 -72.508041,42.03067 -72.136826,42.026306 + -72.095451,42.025703 -71.802826,42.017879 -71.798317,42.004177 + -71.788734,41.721504 -71.793091,41.641659 -71.79068,41.601208 -71.80323,41.41573 + -71.846481,41.403755 -71.837357,41.341862 -71.848259,41.325249 + -71.867165,41.32267 -72.281891,41.281048 -72.326828,41.289543 + -72.378883,41.35825 -72.378624,41.278004 -72.52771,41.263603 + -72.907188,41.269966 -73.104866,41.160942 -73.65358,40.998295 + -73.654152,41.01252 -73.725662,41.100258 -73.478554,41.210659 + -73.55069,41.293526 -73.544724,41.365204 -73.530823,41.522652 + + + + + + + + Connecticut + 09 + N Eng + CT + 12549.571 + 748.495 + 3287116.0 + 864493.0 + 1230479.0 + 1592873.0 + 1694243.0 + 1248972.0 + 1300825.0 + 186944.0 + 65805.0 + 1692874.0 + 95819.0 + 402039.0 + 195403.0 + 0.485 + 0.515 + 446558.0 + + + + + + + + + + + + -71.79068,41.601208 -71.793091,41.641659 -71.788734,41.721504 + -71.798317,42.004177 -71.497925,42.009155 -71.379143,42.013615 + -71.382904,41.979164 -71.384453,41.88834 -71.333588,41.895931 + -71.342995,41.875683 -71.335045,41.857803 -71.345985,41.813061 + -71.340302,41.784325 -71.319832,41.772095 -71.267136,41.749641 + -71.229485,41.707592 -71.284508,41.679447 -71.367889,41.741249 + -71.394081,41.761055 -71.369514,41.70319 -71.419746,41.652111 + -71.427818,41.486588 -71.490387,41.391983 -71.722755,41.327164 + -71.867165,41.32267 -71.848259,41.325249 -71.837357,41.341862 + -71.846481,41.403755 -71.80323,41.41573 -71.79068,41.601208 + + + + + + + + + + + -71.199318,41.678398 -71.141724,41.65517 -71.117645,41.492958 + -71.200447,41.463215 -71.199318,41.678398 + + + + + + + + + + + -71.269676,41.621166 -71.219955,41.63554 -71.239182,41.474747 + -71.288513,41.483517 -71.350029,41.445755 -71.269676,41.621166 + + + + + + + + Rhode Island + 44 + N Eng + RI + 2706.52 + 538.056 + 1003464.0 + 258886.0 + 377977.0 + 481496.0 + 521968.0 + 377122.0 + 375766.0 + 58141.0 + 12187.0 + 487913.0 + 34690.0 + 131213.0 + 75612.0 + 0.48 + 0.52 + 128740.0 + + + + + + + + + + + + -75.489639,39.714745 -75.476334,39.719971 -75.475128,39.741718 + -75.460754,39.763248 -75.428009,39.77813 -75.412117,39.789658 -75.42083,39.79887 + -75.346298,39.848404 -75.254112,39.845425 -75.247368,39.850292 + -75.185982,39.877293 -75.14328,39.881489 -75.136185,39.896774 + -75.147537,39.934628 -75.140244,39.955807 -75.111343,39.976578 + -75.084969,39.97562 -75.068428,39.985279 -75.046059,40.007523 + -74.983871,40.033962 -74.956589,40.057903 -74.872314,40.077946 + -74.829414,40.116051 -74.746689,40.124249 -74.725876,40.149197 + -74.73922,40.177616 -74.843155,40.248344 -74.88105,40.299484 + -74.921539,40.313927 -74.932892,40.333668 -74.950577,40.345367 + -74.973228,40.404343 -75.000862,40.408516 -75.021652,40.401218 + -75.057838,40.420067 -75.070503,40.45615 -75.064064,40.520901 + -75.08017,40.545254 -75.124908,40.564697 -75.182663,40.556698 + -75.197952,40.570583 -75.193893,40.583668 -75.200768,40.614643 + -75.198318,40.634106 -75.209297,40.650639 -75.184441,40.669693 + -75.205734,40.685963 -75.188133,40.723759 -75.194023,40.747906 + -75.170692,40.774712 -75.130699,40.77261 -75.100922,40.791561 + -75.089592,40.821293 -75.099922,40.839188 -75.055,40.855576 -75.05687,40.871948 + -75.074066,40.884529 -75.080116,40.903252 -75.135902,40.962841 + -75.139679,40.977432 -75.116997,41.000153 -75.070358,41.01062 + -75.035637,41.028107 -75.001534,41.062389 -74.966675,41.082581 + -74.989265,41.081665 -74.984978,41.099285 -74.950378,41.111759 + -74.915154,41.14101 -74.863274,41.206676 -74.866798,41.226723 + -74.825584,41.282612 -74.794533,41.29512 -74.792053,41.311871 + -74.700455,41.350479 -74.372383,41.195755 -74.242767,41.137531 + -74.213448,41.123516 -73.897118,40.998432 -73.896568,40.960773 + -73.909386,40.927216 -73.922813,40.885941 -73.977478,40.797386 + -74.006676,40.737629 -74.006599,40.703899 -74.129471,40.646969 + -74.115944,40.705524 -74.14727,40.675377 -74.208664,40.591084 + -74.27932,40.514198 -74.269325,40.463642 -74.224915,40.443478 + -74.122299,40.451351 -73.978859,40.323505 -74.03965,40.101727 + -74.091843,40.115971 -74.08419,40.088066 -74.034714,40.091251 + -74.050209,40.05674 -74.122597,40.051445 -74.077751,40.042156 + -74.159645,39.878487 -74.171844,39.718155 -74.238091,39.623928 + -74.323753,39.571968 -74.329262,39.52351 -74.412796,39.542503 + -74.401527,39.50251 -74.460823,39.42664 -74.447906,39.380959 -74.65863,39.287136 + -74.622925,39.281517 -74.624985,39.250713 -74.802681,39.02626 + -74.879639,38.989731 -74.876686,38.95657 -74.968506,38.971626 + -74.890587,39.113747 -74.917038,39.170525 -75.014786,39.19825 + -75.120331,39.184578 -75.416031,39.374859 -75.553116,39.490402 + -75.517044,39.566456 -75.570587,39.617622 -75.489639,39.714745 + + + + + + + + New Jersey + 34 + Mid Atl + NJ + 21208.368 + 1128.595 + 7484736.0 + 1962314.0 + 2687478.0 + 3622220.0 + 3862516.0 + 2817265.0 + 2723918.0 + 451438.0 + 266063.0 + 3741297.0 + 218598.0 + 846794.0 + 460013.0 + 0.484 + 0.516 + 1052748.0 + + + + + + + + + + + + -86.341629,38.177223 -86.364372,38.193226 -86.388329,38.194744 + -86.387123,38.167957 -86.343147,38.155495 -86.335442,38.143963 + -86.344063,38.134205 -86.3937,38.12323 -86.407204,38.108154 -86.452545,38.129692 + -86.464867,38.129093 -86.474358,38.111645 -86.442543,38.088634 + -86.44249,38.075932 -86.458389,38.059097 -86.503136,38.051586 + -86.519112,38.046986 -86.527855,38.018631 -86.530869,37.987415 + -86.516922,37.942181 -86.522758,37.927811 -86.541107,37.921455 + -86.581802,37.925606 -86.598328,37.921013 -86.614799,37.857918 + -86.645584,37.845943 -86.665939,37.847324 -86.670685,37.860584 + -86.660324,37.902515 -86.668671,37.913139 -86.68914,37.911797 + -86.728889,37.894566 -86.753838,37.898304 -86.802826,37.978745 + -86.826317,37.991505 -86.863281,37.986866 -86.900085,37.953644 + -86.93158,37.937988 -86.989037,37.930565 -87.013161,37.924713 + -87.036484,37.907955 -87.071312,37.807087 -87.10643,37.784203 + -87.131882,37.789688 -87.158081,37.82692 -87.175781,37.838593 + -87.226761,37.849072 -87.272743,37.870773 -87.310555,37.893673 + -87.387543,37.934925 -87.452278,37.936478 -87.504791,37.915585 + -87.604309,37.971115 -87.627121,37.923412 -87.594704,37.890724 + -87.59362,37.864868 -87.607574,37.843777 -87.65168,37.828133 -87.6847,37.83633 + -87.679703,37.897007 -87.709389,37.899712 -87.72818,37.894543 + -87.753761,37.898087 -87.823624,37.878212 -87.857162,37.890903 + -87.89901,37.924553 -87.921867,37.919865 -87.934456,37.90416 + -87.936821,37.875179 -87.910202,37.83857 -87.920143,37.809685 + -87.939583,37.799507 -87.95871,37.77618 -88.011192,37.801308 + -88.035576,37.805683 -88.086029,37.817612 -88.089264,37.831249 + -88.042137,37.827522 -88.034241,37.843746 -88.075737,37.867809 + -88.101456,37.895306 -88.100082,37.90617 -88.044868,37.896004 + -88.026588,37.905758 -88.030441,37.917591 -88.084,37.92366 -88.078941,37.944 + -88.064621,37.929783 -88.041771,37.934498 -88.042511,37.956264 + -88.021706,37.975056 -88.029213,38.008236 -88.021698,38.033531 + -88.041473,38.038303 -88.043091,38.04512 -88.034729,38.054085 + -87.975296,38.073307 -87.964867,38.096748 -88.012329,38.092346 + -88.018547,38.103302 -87.973503,38.13176 -87.950569,38.136913 + -87.931992,38.157528 -87.932289,38.171131 -87.977928,38.200714 + -87.986008,38.234814 -87.980019,38.241085 -87.925919,38.304771 + -87.913651,38.302345 -87.914108,38.281048 -87.888466,38.300659 + -87.883446,38.315552 -87.874039,38.316788 -87.863007,38.285362 + -87.850082,38.286098 -87.834503,38.352524 -87.784019,38.378124 + -87.748428,38.417965 -87.738953,38.44548 -87.758659,38.457096 + -87.756096,38.466125 -87.692818,38.481533 -87.679909,38.504005 + -87.653534,38.500443 -87.65139,38.515369 -87.672943,38.547424 + -87.652855,38.573872 -87.640594,38.593178 -87.619827,38.599209 + -87.628647,38.622917 -87.625191,38.642811 -87.588478,38.672169 + -87.543892,38.685974 -87.508316,38.736633 -87.508003,38.769722 + -87.519028,38.776699 -87.507889,38.795559 -87.550507,38.857891 + -87.559059,38.869812 -87.5392,38.904861 -87.530182,38.931919 -87.53347,38.963703 + -87.547905,38.977077 -87.591858,38.994083 -87.581749,38.995743 + -87.58532,39.062435 -87.612007,39.084606 -87.630867,39.088974 + -87.631668,39.103943 -87.662262,39.113468 -87.659454,39.130653 + -87.670326,39.146679 -87.644257,39.168507 -87.607925,39.196068 + -87.594208,39.198128 -87.588593,39.208466 -87.584564,39.248753 + -87.606895,39.258163 -87.615799,39.281418 -87.610619,39.297661 + -87.625237,39.307404 -87.597664,39.338268 -87.540215,39.350525 + -87.538567,39.477448 -87.535576,39.609341 -87.535774,39.887302 + -87.535339,40.166195 -87.535675,40.483246 -87.53717,40.49461 + -87.532669,40.745411 -87.532021,41.00993 -87.531731,41.173756 + -87.532448,41.301304 -87.532646,41.469715 -87.529861,41.723591 + -87.463669,41.671589 -87.419266,41.676331 -87.441933,41.658077 + -87.394707,41.634155 -87.233818,41.626152 -86.942429,41.716465 + -86.834801,41.765465 -86.525162,41.765495 -86.234558,41.764816 + -86.068298,41.76458 -85.799232,41.763485 -85.65947,41.762577 + -85.297234,41.763531 -85.193169,41.762817 -84.82605,41.761826 + -84.788521,41.76091 -84.790421,41.697445 -84.791412,41.530441 + -84.791939,41.427849 -84.791016,41.283768 -84.791626,41.253082 + -84.790565,40.988293 -84.791061,40.93766 -84.793098,40.728813 + -84.793289,40.588692 -84.794594,40.353004 -84.795425,40.319454 + -84.803604,40.013943 -84.80619,39.917118 -84.808739,39.73325 + -84.811081,39.563999 -84.81115,39.513111 -84.812073,39.312279 + -84.812119,39.302975 -84.811531,39.102528 -84.827911,39.10363 + -84.886757,39.064987 -84.890045,39.050591 -84.876343,39.032837 + -84.844276,39.005772 -84.834496,38.982716 -84.846367,38.954571 + -84.875931,38.927544 -84.875305,38.90937 -84.859795,38.901981 + -84.803276,38.897129 -84.788719,38.884323 -84.787498,38.866581 + -84.824478,38.8344 -84.818832,38.793346 -84.975662,38.780579 + -85.025124,38.764229 -85.068504,38.750362 -85.119705,38.714077 + -85.16098,38.695114 -85.205208,38.695755 -85.271439,38.744316 + -85.335052,38.736946 -85.418228,38.738358 -85.446732,38.724781 + -85.45372,38.694614 -85.424446,38.584778 -85.417503,38.561413 + -85.432411,38.536953 -85.466423,38.518112 -85.50724,38.471355 + -85.612679,38.446606 -85.643631,38.383621 -85.654266,38.337685 + -85.681427,38.300884 -85.746964,38.270245 -85.786247,38.282322 + -85.806587,38.28611 -85.839943,38.276222 -85.852371,38.238491 + -85.912109,38.179932 -85.914787,38.064804 -85.930908,38.033978 + -85.958618,38.011768 -86.006699,38.001694 -86.031654,37.992878 + -86.05275,37.966713 -86.105019,38.011265 -86.190651,38.017689 + -86.252182,38.040653 -86.277725,38.058105 -86.291466,38.078423 + -86.297699,38.150238 -86.341629,38.177223 + + + + + + + + Indiana + 18 + E N Cen + IN + 92903.666 + 882.327 + 5544159.0 + 1480351.0 + 2065355.0 + 2688281.0 + 2855878.0 + 2023242.0 + 2040232.0 + 332386.0 + 34117.0 + 2628695.0 + 160143.0 + 746029.0 + 518252.0 + 0.485 + 0.515 + 891110.0 + + + + + + + + + + + + -119.151466,38.411884 -119.317833,38.527195 -119.574684,38.703003 + -119.888329,38.922344 -119.99424,38.994198 -119.994133,39.063583 + -119.993523,39.106224 -119.994507,39.158806 -119.994278,39.311638 + -119.99498,39.443592 -119.995132,39.720703 -119.995277,41.17767 + -119.992401,41.989315 -119.350655,41.98896 -119.309906,41.989243 + -118.184326,41.996742 -117.017906,41.994904 -116.991356,41.994904 + -115.946617,41.994698 -115.023979,41.996597 -114.268616,41.99601 + -114.038223,41.995476 -114.037308,40.997761 -114.03727,40.111111 + -114.039009,39.90884 -114.039276,39.538742 -114.043449,38.679043 + -114.044273,38.57114 -114.046463,38.137691 -114.046448,37.598507 + -114.043137,36.996563 -114.042915,36.841873 -114.036598,36.216038 + -114.044312,36.193993 -114.106979,36.121105 -114.128227,36.041744 + -114.205971,36.017269 -114.232674,36.018345 -114.306786,36.062248 + -114.303055,36.087124 -114.315292,36.111454 -114.34343,36.137497 + -114.379997,36.151009 -114.443138,36.121071 -114.465805,36.124729 + -114.529762,36.155109 -114.598122,36.138355 -114.620796,36.141987 + -114.711945,36.105202 -114.727333,36.085983 -114.728149,36.058773 + -114.716858,36.036777 -114.735397,35.987667 -114.698463,35.911629 + -114.660789,35.880489 -114.661652,35.870975 -114.689056,35.847458 + -114.681931,35.764717 -114.688011,35.732609 -114.664284,35.693111 + -114.667679,35.65641 -114.653259,35.646595 -114.639061,35.611359 + -114.652328,35.584843 -114.648987,35.546646 -114.67141,35.515762 + -114.644592,35.450768 -114.588783,35.358383 -114.58709,35.304771 + -114.558784,35.220184 -114.560242,35.174347 -114.571457,35.140068 + -114.581818,35.132561 -114.625641,35.133907 -114.635109,35.118656 + -114.594833,35.076057 -114.63298,35.041862 -114.62027,34.998913 + -115.625359,35.795723 -115.884918,36.001259 -117.159523,36.959656 + -117.837761,37.457367 -118.416466,37.886745 -119.151466,38.411884 + + + + + + + + Nevada + 32 + Mtn + NV + 284397.191 + 1971.049 + 1201833.0 + 307400.0 + 466297.0 + 611880.0 + 589953.0 + 475643.0 + 443571.0 + 93635.0 + 16096.0 + 607437.0 + 40083.0 + 222792.0 + 67743.0 + 0.509 + 0.491 + 159997.0 + + + + + + + + + + + + -114.046463,38.137691 -114.044273,38.57114 -114.043449,38.679043 + -114.039276,39.538742 -114.039009,39.90884 -114.03727,40.111111 + -114.037308,40.997761 -114.038223,41.995476 -112.988754,42.001228 + -112.146324,41.99913 -112.099724,42.002377 -111.49382,42.00024 + -111.047951,41.996265 -111.050323,41.578648 -111.050911,41.25848 + -111.050285,40.996635 -110.062477,40.99794 -110.001457,40.997646 + -109.047638,40.998474 -109.045479,40.665329 -109.050591,40.210545 + -109.051888,39.65741 -109.052864,39.518196 -109.050751,39.360989 + -109.053284,38.494663 -109.055199,38.24493 -109.042801,38.152943 + -109.042542,37.887428 -109.044937,37.630829 -109.047821,36.996643 + -109.996399,36.992065 -110.451546,36.991749 -110.483398,37.003929 + -110.739372,37.002491 -111.355453,37.00172 -112.236511,36.995506 + -112.541763,36.998009 -112.899216,36.996243 -114.043137,36.996563 + -114.046448,37.598507 -114.046463,38.137691 + + + + + + + + Utah + 49 + Mtn + UT + 212815.546 + 7086.152 + 1722850.0 + 410862.0 + 537273.0 + 855759.0 + 867091.0 + 564185.0 + 541226.0 + 111197.0 + 16971.0 + 736059.0 + 41389.0 + 196289.0 + 102232.0 + 0.497 + 0.503 + 304592.0 + + + + + + + + + + + + -121.664154,38.169369 -121.781296,38.066856 -121.901695,38.07299 + -121.983475,38.139584 -122.231163,38.071159 -122.271919,38.1595 + -122.314674,38.206017 -122.337822,38.193665 -122.284271,38.159393 + -122.27169,38.097565 -122.397377,38.161419 -122.428116,38.113888 + -122.487846,38.113495 -122.527557,38.150753 -122.473457,38.085537 + -122.505363,38.01873 -122.440697,37.983032 -122.488937,37.931843 + -122.457176,37.834293 -122.514641,37.822178 -122.665298,37.906994 + -122.690628,37.894466 -122.821091,38.007748 -122.920074,38.030697 + -122.95549,37.990829 -123.009621,37.994537 -122.938164,38.153343 + -122.993538,38.29731 -123.047684,38.294224 -123.12043,38.433685 + -123.296822,38.547421 -123.522766,38.757748 -123.720772,38.924862 + -123.68232,39.041901 -123.812592,39.347912 -123.753525,39.551994 + -123.782402,39.687229 -123.836975,39.826523 -124.0065,39.998714 + -124.093414,40.100513 -124.344147,40.252571 -124.334946,40.327698 + -124.391472,40.435383 -124.108269,40.978363 -124.148521,41.128986 + -124.070419,41.313988 -124.05677,41.458321 -124.143021,41.727356 + -124.241905,41.77692 -124.206306,41.848492 -124.205246,41.997814 + -123.817963,41.993114 -123.512032,41.997993 -123.22094,42.002346 + -122.283577,42.0009 -121.440407,41.994457 -120.870827,41.987789 + -119.992401,41.989315 -119.995277,41.17767 -119.995132,39.720703 + -119.99498,39.443592 -119.994278,39.311638 -119.994507,39.158806 + -119.993523,39.106224 -119.994133,39.063583 -119.99424,38.994198 + -119.888329,38.922344 -119.574684,38.703003 -119.317833,38.527195 + -119.151466,38.411884 -118.416466,37.886745 -117.837761,37.457367 + -117.159523,36.959656 -115.884918,36.001259 -115.625359,35.795723 + -114.62027,34.998913 -114.631477,34.99765 -114.620209,34.943607 + -114.629677,34.919498 -114.626465,34.87553 -114.56942,34.831856 + -114.541245,34.759953 -114.524757,34.748905 -114.497009,34.744751 + -114.464844,34.709866 -114.421478,34.610886 -114.43351,34.598953 + -114.408951,34.583714 -114.376038,34.536552 -114.383072,34.477074 + -114.375717,34.459667 -114.331848,34.454861 -114.302078,34.435741 + -114.282608,34.412056 -114.257057,34.405476 -114.181297,34.365192 + -114.152634,34.336433 -114.133347,34.314533 -114.124451,34.272606 + -114.149132,34.266964 -114.234993,34.186207 -114.284584,34.171215 + -114.322014,34.141281 -114.409378,34.102638 -114.423241,34.078316 + -114.428192,34.029827 -114.517418,33.965046 -114.524841,33.952396 + -114.497398,33.925018 -114.520172,33.862907 -114.510933,33.841946 + -114.520332,33.826012 -114.503769,33.771694 -114.509499,33.743179 + -114.494888,33.708347 -114.535645,33.682713 -114.524475,33.665482 + -114.526382,33.622112 -114.539459,33.580482 -114.528633,33.560047 + -114.586273,33.509418 -114.597298,33.486099 -114.6203,33.468571 + -114.629784,33.439396 -114.644302,33.419086 -114.724144,33.41103 + -114.702812,33.352386 -114.734634,33.305676 -114.676903,33.267982 + -114.68692,33.239223 -114.67926,33.22456 -114.67733,33.167213 + -114.708672,33.122337 -114.710564,33.095345 -114.663162,33.038883 + -114.644371,33.044373 -114.633179,33.033527 -114.609138,33.026962 + -114.558304,33.036743 -114.519844,33.027668 -114.467606,32.977749 + -114.475662,32.935867 -114.460655,32.845379 -114.525436,32.809868 + -114.534294,32.788002 -114.529312,32.771366 -114.542404,32.771187 + -114.542221,32.760704 -114.560799,32.760708 -114.559967,32.74889 + -114.571426,32.748783 -114.571175,32.737392 -114.602737,32.73584 + -114.603157,32.726238 -114.693253,32.741379 -114.711906,32.734966 + -114.72126,32.72081 -116.106125,32.619408 -117.127235,32.535725 + -117.198944,32.718391 -117.119743,32.602818 -117.123665,32.678879 + -117.197906,32.738884 -117.247337,32.680042 -117.284454,32.851173 + -117.253998,32.888126 -117.327568,33.111443 -117.409271,33.234055 + -117.596451,33.394505 -118.10582,33.747547 -118.245712,33.773907 + -118.285988,33.703888 -118.404182,33.738434 -118.428047,33.775433 + -118.387268,33.812309 -118.411201,33.882954 -118.540939,34.037243 + -118.787193,34.01825 -118.938431,34.040073 -119.215393,34.146336 + -119.265823,34.238094 -119.482056,34.374866 -119.605331,34.416439 + -119.868462,34.4048 -120.010521,34.46167 -120.139183,34.471912 + -120.455208,34.442513 -120.508408,34.521389 -120.640289,34.572353 + -120.600624,34.704041 -120.630669,34.759926 -120.607155,34.855637 + -120.66494,34.903831 -120.643333,34.97266 -120.615761,35.074841 + -120.637405,35.140053 -120.860329,35.209278 -120.882584,35.25943 + -120.848984,35.364563 -120.874199,35.427792 -120.990929,35.456608 + -121.145531,35.629353 -121.269226,35.663567 -121.328041,35.801067 + -121.444496,35.879887 -121.688751,36.181171 -121.88121,36.30698 + -121.954216,36.582813 -121.910355,36.640469 -121.866318,36.607754 + -121.807503,36.648262 -121.76033,36.819035 -121.790649,36.850372 + -121.882469,36.962147 -122.060257,36.947556 -122.172363,37.000919 + -122.273552,37.106834 -122.413551,37.239182 -122.388168,37.35247 + -122.440376,37.479542 -122.504593,37.522964 -122.497124,37.700321 + -122.497131,37.783012 -122.399849,37.808697 -122.34539,37.725292 + -122.36525,37.702518 -122.358589,37.609852 -122.088234,37.452602 + -121.974266,37.460781 -122.091949,37.497375 -122.198654,37.735271 + -122.311333,37.778534 -122.306473,37.891838 -122.370415,37.90942 + -122.378601,37.973522 -122.294441,38.014874 -121.99955,38.057232 + -121.697891,38.023575 -121.656685,38.086182 -121.575821,38.094219 + -121.568481,38.063747 -121.54641,38.063553 -121.57177,38.11388 + -121.553085,38.137444 -121.658516,38.096546 -121.664154,38.169369 + + + + + + + + + + + -119.866859,34.075226 -119.666962,34.021339 -119.571632,34.055779 + -119.522141,34.034588 -119.538422,34.006493 -119.711578,33.965279 + -119.846313,33.96841 -119.8881,34.004665 -119.873024,34.031872 + -119.926727,34.059177 -119.866859,34.075226 + + + + + + + + + + + -120.16642,33.92416 -120.237579,34.010887 -120.045837,34.041103 + -119.962425,33.947758 -120.108215,33.89481 -120.16642,33.92416 + + + + + + + + + + + -118.593864,33.480793 -118.361488,33.410984 -118.293686,33.334419 + -118.303131,33.307465 -118.454475,33.324757 -118.480431,33.419525 + -118.555519,33.434456 -118.593864,33.480793 + + + + + + + + + + + -118.350052,32.819157 -118.419197,32.806076 -118.510765,32.89204 + -118.598602,33.020988 -118.570572,33.035938 -118.540672,32.98735 + -118.350052,32.819157 + + + + + + + + California + 06 + Pacific + CA + 403970.143 + 20023.368 + 2.9760021E7 + 7139394.0 + 1.0381206E7 + 1.4897627E7 + 1.4862394E7 + 1.1306576E7 + 9982242.0 + 2036025.0 + 685797.0 + 1.3996309E7 + 996502.0 + 3664771.0 + 1798201.0 + 0.501 + 0.499 + 3792553.0 + + + + + + + + + + + + -83.27285,38.60918 -83.290138,38.596561 -83.306625,38.596241 + -83.320419,38.606487 -83.330116,38.631912 -83.371513,38.654922 + -83.453705,38.6637 -83.50016,38.690063 -83.526642,38.696037 -83.618462,38.677898 + -83.633324,38.664898 -83.643272,38.635788 -83.655838,38.623806 + -83.678612,38.620853 -83.712906,38.635479 -83.770302,38.650745 + -83.790543,38.693771 -83.837608,38.711807 -83.857628,38.744846 + -83.912613,38.757889 -83.962234,38.777576 -84.053871,38.763664 + -84.088936,38.765434 -84.176819,38.788429 -84.228767,38.812622 + -84.235359,38.874489 -84.261589,38.917412 -84.290199,38.944473 + -84.313377,39.014011 -84.34584,39.03775 -84.391373,39.035683 -84.4198,39.047276 + -84.425743,39.084663 -84.444977,39.111767 -84.492111,39.107304 + -84.515358,39.094135 -84.593124,39.070206 -84.622704,39.074875 + -84.667542,39.089565 -84.742928,39.142006 -84.789978,39.106976 + -84.811531,39.102528 -84.812119,39.302975 -84.812073,39.312279 + -84.81115,39.513111 -84.811081,39.563999 -84.808739,39.73325 -84.80619,39.917118 + -84.803604,40.013943 -84.795425,40.319454 -84.794594,40.353004 + -84.793289,40.588692 -84.793098,40.728813 -84.791061,40.93766 + -84.790565,40.988293 -84.791626,41.253082 -84.791016,41.283768 + -84.791939,41.427849 -84.791412,41.530441 -84.790421,41.697445 + -84.384445,41.7071 -84.359261,41.707989 -83.868698,41.715942 + -83.764015,41.716991 -83.482758,41.725082 -83.153824,41.626041 + -83.003517,41.538143 -82.795921,41.537598 -82.784798,41.507366 + -83.07048,41.456059 -82.909019,41.429417 -82.717041,41.450474 + -82.548943,41.391289 -82.341499,41.431458 -82.015739,41.51527 + -81.962044,41.501877 -81.738647,41.491104 -81.478424,41.631668 + -81.362434,41.724239 -80.999954,41.850204 -80.520798,41.986816 + -80.52285,41.850719 -80.524132,41.495049 -80.520203,41.489235 -80.52314,41.12957 + -80.521133,40.897209 -80.520515,40.854107 -80.522209,40.637138 + -80.574623,40.61591 -80.611755,40.619999 -80.637543,40.613918 + -80.667931,40.582073 -80.668823,40.568214 -80.633644,40.539139 + -80.625458,40.504398 -80.602036,40.480473 -80.628052,40.398159 + -80.629448,40.388596 -80.609451,40.373207 -80.604721,40.306175 + -80.614891,40.276432 -80.650314,40.245609 -80.678757,40.19408 + -80.701088,40.16811 -80.702263,40.154018 -80.738434,40.035591 + -80.739082,39.983402 -80.763252,39.946941 -80.759079,39.921192 + -80.768318,39.913239 -80.796211,39.919765 -80.808029,39.915829 + -80.812325,39.904827 -80.791039,39.872272 -80.798714,39.856647 + -80.826103,39.839592 -80.81929,39.808926 -80.870911,39.759918 + -80.856636,39.736259 -80.832481,39.718758 -80.83297,39.703323 + -80.863594,39.680275 -80.872925,39.662334 -80.881287,39.624004 + -80.912766,39.607277 -80.932785,39.606865 -80.983818,39.58173 + -81.032738,39.544067 -81.037552,39.532589 -81.098412,39.496376 + -81.117256,39.467709 -81.180733,39.437725 -81.20047,39.415821 + -81.225113,39.408283 -81.237785,39.388397 -81.28418,39.386997 + -81.338997,39.353569 -81.376076,39.345615 -81.434135,39.405949 + -81.448112,39.410954 -81.465164,39.406784 -81.540802,39.352634 + -81.557541,39.332581 -81.572838,39.265842 -81.667671,39.27042 + -81.689674,39.260151 -81.698051,39.219944 -81.723221,39.213192 + -81.759056,39.175674 -81.74485,39.125797 -81.753708,39.094643 + -81.786507,39.077179 -81.81971,39.076939 -81.824417,39.066338 + -81.813606,39.044029 -81.775826,39.01675 -81.781876,38.968449 + -81.762444,38.930099 -81.783371,38.923481 -81.823921,38.948387 + -81.841057,38.937809 -81.866943,38.885628 -81.892838,38.873371 + -81.91539,38.884365 -81.931992,38.894661 -81.89875,38.932144 + -81.927971,38.984192 -81.937874,38.991096 -81.975327,38.992928 + -81.999817,39.015182 -82.043022,39.014061 -82.05864,38.988987 + -82.085152,38.977119 -82.101341,38.952015 -82.13945,38.899319 + -82.146233,38.838707 -82.197853,38.804539 -82.216881,38.778858 + -82.184105,38.71022 -82.18911,38.677811 -82.17379,38.632107 -82.18438,38.594948 + -82.213791,38.584751 -82.271027,38.594807 -82.2901,38.579998 + -82.314369,38.465145 -82.329308,38.441868 -82.39489,38.428387 + -82.415016,38.430309 -82.49511,38.40575 -82.547668,38.400429 -82.575539,38.40382 + -82.586723,38.412437 -82.613861,38.472588 -82.669876,38.50206 + -82.695694,38.539063 -82.742058,38.552986 -82.802475,38.557209 + -82.827103,38.571583 -82.853966,38.60038 -82.860138,38.652317 + -82.880119,38.683224 -82.873299,38.718929 -82.890419,38.742699 + -82.92141,38.746338 -82.972588,38.719566 -83.027046,38.714436 + -83.060982,38.68565 -83.111343,38.664757 -83.14325,38.619263 + -83.182037,38.609764 -83.24511,38.624096 -83.27285,38.60918 + + + + + + + + Ohio + 39 + E N Cen + OH + 105012.073 + 2001.617 + 9980887.0 + 2673875.0 + 3748665.0 + 4816445.0 + 5164442.0 + 3638837.0 + 3581182.0 + 477421.0 + 98938.0 + 4524383.0 + 324867.0 + 1206763.0 + 830481.0 + 0.483 + 0.517 + 1727359.0 + + + + + + + + + + + + -122.400749,48.225395 -122.461586,48.228542 -122.453156,48.128674 + -122.360077,48.06028 -122.513245,48.134155 -122.540802,48.21064 + -122.507858,48.253971 -122.403137,48.246773 -122.377052,48.289898 + -122.563087,48.414421 -122.665749,48.413071 -122.698128,48.494503 + -122.606895,48.518997 -122.52195,48.458576 -122.472557,48.462368 + -122.504021,48.559616 -122.428268,48.599567 -122.486519,48.638741 + -122.525276,48.711895 -122.515572,48.758091 -122.696114,48.803185 + -122.752953,48.910156 -122.821129,48.950893 -122.742653,48.955975 + -122.763832,48.999912 -120.855827,48.999973 -118.842453,49 -118.199234,49.000004 + -117.4375,48.999996 -117.030975,49 -117.028046,48.83815 -117.037834,48.046284 + -117.036438,47.971191 -117.040779,47.361542 -117.041382,47.258602 + -117.039963,47.119423 -117.040932,46.536716 -117.037567,46.428097 + -117.04348,46.388691 -117.063194,46.348816 -117.026985,46.335545 + -117.000656,46.302567 -116.971741,46.249428 -116.966507,46.197674 + -116.928444,46.165604 -116.960655,46.097397 -116.986229,46.078632 + -116.956741,46.065811 -116.918152,45.9953 -117.480652,45.999966 + -117.601807,46.000401 -117.981628,46.000019 -117.991478,46.001778 + -118.981018,45.999203 -119.031105,45.966419 -119.13913,45.925854 + -119.17762,45.922497 -119.301636,45.932808 -119.378311,45.917755 + -119.437729,45.914413 -119.511086,45.899345 -119.588158,45.91346 + -119.620979,45.899555 -119.677307,45.852684 -119.832413,45.841755 + -119.868591,45.831844 -119.993172,45.811287 -120.067497,45.78035 + -120.154755,45.76141 -120.206291,45.719933 -120.282478,45.716732 + -120.442223,45.68943 -120.497993,45.695782 -120.568916,45.74107 + -120.622589,45.743763 -120.657234,45.732765 -120.695824,45.710663 + -120.860245,45.66534 -120.906761,45.635632 -120.947395,45.650471 + -120.9673,45.645309 -121.032303,45.653 -121.07235,45.646767 + -121.124023,45.607216 -121.173134,45.600674 -121.190872,45.6134 + -121.202126,45.657444 -121.213089,45.665802 -121.275208,45.678497 + -121.318794,45.6968 -121.366631,45.699844 -121.420845,45.690762 + -121.441368,45.695126 -121.52787,45.719727 -121.705231,45.688953 + -121.757507,45.689877 -121.809853,45.700844 -121.887093,45.677017 + -121.925629,45.642189 -121.971466,45.635937 -121.998817,45.617985 + -122.080841,45.590664 -122.243721,45.548271 -122.301949,45.543251 + -122.355255,45.56633 -122.435951,45.564938 -122.564224,45.594978 + -122.650002,45.606991 -122.695114,45.631207 -122.759331,45.649559 + -122.771339,45.727848 -122.763077,45.760731 -122.786797,45.800507 + -122.783302,45.850613 -122.78286,45.86805 -122.805008,45.904236 + -122.806526,45.944054 -122.874199,46.027348 -122.898537,46.079494 + -122.972946,46.110649 -123.04937,46.155903 -123.117325,46.179478 + -123.174965,46.183754 -123.211205,46.170174 -123.247566,46.144188 + -123.303482,46.144905 -123.469528,46.275192 -123.618828,46.258835 + -123.724205,46.285595 -123.884514,46.240612 -123.992065,46.310452 + -124.077843,46.267437 -124.064232,46.639927 -124.021767,46.583721 + -124.011734,46.383858 -123.840187,46.404518 -123.939423,46.481293 + -123.892296,46.511257 -123.956436,46.617405 -123.925194,46.673241 + -123.839691,46.718468 -123.894264,46.745167 -124.041878,46.716038 + -124.089767,46.729206 -124.100784,46.789654 -124.137543,46.900173 + -124.104477,46.908337 -124.103455,46.874332 -124.027527,46.823952 + -124.045647,46.88744 -123.811378,46.964149 -123.994583,46.976574 + -124.033112,47.031223 -124.111076,47.042866 -124.160751,46.929802 + -124.191444,47.167175 -124.230133,47.275265 -124.31813,47.349434 + -124.347778,47.527107 -124.372299,47.638962 -124.482719,47.808456 + -124.605362,47.87394 -124.731422,48.150204 -124.703857,48.232212 + -124.71582,48.377773 -124.562202,48.357487 -123.989899,48.159355 + -123.395561,48.111217 -123.121933,48.148918 -122.920311,48.094364 + -122.923561,48.066982 -122.839828,48.13332 -122.767601,48.144176 + -122.801651,48.085506 -122.660294,47.917343 -122.652321,47.864616 + -122.744598,47.809174 -122.788528,47.802734 -122.808243,47.857262 + -122.857529,47.827515 -122.898094,47.672703 -122.981476,47.605659 + -123.112648,47.456459 -123.152794,47.348732 -123.009209,47.35321 + -122.831993,47.438648 -123.034943,47.356236 -123.11142,47.371754 + -123.02507,47.516121 -122.915703,47.614792 -122.751678,47.660873 + -122.721794,47.757084 -122.609901,47.850193 -122.611954,47.936375 + -122.530632,47.909645 -122.472343,47.755161 -122.620255,47.697151 + -122.585213,47.571373 -122.554016,47.583687 -122.541458,47.522915 + -122.50322,47.507397 -122.557205,47.398544 -122.542885,47.374107 + -122.587013,47.33411 -122.551918,47.283512 -122.579292,47.251568 + -122.610306,47.293579 -122.605675,47.270752 -122.698502,47.292267 + -122.62751,47.398735 -122.636192,47.398762 -122.740303,47.341633 + -122.768463,47.266338 -122.718559,47.223312 -122.759995,47.162678 + -122.82386,47.235008 -122.772087,47.337543 -122.800934,47.360924 + -122.87912,47.299416 -123.114174,47.208164 -123.079941,47.09024 + -123.03009,47.100956 -122.921898,47.048145 -122.788803,47.126041 + -122.726944,47.082623 -122.698837,47.098507 -122.590569,47.180241 + -122.529526,47.287636 -122.545349,47.316456 -122.422859,47.259651 + -122.391609,47.277901 -122.440369,47.301304 -122.419601,47.319023 + -122.324142,47.344501 -122.318504,47.390293 -122.391396,47.510422 + -122.380981,47.595589 -122.413574,47.66436 -122.39325,47.774357 + -122.301674,47.950397 -122.228874,47.969296 -122.215744,48.007622 + -122.367073,48.128323 -122.400749,48.225395 + + + + + + + + + + + -122.96669,48.443974 -123.093941,48.479603 -123.158424,48.522022 + -123.168602,48.562744 -123.139755,48.623825 -123.102425,48.608555 + -123.010803,48.557655 -123.007408,48.533897 -122.96669,48.527111 + -123.020981,48.513538 -123.017593,48.489784 -122.96669,48.443974 + + + + + + + + + + + -122.731903,48.276825 -122.66433,48.396954 -122.603104,48.404964 + -122.524475,48.32122 -122.527374,48.283688 -122.622231,48.296528 + -122.730751,48.225594 -122.60965,48.206501 -122.544937,48.077042 + -122.494949,48.094254 -122.378738,48.03233 -122.354149,47.964069 + -122.385712,47.904732 -122.441536,47.91824 -122.47036,47.987694 + -122.543701,47.967716 -122.607361,48.031616 -122.694275,48.181366 + -122.767494,48.218998 -122.731903,48.276825 + + + + + + + + Washington + 53 + Pacific + WA + 172447.205 + 12226.63 + 4866692.0 + 1264934.0 + 1872431.0 + 2413747.0 + 2452945.0 + 1830031.0 + 1700872.0 + 282240.0 + 104403.0 + 2293961.0 + 139216.0 + 637487.0 + 302635.0 + 0.496 + 0.504 + 736744.0 + + + \ No newline at end of file diff --git a/examples/data/getstyles.xml b/examples/data/getstyles.xml index c44eeea7..4c2749ae 100644 --- a/examples/data/getstyles.xml +++ b/examples/data/getstyles.xml @@ -1,5 +1,7 @@ - + usa:states @@ -7,11 +9,13 @@ Population in the United States 1 A sample filter that filters the United States into three - categories of population, drawn in different colors + categories of population, drawn in different colors + name - {"group":"Population","method":"graduated","args":["PERSONS",3,"NATURAL_BREAKS"]} + {"group":"Population","method":"graduated","args":["PERSONS",3,"NATURAL_BREAKS"]} + Population < 2M @@ -27,7 +31,8 @@ - {"group":"Population","method":"graduated","args":["PERSONS",3,"NATURAL_BREAKS"]} + {"group":"Population","method":"graduated","args":["PERSONS",3,"NATURAL_BREAKS"]} + Population 2M-4M @@ -48,7 +53,8 @@ - {"group":"Population","method":"graduated","args":["PERSONS",3,"NATURAL_BREAKS"]} + {"group":"Population","method":"graduated","args":["PERSONS",3,"NATURAL_BREAKS"]} + Population > 4M diff --git a/examples/histogram.js b/examples/histogram.js index f1305e1d..cf2236c2 100644 --- a/examples/histogram.js +++ b/examples/histogram.js @@ -1,43 +1,43 @@ var histogram, slider, grid; -Ext.onReady(function() { +Ext.onReady(function () { var sld = 'USA states populationpopulationPopulation in the United StatesA sample filter that filters the United States into threecategories of population, drawn in different colors< 2M PERSONS 2000000 #4DFF4D0.7 2M - 4MPERSONS20000004000000 #FF4D4D0.7 > 4M PERSONS 4000000 #4D4DFF0.7 Boundary0.2Times New RomanNormal140.50.5 ', - format = new OpenLayers.Format.SLD({multipleSymbolizers: true}), + format = new OpenLayers.Format.SLD({multipleSymbolizers:true}), style = format.read(sld).namedLayers["USA states population"].userStyles[0], store = new Ext.data.Store({ - reader: new gxp.data.GroupStyleReader(), - data: style + reader:new gxp.data.GroupStyleReader(), + data:style }); - // Only work with the classification rules - store.filterBy(function(rec) { - return rec.get("filter"); - }); - + // Only work with the classification rules + store.filterBy(function (rec) { + return rec.get("filter"); + }); + histogram = new gxp.Histogram({ - width: 280, - height: 60, - quantities: [7, 5, 4, 0, 3, 3, 3, 2, 3, 4, 1, 1, 2, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], - renderTo: "histogram" + width:280, + height:60, + quantities:[7, 5, 4, 0, 3, 3, 3, 2, 3, 4, 1, 1, 2, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], + renderTo:"histogram" }); - + slider = new gxp.slider.ClassBreakSlider({ - renderTo: Ext.getBody(), - width: 280, - store: store, - minValue: 453588, - maxValue: 29760021, - renderTo: "slider" + renderTo:Ext.getBody(), + width:280, + store:store, + minValue:453588, + maxValue:29760021, + renderTo:"slider" }); grid = new Ext.grid.EditorGridPanel({ - width: 280, - height: 115, - columns: [ - {dataIndex: "symbolizers", width: 26, xtype: "gx_symbolizercolumn"}, - {header: "Filter", dataIndex: "filter", editor: {xtype: "textfield"}} + width:280, + height:115, + columns:[ + {dataIndex:"symbolizers", width:26, xtype:"gx_symbolizercolumn"}, + {header:"Filter", dataIndex:"filter", editor:{xtype:"textfield"}} ], - autoExpandColumn: 1, - store: store, - sm: new Ext.grid.RowSelectionModel(), - renderTo: "grid" + autoExpandColumn:1, + store:store, + sm:new Ext.grid.RowSelectionModel(), + renderTo:"grid" }); }); diff --git a/src/script/locale/pt-br.js b/src/script/locale/pt-br.js new file mode 100644 index 00000000..9b2c0657 --- /dev/null +++ b/src/script/locale/pt-br.js @@ -0,0 +1,411 @@ +/** + * @requires GeoExt/Lang.js + */ + +GeoExt.Lang.add("pt-br", { + + "gxp.menu.LayerMenu.prototype":{ + layerText:"Camada" + }, + + "gxp.plugins.AddLayers.prototype":{ + addActionMenuText:"Adicionar camadas", + addActionTip:"Adicionar camadas", + addServerText:"Adicionar novo servidor", + addButtonText:"Adicionar camadas", + untitledText:"Sem título", + addLayerSourceErrorText:"Erro ao pegar o WMS capabilities ({msg}).\nPor favor, verifique a URL e tente novamente.", + availableLayersText:"Camadas Disponíveis", + expanderTemplateText:"

Resumo: {abstract}

", + panelTitleText:"Título", + layerSelectionText:"Ver dados disponíveis de:", + doneText:"Concluído", + uploadText:"Carregar camadas", + addFeedActionMenuText:"Adicionar feeds", + searchText:"Procurar camadas" + }, + + "gxp.plugins.BingSource.prototype":{ + title:"Bing Camadas", + roadTitle:"Bing Roads", + aerialTitle:"Bing Aerial", + labeledAerialTitle:"Bing Aerial com Labels" + }, + + "gxp.plugins.FeatureEditor.prototype":{ + splitButtonText:"Editar", + createFeatureActionText:"Criar", + editFeatureActionText:"Modificar", + createFeatureActionTip:"Criar nova feição", + editFeatureActionTip:"Editar feição existente", + commitTitle:"Salvar mensagem", + commitText:"Por favor entre com uma mensagem para o commit desta edição:" + }, + + "gxp.plugins.FeatureGrid.prototype":{ + displayFeatureText:"Mostrar no mapa", + firstPageTip:"Primeira página", + previousPageTip:"Página anterior", + zoomPageExtentTip:"Zoom na extensão da tela", + nextPageTip:"Próxima página", + lastPageTip:"Página anterior", + totalMsg:"Feições {1} para {2} de {0}" + }, + + "gxp.plugins.GoogleEarth.prototype":{ + menuText:"Visão 3D", + tooltip:"Mudar para visão 3D" + }, + + "gxp.plugins.GoogleSource.prototype":{ + title:"Google Camadas", + roadmapAbstract:"Mostrar mapas de rua", + satelliteAbstract:"Mostrar imagens de satélite", + hybridAbstract:"Mostrar imagens de satélite com nomes de ruas", + terrainAbstract:"Mostrar mapa de rua com terrenos" + }, + + "gxp.plugins.LayerProperties.prototype":{ + menuText:"Propriedades do Camada", + toolTip:"Propriedades do Camada" + }, + + "gxp.plugins.LayerTree.prototype":{ + shortTitle:"Camadas", + rootNodeText:"Camadas", + overlayNodeText:"Sobreposições", + baseNodeText:"Camadas de base" + }, + + "gxp.plugins.LayerManager.prototype":{ + baseNodeText:"Mapas de base" + }, + + "gxp.plugins.Legend.prototype":{ + menuText:"Mostrar Legenda", + tooltip:"Mostrar Legenda" + }, + + "gxp.plugins.LoadingIndicator.prototype":{ + loadingMapMessage:"Carregando mapa..." + }, + + "gxp.plugins.MapBoxSource.prototype":{ + title:"Camadas do MapBox", + blueMarbleTopoBathyJanTitle:"Blue Marble Topography & Bathymetry (January)", + blueMarbleTopoBathyJulTitle:"Blue Marble Topography & Bathymetry (July)", + blueMarbleTopoJanTitle:"Blue Marble Topography (January)", + blueMarbleTopoJulTitle:"Blue Marble Topography (July)", + controlRoomTitle:"Control Room", + geographyClassTitle:"Geography Class", + naturalEarthHypsoTitle:"Natural Earth Hypsometric", + naturalEarthHypsoBathyTitle:"Natural Earth Hypsometric & Bathymetry", + naturalEarth1Title:"Natural Earth I", + naturalEarth2Title:"Natural Earth II", + worldDarkTitle:"World Dark", + worldLightTitle:"World Light", + worldPrintTitle:"World Print" + }, + + "gxp.plugins.Measure.prototype":{ + buttonText:"Medir", + lengthMenuText:"Tamanho", + areaMenuText:"Área", + lengthTooltip:"Tamanho da medida", + areaTooltip:"Tamanho da Área", + measureTooltip:"Medida" + }, + + "gxp.plugins.Navigation.prototype":{ + menuText:"Navegar no mapa", + tooltip:"Navegar no mapa" + }, + + "gxp.plugins.NavigationHistory.prototype":{ + previousMenuText:"Voltar para o último zoom", + nextMenuText:"Ir para o próximo zoom", + previousTooltip:"Voltar para o último zoom", + nextTooltip:"Ir para o próximo zoom" + }, + + "gxp.plugins.OSMSource.prototype":{ + title:"OpenStreetMap Camadas", + mapnikAttribution:"© OpenStreetMap contributors", + osmarenderAttribution:"Data CC-By-SA by OpenStreetMap" + }, + + "gxp.plugins.Print.prototype":{ + buttonText:"Imprimir", + menuText:"Imprimir mapa", + tooltip:"Imprimir mapa", + previewText:"Visualizar Impressão", + notAllNotPrintableText:"Nem todos os seus camadas poderão ser impressos...", + nonePrintableText:"Nenhum dos seus Camadas selecionados poderão ser impressos..." + }, + + "gxp.plugins.MapQuestSource.prototype":{ + title:"Camadas do MapQuest", + osmAttribution:"Tiles Courtesy of MapQuest ", + osmTitle:"MapQuest OpenStreetMap", + naipAttribution:"Tiles Courtesy of MapQuest ", + naipTitle:"MapQuest Imagery" + }, + + "gxp.plugins.QueryForm.prototype":{ + queryActionText:"Consulta", + queryMenuText:"Consultar camada", + queryActionTip:"Consultar a camada selecionada", + queryByLocationText:"Consultar por visualização do mapa corrente", + queryByAttributesText:"Consulta por atributos", + queryMsg:"Consultando ...", + CancelButtonText:"Cancelar", + noFeaturesTitle:"Nenhum registro para a consulta", + noFeaturesMessage:"Sua consulta não retornou nenhum resultado." + }, + + "gxp.plugins.RemoveLayer.prototype":{ + removeMenuText:"Remove camada", + removeActionTip:"Remove camada" + }, + + "gxp.plugins.Styler.prototype":{ + menuText:"Estilos da Camada", + tooltip:"Estilos da Camada" + + }, + + "gxp.plugins.WMSGetFeatureInfo.prototype":{ + buttonText:"Identificar", + infoActionTip:"Obter informações da feição", + popupTitle:"Informações da feição" + }, + + "gxp.plugins.Zoom.prototype":{ + zoomMenuText:"Zoom de seleção", + zoomInMenuText:"Zoom in", + zoomOutMenuText:"Zoom out", + zoomTooltip:"Zoom selecionando uma área", + zoomInTooltip:"Zoom in", + zoomOutTooltip:"Zoom out" + }, + + "gxp.plugins.ZoomToExtent.prototype":{ + menuText:"Zoom para ponto máximo", + tooltip:"Zoom na medida max" + }, + + "gxp.plugins.ZoomToDataExtent.prototype":{ + menuText:"Extender zoom na camada", + tooltip:"Extender zoom na camada" + }, + + "gxp.plugins.ZoomToLayerExtent.prototype":{ + menuText:"Extender zoom na camada", + tooltip:"Extender zoom na camada" + }, + + "gxp.plugins.ZoomToSelectedFeatures.prototype":{ + menuText:"Zoom nas feições selecionadas", + tooltip:"Zoom nas feições selecionadas" + }, + + "gxp.FeatureEditPopup.prototype":{ + closeMsgTitle:"Salvar alterações?", + closeMsg:". Esse recurso tem alterações não salvas, gostaria de salvar as alterações?", + deleteMsgTitle:"Excluir Feição", + deleteMsg:"Tem certeza de que deseja excluir este recurso", + editButtonText:"Editar", + editButtonTooltip:"Fazer este recurso editável", + deleteButtonText:"Excluir", + deleteButtonTooltip:"Excluir este recurso", + CancelButtonText:"Cancelar", + cancelButtonTooltip:"Parar edição e descartar as alterações", + saveButtonText:"Salvar", + saveButtonTooltip:"Salvar alterações" + }, + + "gxp.FillSymbolizer.prototype":{ + fillText:"Preencher", + colorText:"Cor", + opacityText:"Opacidade" + }, + + "gxp.FilterBuilder.prototype":{ + builderTypeNames:["qualquer", "todos", "nenhum", "nem todos"], + preComboText:"Combinar", + postComboText:"do seguinte:", + addConditionText:"adicionar condição", + addGroupText:"adicionar grupo", + removeConditionText:"remover condição" + }, + + "gxp.grid.CapabilitiesGrid.prototype":{ + nameHeaderText:"Nome", + titleHeaderText:"Título", + queryableHeaderText:"Consultável", + layerSelectionLabel:"Ver dados disponíveis de:", + layerAdditionLabel:"ou adicione um novo servidor.", + expanderTemplateText:"

Resumo: {abstract}

" + }, + + "gxp.PointSymbolizer.prototype":{ + graphicCircleText:"círculo", + graphicSquareText:"quadrado", + graphicTriangleText:"triângulo", + graphicStarText:"estrela", + graphicCrossText:"através", + graphicXText:"x", + graphicExternalText:"externo", + urlText:"URL", + opacityText:"opacidade", + symbolText:"Símbolo", + sizeText:"Tamanho", + rotationText:"Rotação" + }, + + "gxp.QueryPanel.prototype":{ + queryByLocationText:"Consulta por Localição", + currentTextText:"Escala atual", + queryByAttributesText:"Consulta por atributos", + layerText:"Camada" + }, + + "gxp.RulePanel.prototype":{ + scaleSliderTemplate:"{scaleType} Escala 1:{scale}", + labelFeaturesText:"Rótulos das feições", + labelsText:"Rótulos", + basicText:"Basico", + advancedText:"Avançado", + limitByScaleText:"Limit por escala", + limitByConditionText:"Limite por condição", + symbolText:"Símbolo", + nameText:"Nome" + }, + + "gxp.ScaleLimitPanel.prototype":{ + scaleSliderTemplate:"{scaleType} Escala 1:{scale}", + minScaleLimitText:"Limite minímo de escala", + maxScaleLimitText:"Limite máximo de escala" + }, + + "gxp.StrokeSymbolizer.prototype":{ + solidStrokeName:"sólido", + dashStrokeName:"traço", + dotStrokeName:"ponto", + titleText:"Traço", + styleText:"Estilo", + colorText:"Cor", + widthText:"Largura", + opacityText:"Opacidade" + }, + + "gxp.StylePropertiesDialog.prototype":{ + titleText:"Geral", + nameFieldText:"Nome", + titleFieldText:"Título", + abstractFieldText:"Abstrato" + }, + + "gxp.TextSymbolizer.prototype":{ + labelValuesText:"Valores dos rótulos", + haloText:"Círculo", + sizeText:"Tamanho" + }, + + "gxp.WMSLayerPanel.prototype":{ + aboutText:"Sobre", + titleText:"Título", + nameText:"Nome", + descriptionText:"Descrição", + displayText:"Display", + opacityText:"Opacidade", + formatText:"Formatar", + transparentText:"Transparente", + cacheText:"Cache", + cacheFieldText:"Use a versão em cache", + stylesText:"Estilos disponíveis", + infoFormatText:"Informações do formato", + infoFormatEmptyText:"Selecione um formato", + displayOptionsText:"Opções de visualização", + querytext:"Limite com filtros", + scaleText:"Limite de escala", + minScaleText:"Escala Miníma", + maxScaleText:"Escala Máxima", + switchToFilterBuilderText:"Voltar para o construtor de filtro", + cqlPrefixText:"ou", + cqlText:"usar CQL ao invés de filtro", + singleTileText:"Imagem(Tile) única", + singleTileFieldText:"Usar uma imagem(Tile) única" + }, + + "gxp.EmbedMapDialog.prototype":{ + publishMessage:"O seu mapa está pronto para ser publicado na web, basta copiar o seguinte código HTML para incorporar o mapa em seu site:", + heightLabel:'Altura', + widthLabel:'Largura', + mapSizeLabel:'Tamanho do Mapa', + miniSizeLabel:'Mini', + smallSizeLabel:'Pequeno', + premiumSizeLabel:'Prêmio', + largeSizeLabel:'Grandes' + }, + + "gxp.WMSStylesDialog.prototype":{ + addStyleText:"Adicionar", + addStyleTip:"Adicionar um novo estilo", + chooseStyleText:"Escolha o estilo", + deleteStyleText:"Remover", + deleteStyleTip:"Excluir o estilo selecionado", + editStyleText:"Editar", + editStyleTip:"Editar o estilo selecionado", + duplicateStyleText:"Duplicar", + duplicateStyleTip:"Duplicar o estilo selecionado", + addRuleText:"Adicionar", + addRuleTip:"Adicionar uma nova regra", + newRuleText:"Nova regra", + deleteRuleText:"Remover", + deleteRuleTip:"Excluir a regra selecionada", + editRuleText:"Editar", + editRuleTip:"Editar a regra selecionada", + duplicateRuleText:"Duplicar", + duplicateRuleTip:"Duplicar a regra selecionada", + cancelText:"Cancelar", + saveText:"Salvar", + styleWindowTitle:"Estilo de Usuário: {0}", + ruleWindowTitle:"Regra Estilo: {0}", + stylesFieldsetTitle:"Estilos", + rulesFieldsetTitle:"Regras" + }, + + "gxp.LayerUploadPanel.prototype":{ + titleLabel:"Título", + titleEmptyText:"Título da camada", + abstractLabel:"Descrição", + abstractEmptyText:"Descrição da camada", + fileLabel:"Dado", + fieldEmptyText:"Procurar por arquivo...", + uploadText:"Carregar", + uploadFailedText:"Carregamento falhou", + processingUploadText:"Processando seu carregamento...", + waitMsgText:"Carregando seus dados...", + invalidFileExtensionText:"A extensão dos arquivo deve ser uma destas: ", + optionsText:"Opções", + workspaceLabel:"Área de trabalho", + workspaceEmptyText:"Área de trabalho padrão", + dataStoreLabel:"Fonte de dados", + dataStoreEmptyText:"Criar nova fonte de dados", + defaultDataStoreEmptyText:"Armazenamento de dados padrão" + }, + + "gxp.NewSourceDialog.prototype":{ + title:"Adicionar novo Servidor...", + cancelText:"Cancelar", + addServerText:"Adicionar Servidor", + invalidURLText:"Entre com uma URL válida para um serviço WMS (e.g. http://example.com/geoserver/wms)", + contactingServerText:"Conectando com o servidor..." + }, + + "gxp.ScaleOverlay.prototype":{ + zoomLevelText:"Nível de Zoom" + } + +}); From 851fa119432e0c98a6573d425f3586c7675c2af7 Mon Sep 17 00:00:00 2001 From: Paulo Luan Date: Mon, 28 Jan 2013 14:14:01 -0200 Subject: [PATCH 10/39] correction same words of translation --- src/script/locale/pt-br.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/script/locale/pt-br.js b/src/script/locale/pt-br.js index 9b2c0657..bcc48b43 100644 --- a/src/script/locale/pt-br.js +++ b/src/script/locale/pt-br.js @@ -34,6 +34,7 @@ GeoExt.Lang.add("pt-br", { "gxp.plugins.FeatureEditor.prototype":{ splitButtonText:"Editar", + splitButtonTooltip: "Editar feições na camada WMS selecionada", createFeatureActionText:"Criar", editFeatureActionText:"Modificar", createFeatureActionTip:"Criar nova feição", @@ -164,8 +165,8 @@ GeoExt.Lang.add("pt-br", { }, "gxp.plugins.RemoveLayer.prototype":{ - removeMenuText:"Remove camada", - removeActionTip:"Remove camada" + removeMenuText:"Remover camada", + removeActionTip:"Remover camada" }, "gxp.plugins.Styler.prototype":{ From 8921a61cdf7be3ffa07e43eaa50067ee332fc3d0 Mon Sep 17 00:00:00 2001 From: Paulo Luan Date: Mon, 28 Jan 2013 14:19:49 -0200 Subject: [PATCH 11/39] add resource to gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e9994ac4..454cd8f4 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ src/doc/lib/plugins src/doc/lib/widgets src/doc/lib/util.rst build/ +.idea/ # Logs and databases # ###################### @@ -21,4 +22,4 @@ build/ .Trashes Icon? ehthumbs.db -Thumbs.db \ No newline at end of file +Thumbs.db From d899a4a1053f869cfc97d5cafdf5b4cb9921eee9 Mon Sep 17 00:00:00 2001 From: Paulo Luan Date: Mon, 25 Feb 2013 10:55:30 -0300 Subject: [PATCH 12/39] add popup with question zoom to max extent when user add layer --- src/script/plugins/AddLayers.js | 601 +++++++++++++++++--------------- 1 file changed, 314 insertions(+), 287 deletions(-) diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index 912099be..5a8591bc 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -1,6 +1,6 @@ /** * Copyright (c) 2008-2011 The Open Planning Project - * + * * Published under the GPL license. * See https://github.com/opengeo/gxp/raw/master/license.txt for the full text * of the license. @@ -31,104 +31,110 @@ Ext.namespace("gxp.plugins"); * TODO Make this plural - selected layers */ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { - + /** api: ptype = gxp_addlayers */ - ptype: "gxp_addlayers", - + ptype:"gxp_addlayers", + /** api: config[addActionMenuText] * ``String`` * Text for add menu item (i18n). */ - addActionMenuText: "Add layers", + addActionMenuText:"Add layers", /** api: config[findActionMenuText] * ``String`` * Text for find menu item (i18n). */ - findActionMenuText: "Find layers", + findActionMenuText:"Find layers", /** api: config[addActionMenuText] * ``String`` * Text for add feed menu item (i18n). */ - addFeedActionMenuText: "Add feeds", + addFeedActionMenuText:"Add feeds", /** api: config[addActionTip] * ``String`` * Text for add action tooltip (i18n). */ - addActionTip: "Add layers", - + addActionTip:"Add layers", + /** api: config[addActionText] * ``String`` * Text for the Add action. None by default. */ - + /** api: config[addServerText] * ``String`` * Text for add server button (i18n). */ - addServerText: "Add a New Server", + addServerText:"Add a New Server", /** api: config[addButtonText] * ``String`` * Text for add layers button (i18n). */ - addButtonText: "Add layers", - + addButtonText:"Add layers", + /** api: config[untitledText] * ``String`` * Text for an untitled layer (i18n). */ - untitledText: "Untitled", + untitledText:"Untitled", /** api: config[addLayerSourceErrorText] * ``String`` * Text for an error message when WMS GetCapabilities retrieval fails (i18n). */ - addLayerSourceErrorText: "Error getting WMS capabilities ({msg}).\nPlease check the url and try again.", + addLayerSourceErrorText:"Error getting WMS capabilities ({msg}).\nPlease check the url and try again.", /** api: config[availableLayersText] * ``String`` * Text for the available layers (i18n). */ - availableLayersText: "Available Layers", + availableLayersText:"Available Layers", /** api: config[searchText] * ``String`` * Text for the search dialog title (i18n). */ - searchText: "Search for layers", + searchText:"Search for layers", /** api: config[expanderTemplateText] * ``String`` * Text for the grid expander (i18n). */ - expanderTemplateText: "

Abstract: {abstract}

", - + expanderTemplateText:"

Abstract: {abstract}

", + /** api: config[panelTitleText] * ``String`` * Text for the layer title (i18n). */ - panelTitleText: "Title", + panelTitleText:"Title", /** api: config[layerSelectionText] * ``String`` * Text for the layer selection (i18n). */ - layerSelectionText: "View available data from:", - + layerSelectionText:"View available data from:", + /** api: config[instructionsText] * ``String`` * Text for additional instructions at the bottom of the grid (i18n). * None by default. */ - + /** api: config[doneText] * ``String`` * Text for Done button (i18n). */ - doneText: "Done", + doneText:"Done", + + /** api: config[zoomToLayerExtentQuestionText] + * ``String`` + * Text for ask about zoom to layer extent after the layer have bean added (i18n). + */ + zoomToLayerExtentQuestionText:"Do you want to zoom to this layer extent?", /** api: config[search] * ``Object | Boolean`` @@ -147,28 +153,28 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { /** api: config[upload] * ``Object | Boolean`` * If provided, a :class:`gxp.LayerUploadPanel` will be made accessible - * from a button on the Available Layers dialog. This panel will be - * constructed using the provided config. By default, no upload + * from a button on the Available Layers dialog. This panel will be + * constructed using the provided config. By default, no upload * button will be added to the Available Layers dialog. */ - + /** api: config[uploadRoles] * ``Array`` Roles authorized to upload layers. Default is * ["ROLE_ADMINISTRATOR"] */ - uploadRoles: ["ROLE_ADMINISTRATOR"], - + uploadRoles:["ROLE_ADMINISTRATOR"], + /** api: config[uploadText] * ``String`` * Text for upload button (only renders if ``upload`` is provided). */ - uploadText: "Upload layers", + uploadText:"Upload layers", /** api: config[nonUploadSources] * ``Array`` - * If ``upload`` is enabled, the upload button will not be displayed for - * sources whose identifiers or URLs are in the provided array. By - * default, the upload button will make an effort to be shown for all + * If ``upload`` is enabled, the upload button will not be displayed for + * sources whose identifiers or URLs are in the provided array. By + * default, the upload button will make an effort to be shown for all * sources with a url property. */ @@ -177,14 +183,14 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { * If ``upload`` is enabled, only show the button for sources with relative * URLs (e.g. "/geoserver"). Default is ``true``. */ - relativeUploadOnly: true, - + relativeUploadOnly:true, + /** api: config[uploadSource] * ``String`` id of a WMS source (:class:`gxp.plugins.WMSSource') backed * by a GeoServer instance that all uploads will be sent to. If provided, * an Upload menu item will be shown in the "Add Layers" button menu. */ - + /** api: config[postUploadAction] * ``String|Object`` Either the id of a plugin that provides the action to * be performed after an upload, or an object with ``plugin`` and @@ -195,7 +201,7 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { * layer: * * .. code-block:: javascript - * + * * postUploadAction: { * plugin: "layerproperties", * outputConfig: {activeTab: 2} @@ -206,30 +212,30 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { * ``Integer`` * The identifier of the source that we should start with. */ - startSourceId: null, + startSourceId:null, /** api: config[catalogSourceKey] * ``String`` When lazy layerRecords are created by the 'Find Layers' - * function, they can optionally be associated with another source. + * function, they can optionally be associated with another source. * E.g. the 'local' source in GeoNode client. */ - catalogSourceKey: null, - + catalogSourceKey:null, + /** private: property[selectedSource] * :class:`gxp.plugins.LayerSource` * The currently selected layer source. */ - selectedSource: null, - + selectedSource:null, + /** private: property[addServerId] * ``String`` Id of the record in the sourceComboBox that is used to * add a new source. */ - addServerId: null, + addServerId:null, /** private: method[constructor] */ - constructor: function(config) { + constructor:function (config) { this.addEvents( /** api: event[sourceselected] * Fired when a new source is selected. @@ -241,41 +247,41 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { */ "sourceselected" ); - gxp.plugins.AddLayers.superclass.constructor.apply(this, arguments); + gxp.plugins.AddLayers.superclass.constructor.apply(this, arguments); }, - + /** api: method[addActions] */ - addActions: function() { + addActions:function () { var commonOptions = { - tooltip : this.addActionTip, - text: this.addActionText, - menuText: this.addActionMenuText, - disabled: true, - iconCls: "gxp-icon-addlayers" + tooltip:this.addActionTip, + text:this.addActionText, + menuText:this.addActionMenuText, + disabled:true, + iconCls:"gxp-icon-addlayers" }; var options, uploadButton; if (this.initialConfig.search || (this.uploadSource)) { var items = [new Ext.menu.Item({ - iconCls: 'gxp-icon-addlayers', - text: this.addActionMenuText, - handler: this.showCapabilitiesGrid, - scope: this + iconCls:'gxp-icon-addlayers', + text:this.addActionMenuText, + handler:this.showCapabilitiesGrid, + scope:this })]; if (this.initialConfig.search) { items.push(new Ext.menu.Item({ - iconCls: 'gxp-icon-addlayers', - text: this.findActionMenuText, - handler: this.showCatalogueSearch, - scope: this + iconCls:'gxp-icon-addlayers', + text:this.findActionMenuText, + handler:this.showCatalogueSearch, + scope:this })); } if (this.initialConfig.feeds) { items.push(new Ext.menu.Item({ - iconCls: 'gxp-icon-addlayers', - text: this.addFeedActionMenuText, - handler: this.showFeedDialog, - scope: this + iconCls:'gxp-icon-addlayers', + text:this.addFeedActionMenuText, + handler:this.showFeedDialog, + scope:this })); } if (this.uploadSource) { @@ -285,19 +291,19 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { } } options = Ext.apply(commonOptions, { - menu: new Ext.menu.Menu({ - items: items + menu:new Ext.menu.Menu({ + items:items }) }); } else { options = Ext.apply(commonOptions, { - handler : this.showCapabilitiesGrid, - scope: this + handler:this.showCapabilitiesGrid, + scope:this }); } var actions = gxp.plugins.AddLayers.superclass.addActions.apply(this, [options]); - - this.target.on("ready", function() { + + this.target.on("ready", function () { if (this.uploadSource) { var source = this.target.layerSources[this.uploadSource]; if (source) { @@ -319,7 +325,7 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { /** api: method[showCatalogueSearch] * Shows the window with a search panel. */ - showCatalogueSearch: function() { + showCatalogueSearch:function () { var selectedSource = this.initialConfig.search.selectedSource; var sources = {}; for (var key in this.target.layerSources) { @@ -330,43 +336,45 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { Ext.apply(sources, obj); } } - var output = gxp.plugins.AddLayers.superclass.addOutput.apply(this, [{ - sources: sources, - title: this.searchText, - height: 300, - width: 315, - selectedSource: selectedSource, - xtype: 'gxp_cataloguesearchpanel', - map: this.target.mapPanel.map, - listeners: { - 'addlayer': function(cmp, sourceKey, layerConfig) { - var source = this.target.layerSources[sourceKey]; - var bounds = OpenLayers.Bounds.fromArray(layerConfig.bbox); - var mapProjection = this.target.mapPanel.map.getProjection(); - var bbox = bounds.transform(layerConfig.srs, mapProjection); - layerConfig.srs = mapProjection; - layerConfig.bbox = bbox.toArray(); - layerConfig.source = this.initialConfig.catalogSourceKey !== null ? - this.initialConfig.catalogSourceKey : sourceKey; - var record = source.createLayerRecord(layerConfig); - this.target.mapPanel.layers.add(record); - if (bbox) { - this.target.mapPanel.map.zoomToExtent(bbox); - } - }, - scope: this + var output = gxp.plugins.AddLayers.superclass.addOutput.apply(this, [ + { + sources:sources, + title:this.searchText, + height:300, + width:315, + selectedSource:selectedSource, + xtype:'gxp_cataloguesearchpanel', + map:this.target.mapPanel.map, + listeners:{ + 'addlayer':function (cmp, sourceKey, layerConfig) { + var source = this.target.layerSources[sourceKey]; + var bounds = OpenLayers.Bounds.fromArray(layerConfig.bbox); + var mapProjection = this.target.mapPanel.map.getProjection(); + var bbox = bounds.transform(layerConfig.srs, mapProjection); + layerConfig.srs = mapProjection; + layerConfig.bbox = bbox.toArray(); + layerConfig.source = this.initialConfig.catalogSourceKey !== null ? + this.initialConfig.catalogSourceKey : sourceKey; + var record = source.createLayerRecord(layerConfig); + this.target.mapPanel.layers.add(record); + if (bbox) { + this.target.mapPanel.map.zoomToExtent(bbox); + } + }, + scope:this + } } - }]); + ]); var popup = output.findParentByType('window'); popup && popup.center(); return output; }, - + /** api: method[showCapabilitiesGrid] * Shows the window with a capabilities grid. */ - showCapabilitiesGrid: function() { - if(!this.capGrid) { + showCapabilitiesGrid:function () { + if (!this.capGrid) { this.initCapGrid(); } else if (!(this.capGrid instanceof Ext.Window)) { this.addOutput(this.capGrid); @@ -377,35 +385,38 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { /** api: method[showFeedDialog] * Shows the window with a dialog for adding feeds. */ - showFeedDialog: function() { + showFeedDialog:function () { var Cls = this.outputTarget ? Ext.Panel : Ext.Window; - if(!this.feedDialog) { + if (!this.feedDialog) { this.feedDialog = new Cls(Ext.apply({ - closeAction: "hide", - title: this.addFeedActionMenuText, - items: [{ - xtype: "gxp_feedsourcedialog", - target: this.target, - listeners: { - 'addfeed':function (ptype, config) { - var sourceConfig = {"config":{"ptype":ptype}}; - if (config.url) { - sourceConfig.config["url"] = config.url; - } - var source = this.target.addLayerSource(sourceConfig); - config.source = source.id; - var feedRecord = source.createLayerRecord(config); - this.target.mapPanel.layers.add([feedRecord]); - //this.target.selectControl.activate(); - this.feedDialog.hide() - }, - scope: this + closeAction:"hide", + title:this.addFeedActionMenuText, + items:[ + { + xtype:"gxp_feedsourcedialog", + target:this.target, + listeners:{ + 'addfeed':function (ptype, config) { + var sourceConfig = {"config":{"ptype":ptype}}; + if (config.url) { + sourceConfig.config["url"] = config.url; + } + var source = this.target.addLayerSource(sourceConfig); + config.source = source.id; + var feedRecord = source.createLayerRecord(config); + this.target.mapPanel.layers.add([feedRecord]); + //this.target.selectControl.activate(); + this.feedDialog.hide() + }, + scope:this + } } - }] + ] }, this.initialConfig.outputConfig)); if (Cls === Ext.Panel) { this.addOutput(this.feedDialog); - }; + } + ; } this.feedDialog.show(); }, @@ -414,26 +425,27 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { * private: method[initCapGrid] * Constructs a window with a capabilities grid. */ - initCapGrid: function() { - var source, data = [], target = this.target; + initCapGrid:function () { + var source, data = [], target = this.target; for (var id in target.layerSources) { source = target.layerSources[id]; if (source.store && !source.hidden) { - data.push([id, source.title || id, source.url]); + data.push([id, source.title || id, source.url]); } } var sources = new Ext.data.ArrayStore({ - fields: ["id", "title", "url"], - data: data + fields:["id", "title", "url"], + data:data }); var expander = this.createExpander(); - + function addLayers() { var source = this.selectedSource; var records = capGridPanel.getSelectionModel().getSelections(); var recordsToAdd = [], numRecords = records.length; + function collectRecords(record) { if (recordsToAdd) { recordsToAdd.push(record); @@ -443,20 +455,21 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { this.addLayers(recordsToAdd); } } - for (var i=0, ii=records.length; i
{title}
', - triggerAction: "all", - editable: false, - allowBlank: false, - forceSelection: true, - mode: "local", - value: data[idx][0], - listeners: { - select: function(combo, record, index) { + ref:"../sourceComboBox", + width:165, + store:sources, + valueField:"id", + displayField:"title", + tpl:'
{title}
', + triggerAction:"all", + editable:false, + allowBlank:false, + forceSelection:true, + mode:"local", + value:data[idx][0], + listeners:{ + select:function (combo, record, index) { var id = record.get("id"); if (id === this.addServerId) { showNewSourceDialog(); @@ -511,122 +524,125 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { this.setSelectedSource(source); // blur the combo box //TODO Investigate if there is a more elegant way to do this. - (function() { + (function () { combo.triggerBlur(); combo.el.blur(); }).defer(100); }, - focus: function(field) { + focus:function (field) { if (target.proxy) { field.reset(); } }, - scope: this + scope:this } }); - + var capGridToolbar = null; if (this.target.proxy || data.length > 1) { capGridToolbar = [ new Ext.Toolbar.TextItem({ - text: this.layerSelectionText + text:this.layerSelectionText }), sourceComboBox ]; } - + if (this.target.proxy) { this.addServerId = Ext.id(); - sources.loadData([[this.addServerId, this.addServerText + "..."]], true); + sources.loadData([ + [this.addServerId, this.addServerText + "..."] + ], true); } - + var newSourceDialog = { - xtype: "gxp_newsourcedialog", - header: false, - listeners: { - "hide": function(cmp) { + xtype:"gxp_newsourcedialog", + header:false, + listeners:{ + "hide":function (cmp) { if (!this.outputTarget) { cmp.ownerCt.hide(); } }, - "urlselected": function(newSourceDialog, url) { + "urlselected":function (newSourceDialog, url) { newSourceDialog.setLoading(); this.target.addLayerSource({ - config: {url: url}, // assumes default of gx_wmssource - callback: function(id) { + config:{url:url}, // assumes default of gx_wmssource + callback:function (id) { // add to combo and select var record = new sources.recordType({ - id: id, - title: this.target.layerSources[id].title || this.untitledText + id:id, + title:this.target.layerSources[id].title || this.untitledText }); sources.insert(0, [record]); sourceComboBox.onSelect(record, 0); newSourceDialog.hide(); }, - fallback: function(source, msg) { + fallback:function (source, msg) { newSourceDialog.setError( - new Ext.Template(this.addLayerSourceErrorText).apply({msg: msg}) + new Ext.Template(this.addLayerSourceErrorText).apply({msg:msg}) ); }, - scope: this + scope:this }); }, - scope: this + scope:this } }; var me = this; + function showNewSourceDialog() { if (me.outputTarget) { me.addOutput(newSourceDialog); } else { new Ext.Window({ - title: gxp.NewSourceDialog.prototype.title, - modal: true, - hideBorders: true, - width: 300, - items: newSourceDialog + title:gxp.NewSourceDialog.prototype.title, + modal:true, + hideBorders:true, + width:300, + items:newSourceDialog }).show(); } - } - - + } + + var items = { - xtype: "container", - region: "center", - layout: "fit", - hideBorders: true, - items: [capGridPanel] + xtype:"container", + region:"center", + layout:"fit", + hideBorders:true, + items:[capGridPanel] }; if (this.instructionsText) { items.items.push({ - xtype: "box", - autoHeight: true, - autoEl: { - tag: "p", - cls: "x-form-item", - style: "padding-left: 5px; padding-right: 5px" + xtype:"box", + autoHeight:true, + autoEl:{ + tag:"p", + cls:"x-form-item", + style:"padding-left: 5px; padding-right: 5px" }, - html: this.instructionsText + html:this.instructionsText }); } - + var bbarItems = [ "->", new Ext.Button({ - text: this.addButtonText, - iconCls: "gxp-icon-addlayers", - handler: addLayers, - scope : this + text:this.addButtonText, + iconCls:"gxp-icon-addlayers", + handler:addLayers, + scope:this }), new Ext.Button({ - text: this.doneText, - handler: function() { + text:this.doneText, + handler:function () { this.capGrid.hide(); }, - scope: this + scope:this }) ]; - + var uploadButton; if (!this.uploadSource) { uploadButton = this.createUploadButton(); @@ -637,49 +653,49 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { var Cls = this.outputTarget ? Ext.Panel : Ext.Window; this.capGrid = new Cls(Ext.apply({ - title: this.availableLayersText, - closeAction: "hide", - layout: "border", - height: 300, - width: 315, - modal: true, - items: items, - tbar: capGridToolbar, - bbar: bbarItems, - listeners: { - hide: function(win) { + title:this.availableLayersText, + closeAction:"hide", + layout:"border", + height:300, + width:315, + modal:true, + items:items, + tbar:capGridToolbar, + bbar:bbarItems, + listeners:{ + hide:function (win) { capGridPanel.getSelectionModel().clearSelections(); }, - show: function(win) { + show:function (win) { if (this.selectedSource === null) { this.setSelectedSource(this.target.layerSources[data[idx][0]]); } else { this.setSelectedSource(this.selectedSource); } }, - scope: this + scope:this } }, this.initialConfig.outputConfig)); if (Cls === Ext.Panel) { this.addOutput(this.capGrid); } - + }, - + /** private: method[addLayers] * :arg records: ``Array`` the layer records to add * :arg isUpload: ``Boolean`` Do the layers to add come from an upload? */ - addLayers: function(records, isUpload) { + addLayers:function (records, isUpload) { var source = this.selectedSource; var layerStore = this.target.mapPanel.layers, extent, record, layer; - for (var i=0, ii=records.length; i Date: Tue, 26 Feb 2013 10:39:27 -0300 Subject: [PATCH 13/39] corrigido o zoom to extent ao adicionar layer --- src/script/plugins/AddLayers.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index 5a8591bc..0b6740c1 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -134,7 +134,7 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { * ``String`` * Text for ask about zoom to layer extent after the layer have bean added (i18n). */ - zoomToLayerExtentQuestionText:"Do you want to zoom to this layer extent?", + zoomToLayerExtentQuestionText:"Gostaria de aplicar zoom a este Layer?", /** api: config[search] * ``Object | Boolean`` @@ -703,6 +703,7 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { if (!extent) { extent = record.getLayer().maxExtent.clone(); } else { + console.log("zoom!!!") extent.extend(record.getLayer().maxExtent); } } @@ -717,16 +718,17 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { } - var lyr = record.data.layer; - lyr.mergeNewParams({'time':lyr.dimensions.time.values[0] + "/" + lyr.dimensions.time.values[lyr.dimensions.time.values.length - 1]}); - if (extent) { Ext.MessageBox.confirm(this.addButtonText, this.zoomToLayerExtentQuestionText, function (btn) { if (btn == 'yes') this.target.mapPanel.map.zoomToExtent(extent); }, this); - } + + + var lyr = record.data.layer; + lyr.mergeNewParams({'time':lyr.dimensions.time.values[0] + "/" + lyr.dimensions.time.values[lyr.dimensions.time.values.length - 1]}); + if (records.length === 1 && record) { // select the added layer this.target.selectLayer(record); From 3750d794d48d586fc9d08e73680f588560eb1a9b Mon Sep 17 00:00:00 2001 From: gustavofoa Date: Tue, 26 Feb 2013 11:44:35 -0300 Subject: [PATCH 14/39] Change module protocol to https --- .gitmodules | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitmodules b/.gitmodules index efa1d0a8..24da1588 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,18 +1,18 @@ [submodule "externals/geoext"] path = externals/geoext - url = git://github.com/geoext/geoext.git + url = https://github.com/geoext/geoext.git [submodule "externals/openlayers"] path = externals/openlayers - url = git://github.com/openlayers/openlayers.git + url = https://github.com/openlayers/openlayers.git [submodule "externals/ringo"] path = externals/ringo - url = git://github.com/ringo/ringojs.git + url = https://github.com/ringo/ringojs.git [submodule "externals/buildkit"] path = externals/buildkit - url = git://github.com/opengeo/buildkit.git + url = https://github.com/opengeo/buildkit.git [submodule "externals/PrintPreview"] path = externals/PrintPreview - url = git://github.com/opengeo/PrintPreview.git + url = https://github.com/opengeo/PrintPreview.git [submodule "externals/DimensionManager"] path = externals/DimensionManager - url = git://github.com/opengeo/openlayers.git + url = https://github.com/opengeo/openlayers.git From ed4390410b8b33313df38921b955eb468b0b909a Mon Sep 17 00:00:00 2001 From: gustavofoa Date: Tue, 26 Feb 2013 11:48:17 -0300 Subject: [PATCH 15/39] Message localization in add layer --- src/script/locale/pt-br.js | 3 ++- src/script/plugins/AddLayers.js | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/script/locale/pt-br.js b/src/script/locale/pt-br.js index bcc48b43..bf82c1b2 100644 --- a/src/script/locale/pt-br.js +++ b/src/script/locale/pt-br.js @@ -22,7 +22,8 @@ GeoExt.Lang.add("pt-br", { doneText:"Concluído", uploadText:"Carregar camadas", addFeedActionMenuText:"Adicionar feeds", - searchText:"Procurar camadas" + searchText:"Procurar camadas", + zoomToLayerExtentQuestionText: "Deseja aplicar zoom para esta camada?" }, "gxp.plugins.BingSource.prototype":{ diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index 0b6740c1..b72027e5 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -727,7 +727,8 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { var lyr = record.data.layer; - lyr.mergeNewParams({'time':lyr.dimensions.time.values[0] + "/" + lyr.dimensions.time.values[lyr.dimensions.time.values.length - 1]}); + if(lyr.dimensions && lyr.dimensions.time && lyr.dimensions.time.values) + lyr.mergeNewParams({'time':lyr.dimensions.time.values[0] + "/" + lyr.dimensions.time.values[lyr.dimensions.time.values.length - 1]}); if (records.length === 1 && record) { // select the added layer From edfd4c89364fd28dc344d6f84ac25e7391e28c5a Mon Sep 17 00:00:00 2001 From: Paulo Luan Date: Fri, 1 Mar 2013 13:29:20 -0300 Subject: [PATCH 16/39] =?UTF-8?q?adicionado=20mensagem=20de=20aviso=20ao?= =?UTF-8?q?=20adicionar=20layer=20que=20n=C3=83o=20est=C3=A1=20vis=C3=ADve?= =?UTF-8?q?l?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/script/plugins/AddLayers.js | 58 ++++++++++++++++++++++++++++----- 1 file changed, 50 insertions(+), 8 deletions(-) diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index b72027e5..31adec96 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -688,8 +688,7 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { */ addLayers:function (records, isUpload) { var source = this.selectedSource; - var layerStore = this.target.mapPanel.layers, - extent, record, layer; + var layerStore = this.target.mapPanel.layers, extent, record, layer; for (var i = 0, ii = records.length; i < ii; ++i) { // If the source is lazy, then createLayerRecord will not return // a record, and we take the preconfigured record. @@ -703,7 +702,6 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { if (!extent) { extent = record.getLayer().maxExtent.clone(); } else { - console.log("zoom!!!") extent.extend(record.getLayer().maxExtent); } } @@ -715,20 +713,64 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { layerStore.add([record]); } } + } + + var map = this.target.mapPanel.map; + layer = record.getLayer(); + var name = record.json.name // get the name of layer to request to geoserver + var url = layer.url + "VERSION=1.1.1&REQUEST=GetStyles&LAYERS=" + name; + var showConfirmZoomDialog; + var maxScaleDenominator; + + // request the SLD to geoserver + OpenLayers.Request.GET({ + url:url, + success:function (response) { + var format = new OpenLayers.Format.SLD(); + var sld = format.read(response.responseXML || response.responseText); + + // scroll through the sld to get maxScaleDenominator param + for (var l in sld.namedLayers) { + var styles = sld.namedLayers[l].userStyles, style; + for (var i = 0; i < styles.length; i++) { + style = styles[i]; + var rules = style.rules; + if (rules) { // if not null + for (var j = 0; j < rules.length; j++) { + if (rules[j].maxScaleDenominator) { + maxScaleDenominator = rules[j].maxScaleDenominator; + //scale.toFixed() + } + } + } + } + } + }, + error:function (response) { + } + }); + + var zoomEndCallback = function () { + console.log(" max ", maxScaleDenominator, " scale ", map.getScale()); + if (maxScaleDenominator < map.getScale()) { // modifica a mensagem caso a escala não permita a visualização do layer + Ext.MessageInfo.msg("Camada não visível", "A camada " + layer.name + " não aparecerá nesta escala") + //layer.events.unregister("loadend", layer, zoomEndCallback); + } } if (extent) { Ext.MessageBox.confirm(this.addButtonText, this.zoomToLayerExtentQuestionText, function (btn) { - if (btn == 'yes') - this.target.mapPanel.map.zoomToExtent(extent); + if (btn == 'yes') { + layer.events.register("loadend", layer, zoomEndCallback); + map.zoomToExtent(extent); + } }, this); } - var lyr = record.data.layer; - if(lyr.dimensions && lyr.dimensions.time && lyr.dimensions.time.values) - lyr.mergeNewParams({'time':lyr.dimensions.time.values[0] + "/" + lyr.dimensions.time.values[lyr.dimensions.time.values.length - 1]}); + if (lyr.dimensions && lyr.dimensions.time && lyr.dimensions.time.values) + lyr.mergeNewParams({'time':lyr.dimensions.time.values[0] + "/" + lyr.dimensions.time.values[lyr.dimensions.time.values.length - 1]}); if (records.length === 1 && record) { // select the added layer From 083b0d1707143a3fd8db81ffbaf51366378e5402 Mon Sep 17 00:00:00 2001 From: gustavofoa Date: Mon, 11 Mar 2013 08:59:12 -0300 Subject: [PATCH 17/39] =?UTF-8?q?Remo=C3=A7=C3=A3o=20da=20pergunta=20ao=20?= =?UTF-8?q?adicionar=20layer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/script/plugins/AddLayers.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index b72027e5..1f6e200b 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -717,14 +717,14 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { } } - +/* if (extent) { Ext.MessageBox.confirm(this.addButtonText, this.zoomToLayerExtentQuestionText, function (btn) { if (btn == 'yes') this.target.mapPanel.map.zoomToExtent(extent); }, this); } - +*/ var lyr = record.data.layer; if(lyr.dimensions && lyr.dimensions.time && lyr.dimensions.time.values) From 170867ba22f411ef23bdaa0e120eedb3ba68fc81 Mon Sep 17 00:00:00 2001 From: gustavofoa Date: Mon, 11 Mar 2013 09:07:50 -0300 Subject: [PATCH 18/39] =?UTF-8?q?Remo=C3=A7=C3=A3o=20da=20pergunta=20ao=20?= =?UTF-8?q?adicionar=20layer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/script/plugins/AddLayers.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index 1ab2c5ef..39895883 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -752,7 +752,6 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { }); var zoomEndCallback = function () { - console.log(" max ", maxScaleDenominator, " scale ", map.getScale()); if (maxScaleDenominator < map.getScale()) { // modifica a mensagem caso a escala não permita a visualização do layer Ext.MessageInfo.msg("Camada não visível", "A camada " + layer.name + " não aparecerá nesta escala") //layer.events.unregister("loadend", layer, zoomEndCallback); @@ -767,11 +766,8 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { } }, this); } -<<<<<<< HEAD */ -======= ->>>>>>> edfd4c89364fd28dc344d6f84ac25e7391e28c5a - + layer.events.register("loadend", layer, zoomEndCallback); var lyr = record.data.layer; if (lyr.dimensions && lyr.dimensions.time && lyr.dimensions.time.values) lyr.mergeNewParams({'time':lyr.dimensions.time.values[0] + "/" + lyr.dimensions.time.values[lyr.dimensions.time.values.length - 1]}); From 96180aef62de2571abfc8317477129612530a0d1 Mon Sep 17 00:00:00 2001 From: gustavofoa Date: Wed, 20 Mar 2013 10:47:28 -0300 Subject: [PATCH 19/39] T --- src/script/plugins/AddLayers.js | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index 39895883..469ccce6 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -7,11 +7,11 @@ */ /** - * @requires plugins/Tool.js - * @requires widgets/NewSourceDialog.js - * @requires widgets/FeedSourceDialog.js - * @requires plugins/GeoNodeCatalogueSource.js - * @requires widgets/CatalogueSearchPanel.js + * @requires plugins/Tool.js + * @requires widgets/NewSourceDialog.js + * @requires widgets/FeedSourceDialog.js + * @requires plugins/GeoNodeCatalogueSource.js + * @requires widgets/CatalogueSearchPanel.js */ /** api: (define) @@ -482,12 +482,17 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { store:source.store, autoScroll:true, autoExpandColumn:"title", - plugins:[expander], + //plugins:[expander], + view: new Ext.grid.GroupingView({ + forceFit:true, + groupTextTpl: '{text} ({[values.rs.length]} {[values.rs.length > 1 ? "camadas" : "camada"]})' + }), loadMask:true, colModel:new Ext.grid.ColumnModel([ - expander, - {id:"title", header:this.panelTitleText, dataIndex:"title", sortable:true}, - {header:"Id", dataIndex:"name", width:120, sortable:true} + //expander, + {id:"title", header:this.panelTitleText, dataIndex:"title", sortable:true, menuDisabled:true}, + {header:"Id", dataIndex:"name", width:120, sortable:true, menuDisabled:true}, + {header:"", dataIndex:"prefix", width:50, hidden:true, menuDisabled:true}, ]), listeners:{ rowdblclick:addLayers, @@ -657,7 +662,7 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { closeAction:"hide", layout:"border", height:300, - width:315, + width:400, modal:true, items:items, tbar:capGridToolbar, @@ -1004,4 +1009,4 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { }); -Ext.preg(gxp.plugins.AddLayers.prototype.ptype, gxp.plugins.AddLayers); +Ext.preg(gxp.plugins.AddLayers.prototype.ptype, gxp.plugins.AddLayers); \ No newline at end of file From 1cd2f2f5eedb27c0bfec295a8f64fa4ecc4a3c54 Mon Sep 17 00:00:00 2001 From: gustavofoa Date: Fri, 5 Apr 2013 15:23:04 -0300 Subject: [PATCH 20/39] =?UTF-8?q?teste=20de=20corre=C3=A7=C3=A3o=20de=20bu?= =?UTF-8?q?g?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/script/plugins/AddLayers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index 469ccce6..f6a52a55 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -1009,4 +1009,4 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { }); -Ext.preg(gxp.plugins.AddLayers.prototype.ptype, gxp.plugins.AddLayers); \ No newline at end of file +Ext.preg(gxp.plugins.AddLayers.prototype.ptype, gxp.plugins.AddLayers); From fe7a75934965df827f8aaf82e71b3ce00fc86707 Mon Sep 17 00:00:00 2001 From: Paulo Luan Date: Mon, 8 Apr 2013 15:06:16 -0300 Subject: [PATCH 21/39] =?UTF-8?q?corre=C3=A7=C3=A3o=20do=20erro=20do=20Bui?= =?UTF-8?q?ld?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/script/plugins/AddLayers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index f6a52a55..af4bdc9a 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -492,7 +492,7 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { //expander, {id:"title", header:this.panelTitleText, dataIndex:"title", sortable:true, menuDisabled:true}, {header:"Id", dataIndex:"name", width:120, sortable:true, menuDisabled:true}, - {header:"", dataIndex:"prefix", width:50, hidden:true, menuDisabled:true}, + {header:"", dataIndex:"prefix", width:50, hidden:true, menuDisabled:true} ]), listeners:{ rowdblclick:addLayers, From 6bdb3bac0e2f52c36af5eda001ca10e5404957ad Mon Sep 17 00:00:00 2001 From: Paulo Luan Date: Tue, 9 Apr 2013 11:55:37 -0300 Subject: [PATCH 22/39] =?UTF-8?q?corre=C3=A7=C3=A3o=20da=20remo=C3=A7?= =?UTF-8?q?=C3=A3o=20das=20Layers=20do=20array=20que=20armazena=20as=20Lay?= =?UTF-8?q?ers=20correntes,=20para=20que=20possa=20ser=20armazenadas=20no?= =?UTF-8?q?=20BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/script/plugins/AddLayers.js | 1 - src/script/plugins/RemoveLayer.js | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index af4bdc9a..fe0fab6c 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -744,7 +744,6 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { for (var j = 0; j < rules.length; j++) { if (rules[j].maxScaleDenominator) { maxScaleDenominator = rules[j].maxScaleDenominator; - //scale.toFixed() } } } diff --git a/src/script/plugins/RemoveLayer.js b/src/script/plugins/RemoveLayer.js index 49689d3a..0404a330 100644 --- a/src/script/plugins/RemoveLayer.js +++ b/src/script/plugins/RemoveLayer.js @@ -54,6 +54,10 @@ gxp.plugins.RemoveLayer = Ext.extend(gxp.plugins.Tool, { tooltip: this.removeActionTip, handler: function() { var record = selectedLayer; + //Modificado para que quando a layer for removida, elas também serão removidas do array "modified", + //permitindo assim que as Layers correntes possam ser salvas no MongoDB + // Quando ative-se o "pruneModifiedRecords" a função "remove" chamada logo abaixo remove o Layer das layers "modified" + this.target.mapPanel.layers.pruneModifiedRecords = true; if(record) { this.target.mapPanel.layers.remove(record); } From a77b6adb8f4a05bbf65760d9d91ae92281ea1271 Mon Sep 17 00:00:00 2001 From: Paulo Luan Date: Tue, 9 Apr 2013 13:59:20 -0300 Subject: [PATCH 23/39] =?UTF-8?q?(RemoveLayer.js)Mudan=C3=A7a=20da=20vari?= =?UTF-8?q?=C3=A1vel=20'this.target.mapPanel.layers.pruneModifiedRecords'?= =?UTF-8?q?=20para=20o=20seu=20estado=20anterior=20caso=20ela=20esteja=20s?= =?UTF-8?q?endo=20usada=20em=20outro=20local=20da=20app?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/script/plugins/RemoveLayer.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/script/plugins/RemoveLayer.js b/src/script/plugins/RemoveLayer.js index 0404a330..5a3594a5 100644 --- a/src/script/plugins/RemoveLayer.js +++ b/src/script/plugins/RemoveLayer.js @@ -61,6 +61,8 @@ gxp.plugins.RemoveLayer = Ext.extend(gxp.plugins.Tool, { if(record) { this.target.mapPanel.layers.remove(record); } + this.target.mapPanel.layers.pruneModifiedRecords = false; + // retorna a variável para falso caso ela esteja sendo usada em outra parte do sistema. }, scope: this }]); From 144b46f8545d9d88f210e464a83565b35b38d1bd Mon Sep 17 00:00:00 2001 From: gustavofoa Date: Mon, 15 Apr 2013 09:51:34 -0300 Subject: [PATCH 24/39] Custom Color Picker --- src/script/ColorManager.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/script/ColorManager.js b/src/script/ColorManager.js index 5c68419c..2d257052 100644 --- a/src/script/ColorManager.js +++ b/src/script/ColorManager.js @@ -167,13 +167,13 @@ Ext.apply(gxp.ColorManager.prototype, { (function() { // register the color manager with every color field - Ext.util.Observable.observeClass(gxp.form.ColorField); - gxp.form.ColorField.on({ + //Ext.util.Observable.observeClass(gxp.form.ColorField); + /*gxp.form.ColorField.on({ render: function(field) { var manager = new gxp.ColorManager(); manager.register(field); } - }); + });*/ })(); gxp.ColorManager.picker = null; From d4e39e99ee3f55486f6501cb2931edb2021efa5a Mon Sep 17 00:00:00 2001 From: gustavofoa Date: Thu, 18 Apr 2013 10:21:47 -0300 Subject: [PATCH 25/39] =?UTF-8?q?Altera=C3=A7=C3=A3o=20do=20add=20layer=20?= =?UTF-8?q?para=20n=C3=A3o=20configurar=20time=20quando=20layer=20for=20ra?= =?UTF-8?q?ster?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/script/plugins/AddLayers.js | 4 +++- src/script/widgets/StrokeSymbolizer.js | 6 +++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index fe0fab6c..cf3d3bfa 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -773,7 +773,9 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { */ layer.events.register("loadend", layer, zoomEndCallback); var lyr = record.data.layer; - if (lyr.dimensions && lyr.dimensions.time && lyr.dimensions.time.values) + lyr.isFeatureLayer = record.data.keywords.indexOf("features")!=-1; + if (lyr.dimensions && lyr.dimensions.time && + lyr.dimensions.time.values && lyr.isFeatureLayer) lyr.mergeNewParams({'time':lyr.dimensions.time.values[0] + "/" + lyr.dimensions.time.values[lyr.dimensions.time.values.length - 1]}); if (records.length === 1 && record) { diff --git a/src/script/widgets/StrokeSymbolizer.js b/src/script/widgets/StrokeSymbolizer.js index 05819d20..8a44ce03 100644 --- a/src/script/widgets/StrokeSymbolizer.js +++ b/src/script/widgets/StrokeSymbolizer.js @@ -140,14 +140,18 @@ gxp.StrokeSymbolizer = Ext.extend(Ext.FormPanel, { scope: this } }, { - xtype: "numberfield", + xtype: "spinnerfield", name: "width", fieldLabel: this.widthText, + minValue: 0, + accelerate: true, + allowDecimals: false, allowNegative: false, emptyText: OpenLayers.Renderer.defaultSymbolizer.strokeWidth, value: this.symbolizer.strokeWidth, listeners: { change: function(field, value) { + console.log(value); value = parseFloat(value); if (isNaN(value)) { delete this.symbolizer.strokeWidth; From 0a5e20dd089aeb10fcd8fac35e28b170c171392b Mon Sep 17 00:00:00 2001 From: Paulo Luan Date: Tue, 23 Apr 2013 17:15:56 -0300 Subject: [PATCH 26/39] =?UTF-8?q?Implementado=20recurso=20de=20visualiza?= =?UTF-8?q?=C3=A7=C3=A3o=20de=20visibilidade=20dos=20Layers=20(=C3=ADcones?= =?UTF-8?q?=20verde=20e=20vermelho=20na=20Tree=20ao=20lado=20da=20Layer)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- externals/geoext | 2 +- src/script/locale/pt-br.js | 12 +++++----- src/script/plugins/AddLayers.js | 37 ++++++++++++++++++++++-------- src/script/plugins/LayerTree.js | 38 ++++++++++++++++--------------- src/script/plugins/WMSCSource.js | 3 ++- src/theme/all.css | 17 ++++++++++---- src/theme/img/green-icon.png | Bin 0 -> 880 bytes src/theme/img/red-icon.png | Bin 0 -> 845 bytes 8 files changed, 69 insertions(+), 40 deletions(-) create mode 100644 src/theme/img/green-icon.png create mode 100644 src/theme/img/red-icon.png diff --git a/externals/geoext b/externals/geoext index 3df35b1d..a0f2d089 160000 --- a/externals/geoext +++ b/externals/geoext @@ -1 +1 @@ -Subproject commit 3df35b1ddaed9aab8e1ccc76bf7fa35b83b6a865 +Subproject commit a0f2d089e98d4df2bb542dc056bb8619da38b724 diff --git a/src/script/locale/pt-br.js b/src/script/locale/pt-br.js index bf82c1b2..37336a9d 100644 --- a/src/script/locale/pt-br.js +++ b/src/script/locale/pt-br.js @@ -27,7 +27,7 @@ GeoExt.Lang.add("pt-br", { }, "gxp.plugins.BingSource.prototype":{ - title:"Bing Camadas", + title:"Bing Layers", roadTitle:"Bing Roads", aerialTitle:"Bing Aerial", labeledAerialTitle:"Bing Aerial com Labels" @@ -60,7 +60,7 @@ GeoExt.Lang.add("pt-br", { }, "gxp.plugins.GoogleSource.prototype":{ - title:"Google Camadas", + title:"Google Layers", roadmapAbstract:"Mostrar mapas de rua", satelliteAbstract:"Mostrar imagens de satélite", hybridAbstract:"Mostrar imagens de satélite com nomes de ruas", @@ -131,7 +131,7 @@ GeoExt.Lang.add("pt-br", { }, "gxp.plugins.OSMSource.prototype":{ - title:"OpenStreetMap Camadas", + title:"OpenStreetMap Layers", mapnikAttribution:"© OpenStreetMap contributors", osmarenderAttribution:"Data CC-By-SA by OpenStreetMap" }, @@ -141,12 +141,12 @@ GeoExt.Lang.add("pt-br", { menuText:"Imprimir mapa", tooltip:"Imprimir mapa", previewText:"Visualizar Impressão", - notAllNotPrintableText:"Nem todos os seus camadas poderão ser impressos...", - nonePrintableText:"Nenhum dos seus Camadas selecionados poderão ser impressos..." + notAllNotPrintableText:"Nem todos as suas camadas poderão ser impressos...", + nonePrintableText:"Nenhuma das suas Camadas selecionadas poderão ser impressas..." }, "gxp.plugins.MapQuestSource.prototype":{ - title:"Camadas do MapQuest", + title:"MapQuest Layers", osmAttribution:"Tiles Courtesy of MapQuest ", osmTitle:"MapQuest OpenStreetMap", naipAttribution:"Tiles Courtesy of MapQuest ", diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index cf3d3bfa..80f5f797 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -7,11 +7,11 @@ */ /** - * @requires plugins/Tool.js - * @requires widgets/NewSourceDialog.js - * @requires widgets/FeedSourceDialog.js - * @requires plugins/GeoNodeCatalogueSource.js - * @requires widgets/CatalogueSearchPanel.js + * @requires plugins/Tool.js + * @requires widgets/NewSourceDialog.js + * @requires widgets/FeedSourceDialog.js + * @requires plugins/GeoNodeCatalogueSource.js + * @requires widgets/CatalogueSearchPanel.js */ /** api: (define) @@ -756,9 +756,28 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { }); var zoomEndCallback = function () { - if (maxScaleDenominator < map.getScale()) { // modifica a mensagem caso a escala não permita a visualização do layer - Ext.MessageInfo.msg("Camada não visível", "A camada " + layer.name + " não aparecerá nesta escala") - //layer.events.unregister("loadend", layer, zoomEndCallback); + var tree = Ext.getCmp("tree") + var nodes = tree.root.childNodes[0] // pega o "node" que armazena as Layers na Tree ("Sobreposições") da Tree. + var node = null; + + // percorre todos os nós de Layers + for (var i = nodes.childNodes.length - 1; i >= 0; i--) { + if(nodes.childNodes[i].layer === layer){ + node = nodes.childNodes[i]; + } + }; + + //Ext.MessageInfo.msg("Camada não visível", "A camada " + layer.name + " não aparecerá nesta escala") + //layer.events.unregister("loadend", layer, zoomEndCallback); + // se o node for encontrado após a pesquisa anterior + if(node){ + if (maxScaleDenominator < map.getScale()) { // modifica a mensagem caso a escala não permita a visualização do layer + console.log("Vermelho! " + layer.name) + node.setIconCls("red-icon"); + } else { + console.log("Verde! " + layer.name) + node.setIconCls("green-icon"); + } } } /* @@ -774,7 +793,7 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { layer.events.register("loadend", layer, zoomEndCallback); var lyr = record.data.layer; lyr.isFeatureLayer = record.data.keywords.indexOf("features")!=-1; - if (lyr.dimensions && lyr.dimensions.time && + if (lyr.dimensions && lyr.dimensions.time && lyr.dimensions.time.values && lyr.isFeatureLayer) lyr.mergeNewParams({'time':lyr.dimensions.time.values[0] + "/" + lyr.dimensions.time.values[lyr.dimensions.time.values.length - 1]}); diff --git a/src/script/plugins/LayerTree.js b/src/script/plugins/LayerTree.js index 7c04c07f..6569042d 100644 --- a/src/script/plugins/LayerTree.js +++ b/src/script/plugins/LayerTree.js @@ -1,6 +1,6 @@ /** * Copyright (c) 2008-2011 The Open Planning Project - * + * * Published under the GPL license. * See https://github.com/opengeo/gxp/raw/master/license.txt for the full text * of the license. @@ -29,12 +29,12 @@ Ext.namespace("gxp.plugins"); * * Plugin for adding a tree of layers to a :class:`gxp.Viewer`. Also * provides a context menu on layer nodes. - */ + */ gxp.plugins.LayerTree = Ext.extend(gxp.plugins.Tool, { - + /** api: ptype = gxp_layertree */ ptype: "gxp_layertree", - + /** api: config[shortTitle] * ``String`` * Short title text for this plugin's output (i18n) @@ -58,7 +58,7 @@ gxp.plugins.LayerTree = Ext.extend(gxp.plugins.Tool, { * Text for baselayer node of layer tree (i18n). */ baseNodeText: "Base Layers", - + /** api: config[groups] * ``Object`` The groups to show in the layer tree. Keys are group names, * and values are either group titles or an object with ``title`` and @@ -79,18 +79,18 @@ gxp.plugins.LayerTree = Ext.extend(gxp.plugins.Tool, { * } */ groups: null, - + /** api: config[defaultGroup] * ``String`` The name of the default group, i.e. the group that will be * used when none is specified. Defaults to ``default``. */ defaultGroup: "default", - + /** private: config[treeNodeUI] * ``Ext.tree.TreeNodeUI`` */ treeNodeUI: null, - + /** private: method[constructor] * :arg config: ``Object`` */ @@ -112,7 +112,7 @@ gxp.plugins.LayerTree = Ext.extend(gxp.plugins.Tool, { ); } }, - + /** private: method[addOutput] * :arg config: ``Object`` * :returns: ``Ext.Component`` @@ -121,7 +121,7 @@ gxp.plugins.LayerTree = Ext.extend(gxp.plugins.Tool, { config = Ext.apply(this.createOutputConfig(), config || {}); return gxp.plugins.LayerTree.superclass.addOutput.call(this, config); }, - + /** private: method[createOutputConfig] * :returns: ``Object`` Configuration object for an Ext.tree.TreePanel */ @@ -137,7 +137,7 @@ gxp.plugins.LayerTree = Ext.extend(gxp.plugins.Tool, { if (this.initialConfig.loader && this.initialConfig.loader.baseAttrs) { baseAttrs = this.initialConfig.loader.baseAttrs; } - + var defaultGroup = this.defaultGroup, plugin = this, groupConfig, @@ -176,7 +176,7 @@ gxp.plugins.LayerTree = Ext.extend(gxp.plugins.Tool, { } }, groupConfig))); } - + return { xtype: "treepanel", root: treeRoot, @@ -192,7 +192,7 @@ gxp.plugins.LayerTree = Ext.extend(gxp.plugins.Tool, { }), listeners: { contextmenu: this.handleTreeContextMenu, - beforemovenode: this.handleBeforeMoveNode, + beforemovenode: this.handleBeforeMoveNode, scope: this }, contextMenu: new Ext.menu.Menu({ @@ -200,7 +200,7 @@ gxp.plugins.LayerTree = Ext.extend(gxp.plugins.Tool, { }) }; }, - + /** private: method[configureLayerNode] * :arg loader: ``GeoExt.tree.LayerLoader`` * :arg node: ``Object`` The node @@ -217,6 +217,8 @@ gxp.plugins.LayerTree = Ext.extend(gxp.plugins.Tool, { attr.qtip = record.get('abstract'); if (!record.get("queryable") && !attr.iconCls) { attr.iconCls = "gxp-tree-rasterlayer-icon"; + } else { + attr.iconCls = "red-icon"; } if (record.get("fixed")) { attr.allowDrag = false; @@ -237,7 +239,7 @@ gxp.plugins.LayerTree = Ext.extend(gxp.plugins.Tool, { } } }, - + /** private: method[handleBeforeSelect] */ handleBeforeSelect: function(selModel, node) { @@ -255,7 +257,7 @@ gxp.plugins.LayerTree = Ext.extend(gxp.plugins.Tool, { this.selectionChanging = false; return changed; }, - + /** private: method[handleTreeContextMenu] */ handleTreeContextMenu: function(node, e) { @@ -269,7 +271,7 @@ gxp.plugins.LayerTree = Ext.extend(gxp.plugins.Tool, { } } }, - + /** private: method[handleBeforeMoveNode] */ handleBeforeMoveNode: function(tree, node, oldParent, newParent, i) { @@ -283,7 +285,7 @@ gxp.plugins.LayerTree = Ext.extend(gxp.plugins.Tool, { record.set("group", newParent.attributes.group); } } - + }); Ext.preg(gxp.plugins.LayerTree.prototype.ptype, gxp.plugins.LayerTree); diff --git a/src/script/plugins/WMSCSource.js b/src/script/plugins/WMSCSource.js index fdbc0ac6..c3c8c7c6 100644 --- a/src/script/plugins/WMSCSource.js +++ b/src/script/plugins/WMSCSource.js @@ -156,7 +156,8 @@ gxp.plugins.WMSCSource = Ext.extend(gxp.plugins.WMSSource, { } } // unless explicitly configured otherwise, use cached version - layer.params.TILED = (config.cached !== false) && true; + //layer.params.TILED = (config.cached !== false) && true; + layer.params.TILED = true; return record; }, diff --git a/src/theme/all.css b/src/theme/all.css index 957cd984..bb7aa846 100644 --- a/src/theme/all.css +++ b/src/theme/all.css @@ -55,6 +55,13 @@ li.commit div { background-image: url(img/silk/map.png); } +.x-tree-node-leaf .red-icon { + background-image: url(img/red-icon.png); +} + +.x-tree-node-leaf .green-icon { + background-image: url(img/green-icon.png); +} /* position the zoom slider within map panel */ .gx-zoomslider { top: 90px; @@ -253,22 +260,22 @@ li.commit div { } /* gxp_zoomtodataextent, gxp_zoomtoselectedfeatures, gxp_zoomtolayerextent */ -.x-btn .gxp-icon-zoom-to, .x-menu-item .gxp-icon-zoom-to, .x-tree-node .gxp-icon-zoom-to { +.x-btn .gxp-icon-zoom-to, .x-menu-item .gxp-icon-zoom-to, .x-tree-node .gxp-icon-zoom-to { background-image: url(img/silk/magnifier.png); } /* gxp_queryform */ -.x-btn .gxp-icon-find, .x-menu-item .gxp-icon-find { +.x-btn .gxp-icon-find, .x-menu-item .gxp-icon-find { background-image: url(img/silk/find.png); } /* gxp_selectfeature */ -.x-btn .gxp-icon-selectfeature, .x-menu-item .gxp-icon-selectfeature { +.x-btn .gxp-icon-selectfeature, .x-menu-item .gxp-icon-selectfeature { background-image: url(img/silk/cursor.png); } /* gxp_zoomtoextent */ -.x-btn .gxp-icon-zoomtoextent, .x-tree-node .gxp-icon-zoomtoextent { +.x-btn .gxp-icon-zoomtoextent, .x-tree-node .gxp-icon-zoomtoextent { background-image: url(img/silk/arrow_inout.png); } @@ -318,7 +325,7 @@ li.commit div { } /* gxp_layeruploadpanel */ -.x-btn .gxp-icon-filebrowse, .x-menu-item .gxp-icon-filebrowse { +.x-btn .gxp-icon-filebrowse, .x-menu-item .gxp-icon-filebrowse { background-image: url(img/silk/folder.png); } diff --git a/src/theme/img/green-icon.png b/src/theme/img/green-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7132bba4568cb51d8a6171e481afc84dcd6cb41b GIT binary patch literal 880 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GXl47;6K3LR^7d21XD81S}%llE!K} z9+p5hlQ5@Im=ln}EW-z-U zKD(`*>pAh*ipA%*EjYJj!TBvAOUo;EO)1|!rF_qn^1V~a_f6r=GxuFl61uJ`bbVFm z#_G^b)uEfK!`4-CH`$skOtM;*YPllKa#fn;nl#I`Y23}W%$-&;v;CD8g(@u#RazdZ zv@%R-RTx8`1^aY+{sr!WOFTqYxJ#^dlV0n}KEs}&-<)B#HOoR9ft6OW>&?|Rn`mz} zW@s>EUTiJ6%0gwck?}4)`~BLkhcxZ?YnklQ6Ix}#x6)j7tC`h)L*L^%QD-%hE~;7Y zH{@SwF5aYSe!$f4v{mvIlakx|b@z2ru9*0rwlba|A9u;J;-P2H3(uKv+~O`--_q&x({``6JWaYalQ#Ma|{~jdu z$6&$S3ZQb%0*}aIAngIhZYQ(tfKkZd>Eak7aXC2w2$IqgQ%ozv4h=hw&gZCw+OQ{Fqdd2#pb?C!K1^J=h$qQ#W8p{6PEXI1 znjcqgG)&^Dd6fB5a%SYsn~^guU+#QV!($^<`IEKP_2^Mo)ulfxC)x1yya`HuDmpbZ zbgJmp)Sx##JPv}HGiTk}wdSk4Gf;HelF{r5}E+xFg>{d literal 0 HcmV?d00001 diff --git a/src/theme/img/red-icon.png b/src/theme/img/red-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b38b4a2b6223b18c639e2742f6cf734f307e6c77 GIT binary patch literal 845 zcmZ`$X-pGg5S{L}mQpH(pcbqKRwPJ8N^8+AqA9jo1gdBkiy8$LjTaiME*|lKXi8K( zXyTDbsu%%{Cjs$_#2Xa}RJ@2pBVZ9I<&Y`@pCA77hsnHoGnskw<4x`Y!(5SPfF}Tm z;`G{un8m~JAaM>2_g)0RS-Bv=sKYG>0{{;wE?4jGzhd%a+y)Uurb2;>2y$2wgaMGj z;-V}*i5)&N^)5b9E z4C7=NM{=@VDEt-`)uvWEY1&28-89`p({F^rFC^I}mAWXZm!jMh^^2nVDe4=5i_h=# z_U`u)5BiCRBw{pH+ydYR7~m2}Od=^41#{6PZZ!ZR0r?VW0)Z3+nn9pg0>uz0m>3$# zL7{vUBS47)lp;W>f_tL?MGKM1AFY?5ED72#xfe+eu9YH-3Y}4-3(+W7W#2ryw;*z` zLi0MhvJ!h2WL{{%uJh+zY98>nb_SG=u*N$}ng#}%N}SeGYo~R1(5$;yNa1C{7JbTA z%=*8WQ?+3xeiIR=)fgrAaW(a^M4I1$+SwzY%gvU+x=(?{X7<*;x+8(Ep`owrE%zq^ zY;_K=kbF&1(*DEQH{J(aF%;EbPm%CC_<4<~Q%_fi6l!WT-ml9{o3`^`WRxzcm@b}C z^s=L?fA{jE4b4qHm2Up>oO9ERp+CpFdNeMdJngD3Ej9kooQH87k43EsQ70q(x^Hg` zIqREUYzkX^sch%{d#_htaYduk-N1BdGfrGH z#$2wC2%A`iNSCj2X*Mq@0oyXstTUNcrUC>&{9kY?^wlgZfH<8&do?yS`wzu@Ow#}W literal 0 HcmV?d00001 From 1f804a532b9984a283987581a6e249a756fbd2d1 Mon Sep 17 00:00:00 2001 From: Paulo Luan Date: Tue, 23 Apr 2013 17:21:26 -0300 Subject: [PATCH 27/39] =?UTF-8?q?Redimensionamento=20dos=20=C3=ADcones=20v?= =?UTF-8?q?erde=20e=20vermelho=20da=20visibilidade=20das=20Layers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/theme/img/green-icon.png | Bin 880 -> 724 bytes src/theme/img/red-icon.png | Bin 845 -> 717 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/src/theme/img/green-icon.png b/src/theme/img/green-icon.png index 7132bba4568cb51d8a6171e481afc84dcd6cb41b..1d29bdd6ccf29c7b2ee15b2fb3c4a2308ccc6b95 100644 GIT binary patch literal 724 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4uGBwbBK{1_M*^#goDT!CB$O)ds4E(TU+0UseC zk567q$H~kiAtW?6fq|7l(p)XNCTq$54ZMaje$8nN5}XQ&HjDQXYH`-Eu|8jUBt?m>3u&^jXcqxg%-?vwDRk z^;yr{zk2QYy@jW@?6`e=+pS|;ZywED-`;d!PW^#d^#^AKt*r=MUlp>kDr8et$mXix zwH4yM9!853jF%@GuS_yton*8oiM`)WY@WB|5`XFCezL3lrJf=m;|2EO}wa?aYa4xqDIgu zUF!oT^6O3gPnzf6wrzZ5)%Dc8>5*05ZQFp8<};o#{GD8x#F{DMJ2#~_lh z=fhw5zUTk?z9u~1^Y8uN_j~>&JQwNv3KDw`mQDB?JoO|{DQAI4WHFHT0Ash4*>*t2 z7Ec$)5RU7t2V0pAGBB_nX!rG(US{29cz5=@cWM9rOW$EM3R)SIeML)ElYPO}mn&1W zJYSYZHJC`;EK!^7x!H}GbMnm7Pb=r0e{QjvQ!IO7gjV>erAb$_8rO#9n?%12+Z?$5 zX2N@pr0v(=m%1hox0msMe){XN9S^=$ zyzhVh`tQ#w+dPe$e+~h^JP%H|znr0?Kt-zi_@YjOM*Ay=WV!nuIL!gNU$w+Fq9i4; zB-JXpC>2OC7#SEE>l&Eo8X1Qe8Ce;cTNxQ@8yHy`80=oQ3Y6Lq8glbfGSez?YdG~= R=qFGEgQu&X%Q~loCIB!F3snFB delta 818 zcmcb@`hl&!Gr-TCmrII^fq{Y7)59eQNDF{42Q!e=(B%(iU|_5b@Ck7Rav2yw1Q4)@ za7!Ai>3CQI*-XNmMqy4s2D1z=NKS|iNU%C7Fo<$6=m;@bOEB0h7Sb1{a> zGs$#8OObMYy%n&;OGTI35du`)<%Fj@vN2j{Yc{JyXi}PAT6vg*VUKcST9) zx~kCiRiPWJLpN22ZmtenSH<0AYql`SYFVn~iZshrX_jl!EZ3%SH`_9ITGh+U_E%aI zsVGMm1?9=V}7q|;9@eo)(ReUIxz zoz+OXsAj$2kbkAQc$2F60aL%zR>?6}OiFI+*WK4ixnkmf+RAu>eB33=iie&(FFa?y zaf`cTk-JNE`V;GoU)(yhPTT~Bta3?^A23eXy;eQ_BRS>0)MmCR-tSgE`Sa(=la=qL zOxZl;{dCiK)rSsflSx49sPGeyO6Np`xjN zd}RXjyQ6($orAr-gPmi0r8N#6UcGkl>gD__RlBTi?Xlsh`NP)cc1&&AGPPrFZESyP zc$m_jiA@W;W@dIRY}&SGX-qs#W#9Pv{Lbm=o%8GC`?ju$$0_ff+`PDZ^>%jm;^xV{ z%X8v6w6E?TW2582gN}`i{}lHf;!#?d_)u_S;Khr969pe8E?mTuWVo^LBWI_l=Sj_v zD>oV@@zgxZd?`6I^5)IRnU*hiKC0od5vu&j+Uk1rsH^JIpOuqrczWIhr9Ks%8X7uP z^lEC*n;sqq!OWSnZtdE2ODZx`K>mqHtz{*vt14@y<%I8yjD2Qe>F>1uPflY}5Hz$h pHL)@=*ETS+GBEgIYqWjxbS4E^6w%IvE^bho_H^}gS?83{1OPjUF_8cO diff --git a/src/theme/img/red-icon.png b/src/theme/img/red-icon.png index b38b4a2b6223b18c639e2742f6cf734f307e6c77..0624d4e07c72bbc36cf232780949a853208fc2c1 100644 GIT binary patch delta 672 zcmX@hc9yliGr-TCmrII^fq{Y7)59eQM1wE~GmvyO74c(WU{nt932_B-0~i>9@~jLD zEDQ`h3=9Q)KrseAKE7Zboe~d^rqEEJfWM^V^yuizOO`M)F!=KFuJrTMW?-10pb*5! zcvwZ{h>A)PBV!{2Llpx()n^nQxk!-qhE>t*?I> z6!bbY^leDUyO5BV!NGUL#a|m4y*D=gWNiG!*!ZiF@iTVzk78oqBqe`IOa76Stp6(~ z`HF$z2P?~8KDK{S?EjV6|Ese9=VAOW&-CAr`M)jme@Ev3M$G>enErD!{!(E5Z^!dL znCE{Y&;N9uU*Tf^D^&k?ssEp#{$r8FpN;l?1`nqJ!$h|v$S)WaI6xqhu;;^H`M&4> zMEbraJm2&0-}}Gs_xwwE4&(ww>;LtE6^LjAJAy)-v%n*=7)X17vD?XPJ0N4Lr;B3< z$92|&?M%R+V?B_bzsb4t%$YS4WN&I48~^_=`i^1l(X7qZZ_HM^@=MIo+rB(Tv-*zS za>17C;ZL)_O2vPzzg4P<)NA73oEpe{IZ znQ`U58K*a|6mcxs8I`|n_uI6+QEq~ZzqKze3OYAkTa;OL|J|#{KQFwOUnu3H^s}md z-~8{|GZPY$f?xK0yKMAQC!6WaPMdHIu^lxhd+eLC<<5OJ5x+h8K9ho=k(HsDm7$5Y kfsvJgLC58n_LBve6=YFFfA$471AWWj>FVdQ&MBb@0NMiig#Z8m delta 801 zcmY*WdrVSs6h8beM2I9fD^zNDD`!!u7}mwiVOW?-SzNlf!^h6WdK6yN+p{F6XPoZ zECAAYyg-0BfK-5O0PIx-KrROq9EkJ)g(ngoyNWSB07xhoR2B_ud# zx`U=WY1&ECj-({JQ1~-EyhE*aQk09LdMT=pqCNza1b9y3UGn|Ckt?j;L&8j5khSA#XF=pONx(5AB7U5+hy3S!k5(8bS(lOSK0SW z=`RQ!tclXNBjlC~Y0_wRHQHPq4%}OIk)oT1uRja!a>moM?@?UP!XT zg1x%reQebI!?K#4OW04LSgpn&wNI;Uh(?=za_g2(dL5Esme+rk7iTc{j?|x$yT-#7!s7Z<(l>KQ(?@pMybi=^7k- zj<_Rd^xOMhq*tt)-&S5?fen?-yO=-EHa}@f`>2#9w!E^}4y9ALAg|ZtIZ#~H>~uHL zJ=(N$w+xYG4Z(9})nLNq9kxE3ml&VF3CSg)YL!YI7N!VMszXBB_h;nfpF#3z|8*|} Ry^CT+gxDCp_GWZS_FpQWLjV8( From 97ea76417d64c0fd8d7abe0a992e194bdad0b0c4 Mon Sep 17 00:00:00 2001 From: gustavofoa Date: Wed, 24 Apr 2013 13:22:47 -0300 Subject: [PATCH 28/39] =?UTF-8?q?Corre=C3=A7=C3=A3o=20de=20bug=20de=20camp?= =?UTF-8?q?o=20num=C3=A9rico=20da=20edi=C3=A7=C3=A3o=20do=20estilo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/script/widgets/StrokeSymbolizer.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/script/widgets/StrokeSymbolizer.js b/src/script/widgets/StrokeSymbolizer.js index 8a44ce03..a2acf87e 100644 --- a/src/script/widgets/StrokeSymbolizer.js +++ b/src/script/widgets/StrokeSymbolizer.js @@ -151,7 +151,6 @@ gxp.StrokeSymbolizer = Ext.extend(Ext.FormPanel, { value: this.symbolizer.strokeWidth, listeners: { change: function(field, value) { - console.log(value); value = parseFloat(value); if (isNaN(value)) { delete this.symbolizer.strokeWidth; From cd8c33809feba7fa4229b012b6b4426f59594dee Mon Sep 17 00:00:00 2001 From: gustavofoa Date: Mon, 29 Apr 2013 09:59:23 -0300 Subject: [PATCH 29/39] Retirada do combobox de escala --- externals/geoext | 2 +- src/script/plugins/AddLayers.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/externals/geoext b/externals/geoext index a0f2d089..3df35b1d 160000 --- a/externals/geoext +++ b/externals/geoext @@ -1 +1 @@ -Subproject commit a0f2d089e98d4df2bb542dc056bb8619da38b724 +Subproject commit 3df35b1ddaed9aab8e1ccc76bf7fa35b83b6a865 diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index 80f5f797..1a87f215 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -734,6 +734,8 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { var format = new OpenLayers.Format.SLD(); var sld = format.read(response.responseXML || response.responseText); + layer.sld = sld; + // scroll through the sld to get maxScaleDenominator param for (var l in sld.namedLayers) { var styles = sld.namedLayers[l].userStyles, style; From f0dded6bad3b7afbb13cc38bb6eb5e9ea05a2e43 Mon Sep 17 00:00:00 2001 From: gustavofoa Date: Thu, 2 May 2013 17:31:40 -0300 Subject: [PATCH 30/39] =?UTF-8?q?Altera=C3=A7=C3=A3o=20do=20texto=20da=20l?= =?UTF-8?q?ayer=20para=20exibir=20a=20data=20ou=20periodo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/script/plugins/AddLayers.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index 1a87f215..9eb233cf 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -726,6 +726,7 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { var url = layer.url + "VERSION=1.1.1&REQUEST=GetStyles&LAYERS=" + name; var showConfirmZoomDialog; var maxScaleDenominator; + layer.originalName = name; // request the SLD to geoserver OpenLayers.Request.GET({ @@ -774,13 +775,16 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { // se o node for encontrado após a pesquisa anterior if(node){ if (maxScaleDenominator < map.getScale()) { // modifica a mensagem caso a escala não permita a visualização do layer - console.log("Vermelho! " + layer.name) node.setIconCls("red-icon"); } else { - console.log("Verde! " + layer.name) node.setIconCls("green-icon"); } } + + if(layer.params.TIME) + layer.setName(layer.originalName + " - " + layer.params.TIME); + else + layer.setName(layer.originalName); } /* if (extent) { From 3e7056d986822551abd66719e2f1203f84580d32 Mon Sep 17 00:00:00 2001 From: Paulo Luan Date: Fri, 3 May 2013 10:53:11 -0300 Subject: [PATCH 31/39] =?UTF-8?q?Salvando=20o=20estado=20da=20visibilidade?= =?UTF-8?q?=20da=20Layer.=20Fixa=C3=A7=C3=A3o=20dos=20=C3=ADcones=20de=20v?= =?UTF-8?q?isibilidade=20dos=20layers=20ao=20recuperar=20projeto=20(Vermel?= =?UTF-8?q?ho,=20Verde=20e=20Amarelo)=20fixes=20#5=20fixes=20#6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/script/plugins/AddLayers.js | 39 +++++++++++++++++---------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index 80f5f797..1a29f9fe 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -720,12 +720,10 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { } } - var map = this.target.mapPanel.map; layer = record.getLayer(); var name = record.json.name // get the name of layer to request to geoserver var url = layer.url + "VERSION=1.1.1&REQUEST=GetStyles&LAYERS=" + name; - var showConfirmZoomDialog; - var maxScaleDenominator; + var maxScaleDenominator = ""; // request the SLD to geoserver OpenLayers.Request.GET({ @@ -734,6 +732,8 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { var format = new OpenLayers.Format.SLD(); var sld = format.read(response.responseXML || response.responseText); + layer.sld = sld; + // scroll through the sld to get maxScaleDenominator param for (var l in sld.namedLayers) { var styles = sld.namedLayers[l].userStyles, style; @@ -749,13 +749,24 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { } } } + + var callbackVisility = function(){ + layerVisilityCallback(layer, maxScaleDenominator) + }; + + layer.events.register("loadend", layer, callbackVisility); + layer.events.register("visibilitychanged", layer, callbackVisility); + //layer.events.register("loadend",layer, function(){console.log("LoooadEnd")} ) }, error:function (response) { } }); - var zoomEndCallback = function () { + + var layerVisilityCallback = function(layer, maxScaleDenominator) { + var map = app.mapPanel.map; + var tree = Ext.getCmp("tree") var nodes = tree.root.childNodes[0] // pega o "node" que armazena as Layers na Tree ("Sobreposições") da Tree. var node = null; @@ -768,10 +779,11 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { }; //Ext.MessageInfo.msg("Camada não visível", "A camada " + layer.name + " não aparecerá nesta escala") - //layer.events.unregister("loadend", layer, zoomEndCallback); + //layer.events.unregister("loadend", layer, layerVisilityCallback); // se o node for encontrado após a pesquisa anterior if(node){ - if (maxScaleDenominator < map.getScale()) { // modifica a mensagem caso a escala não permita a visualização do layer + // modifica a mensagem caso a escala não permita a visualização do layer + if (!layer.visibility || maxScaleDenominator != "" && maxScaleDenominator < map.getScale()){ console.log("Vermelho! " + layer.name) node.setIconCls("red-icon"); } else { @@ -779,18 +791,8 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { node.setIconCls("green-icon"); } } - } -/* - if (extent) { - Ext.MessageBox.confirm(this.addButtonText, this.zoomToLayerExtentQuestionText, function (btn) { - if (btn == 'yes') { - layer.events.register("loadend", layer, zoomEndCallback); - map.zoomToExtent(extent); - } - }, this); - } -*/ - layer.events.register("loadend", layer, zoomEndCallback); + }; + var lyr = record.data.layer; lyr.isFeatureLayer = record.data.keywords.indexOf("features")!=-1; if (lyr.dimensions && lyr.dimensions.time && @@ -811,7 +813,6 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { this.target.tools[actionPlugin].addOutput(outputConfig); } } - }, /** private: method[setSelectedSource] From 4b8bd4335f9b8ad1749210482cb8e421724c92ba Mon Sep 17 00:00:00 2001 From: Paulo Luan Date: Fri, 3 May 2013 11:39:17 -0300 Subject: [PATCH 32/39] =?UTF-8?q?Refatora=C3=A7=C3=A3o=20do=20m=C3=A9todo?= =?UTF-8?q?=20que=20faz=20a=20requisi=C3=A7=C3=A3o=20dos=20Estilos=20da=20?= =?UTF-8?q?Layer=20e=20verifica=20a=20visibilidade=20(verde/vermelho),=20a?= =?UTF-8?q?gora=20o=20GXP=20est=C3=A1=20com=20uma=20depend=C3=AAncia=20dir?= =?UTF-8?q?eta=20=C3=A0=20nossa=20aplica=C3=A7=C3=A3o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/script/plugins/AddLayers.js | 80 +-------------------------------- 1 file changed, 2 insertions(+), 78 deletions(-) diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index 1a29f9fe..32b8948a 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -720,84 +720,8 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { } } - layer = record.getLayer(); - var name = record.json.name // get the name of layer to request to geoserver - var url = layer.url + "VERSION=1.1.1&REQUEST=GetStyles&LAYERS=" + name; - var maxScaleDenominator = ""; - - // request the SLD to geoserver - OpenLayers.Request.GET({ - url:url, - success:function (response) { - var format = new OpenLayers.Format.SLD(); - var sld = format.read(response.responseXML || response.responseText); - - layer.sld = sld; - - // scroll through the sld to get maxScaleDenominator param - for (var l in sld.namedLayers) { - var styles = sld.namedLayers[l].userStyles, style; - for (var i = 0; i < styles.length; i++) { - style = styles[i]; - var rules = style.rules; - if (rules) { // if not null - for (var j = 0; j < rules.length; j++) { - if (rules[j].maxScaleDenominator) { - maxScaleDenominator = rules[j].maxScaleDenominator; - } - } - } - } - } - - var callbackVisility = function(){ - layerVisilityCallback(layer, maxScaleDenominator) - }; - - layer.events.register("loadend", layer, callbackVisility); - layer.events.register("visibilitychanged", layer, callbackVisility); - //layer.events.register("loadend",layer, function(){console.log("LoooadEnd")} ) - }, - error:function (response) { - - } - }); - - - var layerVisilityCallback = function(layer, maxScaleDenominator) { - var map = app.mapPanel.map; - - var tree = Ext.getCmp("tree") - var nodes = tree.root.childNodes[0] // pega o "node" que armazena as Layers na Tree ("Sobreposições") da Tree. - var node = null; - - // percorre todos os nós de Layers - for (var i = nodes.childNodes.length - 1; i >= 0; i--) { - if(nodes.childNodes[i].layer === layer){ - node = nodes.childNodes[i]; - } - }; - - //Ext.MessageInfo.msg("Camada não visível", "A camada " + layer.name + " não aparecerá nesta escala") - //layer.events.unregister("loadend", layer, layerVisilityCallback); - // se o node for encontrado após a pesquisa anterior - if(node){ - // modifica a mensagem caso a escala não permita a visualização do layer - if (!layer.visibility || maxScaleDenominator != "" && maxScaleDenominator < map.getScale()){ - console.log("Vermelho! " + layer.name) - node.setIconCls("red-icon"); - } else { - console.log("Verde! " + layer.name) - node.setIconCls("green-icon"); - } - } - }; - - var lyr = record.data.layer; - lyr.isFeatureLayer = record.data.keywords.indexOf("features")!=-1; - if (lyr.dimensions && lyr.dimensions.time && - lyr.dimensions.time.values && lyr.isFeatureLayer) - lyr.mergeNewParams({'time':lyr.dimensions.time.values[0] + "/" + lyr.dimensions.time.values[lyr.dimensions.time.values.length - 1]}); + // Função interna da app GeoExplorer, está fora do GXP. + utils.Utils.getStyleAndRegisterVisibilityEvents(record); if (records.length === 1 && record) { // select the added layer From db115991c4f58a7a469f3c2aa3b478ffde7c1fbf Mon Sep 17 00:00:00 2001 From: gustavofoa Date: Tue, 7 May 2013 17:10:25 -0300 Subject: [PATCH 33/39] =?UTF-8?q?fixes=20#14=20Adi=C3=A7=C3=A3o=20da=20dat?= =?UTF-8?q?a=20no=20nome=20da=20layer=20e=20correcao=20de=20bug=20dos=20ic?= =?UTF-8?q?ones=20semaforo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- externals/geoext | 2 +- src/script/plugins/AddLayers.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/externals/geoext b/externals/geoext index a0f2d089..3df35b1d 160000 --- a/externals/geoext +++ b/externals/geoext @@ -1 +1 @@ -Subproject commit a0f2d089e98d4df2bb542dc056bb8619da38b724 +Subproject commit 3df35b1ddaed9aab8e1ccc76bf7fa35b83b6a865 diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index 32b8948a..82c2e29a 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -737,6 +737,7 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { this.target.tools[actionPlugin].addOutput(outputConfig); } } + }, /** private: method[setSelectedSource] From 9277773c6d80d0cd95655aadeb16dc4096487fba Mon Sep 17 00:00:00 2001 From: Paulo Luan Date: Mon, 3 Jun 2013 16:32:36 -0300 Subject: [PATCH 34/39] Carregando getCapabilities no client sincronamente fixes #26 --- src/script/plugins/AddLayers.js | 96 ++++++++++++++++++++++++++++--- src/script/plugins/RemoveLayer.js | 12 ++-- 2 files changed, 94 insertions(+), 14 deletions(-) diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index 32b8948a..77f3564e 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -658,6 +658,7 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { var Cls = this.outputTarget ? Ext.Panel : Ext.Window; this.capGrid = new Cls(Ext.apply({ + id:"capGridAddLayer", title:this.availableLayersText, closeAction:"hide", layout:"border", @@ -742,18 +743,28 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { /** private: method[setSelectedSource] * :arg source: :class:`gxp.plugins.LayerSource` */ - setSelectedSource:function (source, callback) { + setSelectedSource:function (source, callback) + { this.selectedSource = source; var store = source.store; - this.fireEvent("sourceselected", this, source); + var me = this; + var loadMask = new Ext.LoadMask("capGridAddLayer", {msg:'Carregando Layers...'}); + loadMask.show(); + + this.fireEvent("sourceselected", me, source); + if (this.capGrid && source.lazy) { - source.store.load({callback:(function () { - var sourceComboBox = this.capGrid.sourceComboBox, + + utils.Utils.loadSourceStores(); + + var callback = function () { + var sourceComboBox = me.capGrid.sourceComboBox, store = sourceComboBox.store, valueField = sourceComboBox.valueField, index = store.findExact(valueField, sourceComboBox.getValue()), rec = store.getAt(index), - source = this.target.layerSources[rec.get("id")]; + source = me.target.layerSources[rec.get("id")]; + if (source) { if (source.title !== rec.get("title") && !Ext.isEmpty(source.title)) { rec.set("title", source.title); @@ -762,7 +773,34 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { } else { store.remove(rec); } - }).createDelegate(this)}); + + loadMask.hide(); + } + + source.store.on("load", callback); + + + /*source.store.load( + { + callback:( + function () { + var sourceComboBox = this.capGrid.sourceComboBox, + store = sourceComboBox.store, + valueField = sourceComboBox.valueField, + index = store.findExact(valueField, sourceComboBox.getValue()), + rec = store.getAt(index), + source = this.target.layerSources[rec.get("id")]; + if (source) { + if (source.title !== rec.get("title") && !Ext.isEmpty(source.title)) { + rec.set("title", source.title); + sourceComboBox.setValue(rec.get(valueField)); + } + } else { + store.remove(rec); + } + } + ).createDelegate(this) + });*/ } }, @@ -806,6 +844,7 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { uploadcomplete:function (panel, detail) { var layers = detail["import"].tasks[0].items; var item, names = {}, resource, layer; + for (var i = 0, len = layers.length; i < len; ++i) { item = layers[i]; if (item.state === "ERROR") { @@ -816,8 +855,44 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { layer = resource.featureType || resource.coverage; names[layer.namespace.name + ":" + layer.name] = true; } + + + var callback = function (records, options, success) + { + var gridPanel, sel; + if (this.capGrid && this.capGrid.isVisible()) { + gridPanel = this.capGrid.get(0).get(0); + sel = gridPanel.getSelectionModel(); + sel.clearSelections(); + } + // select newly added layers + var newRecords = []; + var last = 0; + this.selectedSource.store.each(function (record, index) { + if (record.get("name") in names) { + last = index; + newRecords.push(record); + } + }); + if (gridPanel) { + // this needs to be deferred because the + // grid view has not refreshed yet + window.setTimeout(function () { + sel.selectRecords(newRecords); + gridPanel.getView().focusRow(last); + }, 100); + } else { + this.addLayers(newRecords, true); + } + } + + utils.Utils.loadSourceStores(); + this.selectedSource.store.on("load", callback); + + /* this.selectedSource.store.load({ - callback:function (records, options, success) { + callback:function (records, options, success) + { var gridPanel, sel; if (this.capGrid && this.capGrid.isVisible()) { gridPanel = this.capGrid.get(0).get(0); @@ -843,9 +918,14 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { } else { this.addLayers(newRecords, true); } - }, + } + + , scope:this }); + + */ + if (this.outputTarget) { panel.hide(); } else { diff --git a/src/script/plugins/RemoveLayer.js b/src/script/plugins/RemoveLayer.js index 5a3594a5..9ec7a8b9 100644 --- a/src/script/plugins/RemoveLayer.js +++ b/src/script/plugins/RemoveLayer.js @@ -1,6 +1,6 @@ /** * Copyright (c) 2008-2011 The Open Planning Project - * + * * Published under the GPL license. * See https://github.com/opengeo/gxp/raw/master/license.txt for the full text * of the license. @@ -27,10 +27,10 @@ Ext.namespace("gxp.plugins"); * TODO Make this plural - selected layers */ gxp.plugins.RemoveLayer = Ext.extend(gxp.plugins.Tool, { - + /** api: ptype = gxp_removelayer */ ptype: "gxp_removelayer", - + /** api: config[removeMenuText] * ``String`` * Text for remove menu item (i18n). @@ -42,7 +42,7 @@ gxp.plugins.RemoveLayer = Ext.extend(gxp.plugins.Tool, { * Text for remove action tooltip (i18n). */ removeActionTip: "Remove layer", - + /** api: method[addActions] */ addActions: function() { @@ -83,10 +83,10 @@ gxp.plugins.RemoveLayer = Ext.extend(gxp.plugins.Tool, { "add": enforceOne, "remove": enforceOne }); - + return actions; } - + }); Ext.preg(gxp.plugins.RemoveLayer.prototype.ptype, gxp.plugins.RemoveLayer); From 83121b500c7b96deeb8ed61fe37e6ae3edcbc3ac Mon Sep 17 00:00:00 2001 From: Paulo Luan Date: Tue, 4 Jun 2013 17:00:10 -0300 Subject: [PATCH 35/39] Status do lado da Layer (Verde e Vermelho) atualiza quando a escala for modificada no estilo local fixes #46 --- externals/geoext | 2 +- src/script/plugins/AddLayers.js | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/externals/geoext b/externals/geoext index 3df35b1d..a0f2d089 160000 --- a/externals/geoext +++ b/externals/geoext @@ -1 +1 @@ -Subproject commit 3df35b1ddaed9aab8e1ccc76bf7fa35b83b6a865 +Subproject commit a0f2d089e98d4df2bb542dc056bb8619da38b724 diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index 375069da..0348b8e9 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -750,12 +750,11 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { var store = source.store; var me = this; var loadMask = new Ext.LoadMask("capGridAddLayer", {msg:'Carregando Layers...'}); - loadMask.show(); this.fireEvent("sourceselected", me, source); if (this.capGrid && source.lazy) { - + loadMask.show(); utils.Utils.loadSourceStores(); var callback = function () { @@ -780,6 +779,10 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { source.store.on("load", callback); + source.store.on("loadexception", function(){ + loadMask.hide(); + source.store.un("load", loadLayerCallback); + }); /*source.store.load( { From 7bc09c1c92b7bf4c72a6faca440ecba060387b6e Mon Sep 17 00:00:00 2001 From: gustavofoa Date: Wed, 5 Jun 2013 09:11:40 -0300 Subject: [PATCH 36/39] =?UTF-8?q?Commit=20necess=C3=A1rio=20para=20inclus?= =?UTF-8?q?=C3=A3o=20de=20externas/geoext=20no=20gxp?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- externals/geoext | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/externals/geoext b/externals/geoext index a0f2d089..3df35b1d 160000 --- a/externals/geoext +++ b/externals/geoext @@ -1 +1 @@ -Subproject commit a0f2d089e98d4df2bb542dc056bb8619da38b724 +Subproject commit 3df35b1ddaed9aab8e1ccc76bf7fa35b83b6a865 From fbfcc75b494534abaec8815eb3dbe7c36db7db66 Mon Sep 17 00:00:00 2001 From: gustavofoa Date: Fri, 14 Jun 2013 11:56:12 -0300 Subject: [PATCH 37/39] =?UTF-8?q?fixes=20#12=20Altera=C3=A7=C3=A3o=20para?= =?UTF-8?q?=20permitir=20adi=C3=A7=C3=A3o=20de=20layers=20wms/wfs/wcs=20e?= =?UTF-8?q?=20corre=C3=A7=C3=A3o=20de=20bug=20de=20agrupamento=20de=20laye?= =?UTF-8?q?rs=20no=20grid.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/script/plugins/AddLayers.js | 9 ++++++--- src/script/plugins/BingSource.js | 1 + src/script/plugins/GoogleSource.js | 1 + src/script/plugins/MapBoxSource.js | 1 + src/script/plugins/MapQuestSource.js | 1 + src/script/plugins/OSMSource.js | 1 + 6 files changed, 11 insertions(+), 3 deletions(-) diff --git a/src/script/plugins/AddLayers.js b/src/script/plugins/AddLayers.js index 0348b8e9..8399e855 100644 --- a/src/script/plugins/AddLayers.js +++ b/src/script/plugins/AddLayers.js @@ -415,8 +415,7 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { }, this.initialConfig.outputConfig)); if (Cls === Ext.Panel) { this.addOutput(this.feedDialog); - } - ; + }; } this.feedDialog.show(); }, @@ -571,7 +570,7 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { }, "urlselected":function (newSourceDialog, url) { newSourceDialog.setLoading(); - this.target.addLayerSource({ + var src = this.target.addLayerSource({ config:{url:url}, // assumes default of gx_wmssource callback:function (id) { // add to combo and select @@ -590,6 +589,10 @@ gxp.plugins.AddLayers = Ext.extend(gxp.plugins.Tool, { }, scope:this }); + if(src.lazy) + { + src.store.reload(); + } }, scope:this } diff --git a/src/script/plugins/BingSource.js b/src/script/plugins/BingSource.js index 65c7e9d2..0ecaedba 100644 --- a/src/script/plugins/BingSource.js +++ b/src/script/plugins/BingSource.js @@ -133,6 +133,7 @@ gxp.plugins.BingSource = Ext.extend(gxp.plugins.LayerSource, { }); this.store.each(function(l) { l.set("group", "background"); + l.set("prefix", "Bing"); }); this.fireEvent("ready", this); diff --git a/src/script/plugins/GoogleSource.js b/src/script/plugins/GoogleSource.js index e746693c..6c3beead 100644 --- a/src/script/plugins/GoogleSource.js +++ b/src/script/plugins/GoogleSource.js @@ -182,6 +182,7 @@ gxp.plugins.GoogleSource = Ext.extend(gxp.plugins.LayerSource, { }); this.store.each(function(l) { l.set("abstract", mapTypes[l.get("name")]["abstract"]); + l.set("prefix", "Google"); }); this.fireEvent("ready", this); }, diff --git a/src/script/plugins/MapBoxSource.js b/src/script/plugins/MapBoxSource.js index 53d89354..da1ae9d2 100644 --- a/src/script/plugins/MapBoxSource.js +++ b/src/script/plugins/MapBoxSource.js @@ -213,6 +213,7 @@ gxp.plugins.MapBoxSource = Ext.extend(gxp.plugins.LayerSource, { if ("group" in config) { record.set("group", config.group); } + record.set("prefix", "MapBox"); record.data.layer = layer; record.commit(); diff --git a/src/script/plugins/MapQuestSource.js b/src/script/plugins/MapQuestSource.js index d7c605c2..406a25cc 100644 --- a/src/script/plugins/MapQuestSource.js +++ b/src/script/plugins/MapQuestSource.js @@ -151,6 +151,7 @@ gxp.plugins.MapQuestSource = Ext.extend(gxp.plugins.LayerSource, { }); this.store.each(function(l) { l.set("group", "background"); + l.set("prefix", "MapQuest"); }); this.fireEvent("ready", this); diff --git a/src/script/plugins/OSMSource.js b/src/script/plugins/OSMSource.js index 1cb73f34..d94269d9 100644 --- a/src/script/plugins/OSMSource.js +++ b/src/script/plugins/OSMSource.js @@ -124,6 +124,7 @@ gxp.plugins.OSMSource = Ext.extend(gxp.plugins.LayerSource, { }); this.store.each(function(l) { l.set("group", "background"); + l.set("prefix", "OpenStreetMap"); }); this.fireEvent("ready", this); From 89df7120b5c0737069dc7998787b233b2a9400a5 Mon Sep 17 00:00:00 2001 From: bogo Date: Wed, 3 Jul 2013 11:48:52 -0300 Subject: [PATCH 38/39] =?UTF-8?q?Alterado=20tooltip=20dos=20bot=C3=B5es=20?= =?UTF-8?q?Zoom=20in=20e=20Zoom=20out=20para=20Zoom=20+=20e=20Zoom=20-?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/script/locale/pt-br.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/script/locale/pt-br.js b/src/script/locale/pt-br.js index 37336a9d..59005bc2 100644 --- a/src/script/locale/pt-br.js +++ b/src/script/locale/pt-br.js @@ -184,11 +184,11 @@ GeoExt.Lang.add("pt-br", { "gxp.plugins.Zoom.prototype":{ zoomMenuText:"Zoom de seleção", - zoomInMenuText:"Zoom in", - zoomOutMenuText:"Zoom out", + zoomInMenuText:"Zoom +", + zoomOutMenuText:"Zoom -", zoomTooltip:"Zoom selecionando uma área", - zoomInTooltip:"Zoom in", - zoomOutTooltip:"Zoom out" + zoomInTooltip:"Zoom +", + zoomOutTooltip:"Zoom -" }, "gxp.plugins.ZoomToExtent.prototype":{ From 336fee309ede3cef1367f17ef51adc868e8b71fb Mon Sep 17 00:00:00 2001 From: gustavofoa Date: Thu, 4 Jul 2013 15:05:23 -0300 Subject: [PATCH 39/39] =?UTF-8?q?Altera=C3=A7=C3=A3o=20desnecess=C3=A1ria,?= =?UTF-8?q?=20agora=20o=20arquivo=20LayerTree,=20bem=20como=20o=20arquivo?= =?UTF-8?q?=20AddLayer,=20est=C3=A3o=20especializados=20no=20reposit=C3=B3?= =?UTF-8?q?rio=20do=20terrabrasilis?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/script/plugins/LayerTree.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/script/plugins/LayerTree.js b/src/script/plugins/LayerTree.js index 6569042d..050fb7e8 100644 --- a/src/script/plugins/LayerTree.js +++ b/src/script/plugins/LayerTree.js @@ -219,6 +219,7 @@ gxp.plugins.LayerTree = Ext.extend(gxp.plugins.Tool, { attr.iconCls = "gxp-tree-rasterlayer-icon"; } else { attr.iconCls = "red-icon"; + layer.outOfScale = true; } if (record.get("fixed")) { attr.allowDrag = false;